caciviclab / disclosure-backend-static

Campaign finance data powering Open Disclosure California
https://caciviclab.org/odca-jekyll/
15 stars 13 forks source link

fix calculators to handle candidates in multiple elections #333

Closed ChenglimEar closed 7 months ago

ChenglimEar commented 10 months ago

When a candidate appears in multiple elections the calculator for contributions by type adds up contributions as though they were all attributed to only one of the many elections. This is due to a bug in the code as described below.

It looks like the calculation runner is running for a list of all candidates:

  def fetch_all!
    while (calculator_class = next_calculator_with_dependencies_met)
      puts "Running calculator: #{calculator_class}"
      calculator_class
        .new(
          candidates: Candidate.all,
          ballot_measures: Referendum.all,
          committees: Committee.all
        )
        .fetch
      @calculators.delete(calculator_class)
    end

When the calculator is created, the candidates by filer_id will have duplicates for candidates that were in more than one election:

  def initialize(candidates: [], ballot_measures: [], committees: [])
    @candidates_by_filer_id =
      candidates.where('"FPPC" IS NOT NULL').index_by { |c| c.FPPC }
  end

Here's where we pull the candidate in the calculator:

contributions_by_candidate_by_type.each do |filer_id, contributions_by_type|
      candidate = @candidates_by_filer_id[filer_id.to_i]
      candidate.save_calculation(:contributions_by_type, contributions_by_type)
      # Calculate the total of small contributions
      total_small = candidate.calculation(:total_small_itemized_contributions) +
        (contributions_by_type['Unitemized'] || 0)
      candidate.save_calculation(:total_small_contributions, total_small)
    end

Instead of a hash keyed by filer_id, we will wrap it in a hash keyed by election_name. This will ensure that candidates in multiple elections will have an entry for each election and contributions will be added to the correct election entry based on the election associated with the contribution.

This pull request is now extended to make sure all calculators take the election into account.

Some open issues

The candidate_summary view is inconsistent with existing SQL in calculators that join with candidates. The existing SQL uses the reporting date instead of the from and thru dates. Should we change to be consistent?

The data needs to be checked. As expected, the numbers should shift to the right elections. The overall total numbers, however, should remain the same. It appears that this is slightly off, so we have to check the data to determine why. Also, the totals from contributions based on type does not add up exactly to totals not based on type. This exists in the existing code, so there may be something else that needs to be totaled to get the numbers to match. Since the problem is not simply a bug that needs fixing, we have to do a data audit, so instead of holding up this PR for that, we will count on a future data audit to set things right.

mikeubell commented 10 months ago
Build diff from Commit 807638242ed85809f1ca70d07212f29e4590a1e7: ```diff diff --git a/build/_data/committees/1410941.json b/build/_data/committees/1410941.json index 178a733..dacda45 100644 --- a/build/_data/committees/1410941.json +++ b/build/_data/committees/1410941.json @@ -813,7 +813,7 @@ "Tran_Date": "2018-10-19", "Tran_NamF": "Garrett", "Tran_NamL": "Riegg", - "Tran_Zip4": "94602" + "Tran_Zip4": "94606" }, { "Filer_ID": "1410941", @@ -824,7 +824,7 @@ "Tran_Date": "2018-10-19", "Tran_NamF": "Garrett", "Tran_NamL": "Riegg", - "Tran_Zip4": "94606" + "Tran_Zip4": "94602" }, { "Filer_ID": "1410941", diff --git a/build/_data/committees/1421001.json b/build/_data/committees/1421001.json index ff4043a..09cc4a0 100644 --- a/build/_data/committees/1421001.json +++ b/build/_data/committees/1421001.json @@ -1198,7 +1198,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94603" + "Tran_Zip4": "94602" }, { "Filer_ID": "1421001", @@ -1209,7 +1209,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94602" + "Tran_Zip4": "94603" }, { "Filer_ID": "1421001", diff --git a/build/_data/elections/oakland/2014-11-04.json b/build/_data/elections/oakland/2014-11-04.json index 6bc999a..64964e8 100644 --- a/build/_data/elections/oakland/2014-11-04.json +++ b/build/_data/elections/oakland/2014-11-04.json @@ -62,7 +62,7 @@ { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2014", - "total_spending": 107576.90000000001 + "total_spending": 107576.9 }, { "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", diff --git a/build/_data/elections/oakland/2018-06-05.json b/build/_data/elections/oakland/2018-06-05.json index 6bc9040..b39b338 100644 --- a/build/_data/elections/oakland/2018-06-05.json +++ b/build/_data/elections/oakland/2018-06-05.json @@ -35,7 +35,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "election_name": "oakland-june-2018", "total_contributions": 10000.0 } @@ -77,7 +77,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -100,7 +100,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 diff --git a/build/_data/elections/oakland/2018-11-06.json b/build/_data/elections/oakland/2018-11-06.json index 0bee0d7..77f6e98 100644 --- a/build/_data/elections/oakland/2018-11-06.json +++ b/build/_data/elections/oakland/2018-11-06.json @@ -9,7 +9,7 @@ "Committee": 963146.17, "Individual": 2737396.8899999997, "Unitemized": 144719.47999999998, - "Self Funding": 88684.25000000001, + "Self Funding": 88684.25, "Other (includes Businesses)": 2746671.2600000002 }, "most_expensive_races": [ @@ -72,7 +72,7 @@ { "name": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018", "election_name": "oakland-2018", - "total_spending": 129086.79000000001 + "total_spending": 129086.79 } ], "top_contributors": [ @@ -97,7 +97,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_contributions": 53757.130000000005 + "total_contributions": 53757.13 }, { "name": "Charlie Michelson", @@ -157,7 +157,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_spending": 53757.130000000005 + "total_spending": 53757.13 }, { "name": "Charlie Michelson", diff --git a/build/_data/elections/oakland/2020-11-03.json b/build/_data/elections/oakland/2020-11-03.json index b50b7b2..1383a65 100644 --- a/build/_data/elections/oakland/2020-11-03.json +++ b/build/_data/elections/oakland/2020-11-03.json @@ -46,7 +46,7 @@ "type": "office", "title": "Oakland November 3rd, 2020 General Election", "candidate": "Tri Ngo", - "proportion": 0.30320009541786014, + "proportion": 0.3032000954178602, "office_title": "City Council District 1" }, { @@ -62,12 +62,12 @@ { "name": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO", "election_name": "oakland-2020", - "total_spending": 395215.8500000001 + "total_spending": 395215.85 }, { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2020", - "total_spending": 340009.22000000003 + "total_spending": 340009.22 }, { "name": "Californians for Independent Work, Sponsored by Lyft, Inc.", diff --git a/build/_data/elections/oakland/2022-06-07.json b/build/_data/elections/oakland/2022-06-07.json index 66c35a1..65938d5 100644 --- a/build/_data/elections/oakland/2022-06-07.json +++ b/build/_data/elections/oakland/2022-06-07.json @@ -2,7 +2,7 @@ "total_contributions": 104075.02, "total_contributions_by_source": { "Out of State": 6400.0, - "Within Oakland": 64425.020000000004, + "Within Oakland": 64425.02, "Within California": 33250.0 }, "contributions_by_type": { diff --git a/build/_data/elections/oakland/2022-11-08.json b/build/_data/elections/oakland/2022-11-08.json index 6477259..a7a66f8 100644 --- a/build/_data/elections/oakland/2022-11-08.json +++ b/build/_data/elections/oakland/2022-11-08.json @@ -2,13 +2,13 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.180000001, + "Within Oakland": 2632398.1800000006, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.869999998, + "Individual": 2507910.870000001, "Unitemized": 110802.3, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -95,19 +95,19 @@ ], "top_contributors_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "Russ Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 @@ -155,19 +155,19 @@ ], "top_spenders_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "John Protopappas", "type": "Office", "election_name": "oakland-2022", "total_spending": 5400.0 diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index b5c4d53..a5efb57 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -40,7 +40,7 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 43186.57000000001 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", @@ -55,36 +55,36 @@ ], "top_contributors": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "Laborers Local 304", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Peralta Federation of Teachers COPE", "election_name": "oakland-2023", "total_contributions": 1200.0 } ], "top_contributors_for_offices": [ { - "name": "Laborers Local 304", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -95,19 +95,19 @@ ], "top_spenders": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -115,19 +115,19 @@ ], "top_spenders_for_offices": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 diff --git a/build/_data/elections/oakland/2024-11-05.json b/build/_data/elections/oakland/2024-11-05.json index e171c20..9b95170 100644 --- a/build/_data/elections/oakland/2024-11-05.json +++ b/build/_data/elections/oakland/2024-11-05.json @@ -48,19 +48,19 @@ ], "top_contributors_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Dow Terry", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Weylin White", + "name": "Jacob Zonn", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 @@ -71,7 +71,7 @@ ], "top_spenders": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -83,7 +83,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -91,7 +91,7 @@ ], "top_spenders_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -103,7 +103,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 diff --git a/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json b/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json index 3459ca5..3545bad 100644 --- a/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json +++ b/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json @@ -12,7 +12,7 @@ "locale": "Out of State" }, { - "amount": 358697.32999999996, + "amount": 358697.33, "locale": "Within California" }, { diff --git a/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json b/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json index 89f2eb9..09d32d2 100644 --- a/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json +++ b/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json @@ -27,7 +27,7 @@ }, { "type": "Individual", - "amount": 4712.719999999999 + "amount": 4712.72 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json b/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json index 82cec16..46d4ef0 100644 --- a/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json +++ b/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json @@ -16,7 +16,7 @@ "locale": "Within California" }, { - "amount": 268387.33999999997, + "amount": 268387.34, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json b/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json index 9b549ce..51b29c3 100644 --- a/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json +++ b/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json @@ -31,7 +31,7 @@ }, { "type": "Other (includes Businesses)", - "amount": 536197.6699999999 + "amount": 536197.67 } ], "supporting_organizations": [ diff --git a/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json b/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json index 7cf930a..1d31194 100644 --- a/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json +++ b/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json @@ -8,11 +8,11 @@ "voters_edge_url": "https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/measures/measure/4174?cty=ca%2falm", "contributions_by_region": [ { - "amount": 20632.649999999998, + "amount": 20632.65, "locale": "Out of State" }, { - "amount": 211479.94999999998, + "amount": 211479.95, "locale": "Within California" }, { @@ -27,7 +27,7 @@ }, { "type": "Individual", - "amount": 81245.57999999999 + "amount": 81245.58 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json b/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json index ec6b686..cb9825b 100644 --- a/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json +++ b/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json @@ -16,7 +16,7 @@ "locale": "Within California" }, { - "amount": 64425.020000000004, + "amount": 64425.02, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json b/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json index 6baad7e..2647a56 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json @@ -12,11 +12,11 @@ "locale": "Out of State" }, { - "amount": 423379.48999999993, + "amount": 423379.49, "locale": "Within California" }, { - "amount": 121350.01000000001, + "amount": 121350.01, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json b/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json index 71e4e5c..3b591e4 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json @@ -8,7 +8,7 @@ "voters_edge_url": null, "contributions_by_region": [ { - "amount": 155830.47999999998, + "amount": 155830.48, "locale": "Out of State" }, { @@ -23,7 +23,7 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 160125.08999999997 + "amount": 160125.09 }, { "type": "Individual", diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json b/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json index ea57887..a900834 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json @@ -19,7 +19,7 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 54133.420000000006 + "amount": 54133.42 }, { "type": "Individual", diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json b/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json index 22ee803..ec05b42 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json @@ -23,11 +23,11 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 455370.23000000004 + "amount": 455370.23 }, { "type": "Individual", - "amount": 7164.0599999999995 + "amount": 7164.06 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/stats.json b/build/_data/stats.json index 541c07c..b95deb1 100644 --- a/build/_data/stats.json +++ b/build/_data/stats.json @@ -1,3 +1,3 @@ { - "date_processed": "2023-11-13 08:07:03 +0000" + "date_processed": "2023-11-17 00:07:15 -0800" } diff --git a/build/_data/totals.json b/build/_data/totals.json index 1dfe9c6..f9c12fc 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -96,7 +96,7 @@ { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2014", - "total_spending": 107576.90000000001 + "total_spending": 107576.9 }, { "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", @@ -399,7 +399,7 @@ "Committee": 963146.17, "Individual": 2737396.8899999997, "Unitemized": 144719.47999999998, - "Self Funding": 88684.25000000001, + "Self Funding": 88684.25, "Other (includes Businesses)": 2746671.2600000002 }, "most_expensive_races": [ @@ -462,7 +462,7 @@ { "name": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018", "election_name": "oakland-2018", - "total_spending": 129086.79000000001 + "total_spending": 129086.79 } ], "top_contributors": [ @@ -487,7 +487,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_contributions": 53757.130000000005 + "total_contributions": 53757.13 }, { "name": "Charlie Michelson", @@ -547,7 +547,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_spending": 53757.130000000005 + "total_spending": 53757.13 }, { "name": "Charlie Michelson", @@ -631,7 +631,7 @@ "type": "office", "title": "Oakland November 3rd, 2020 General Election", "candidate": "Tri Ngo", - "proportion": 0.30320009541786014, + "proportion": 0.3032000954178602, "office_title": "City Council District 1" }, { @@ -647,12 +647,12 @@ { "name": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO", "election_name": "oakland-2020", - "total_spending": 395215.8500000001 + "total_spending": 395215.85 }, { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2020", - "total_spending": 340009.22000000003 + "total_spending": 340009.22 }, { "name": "Californians for Independent Work, Sponsored by Lyft, Inc.", @@ -782,13 +782,13 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.180000001, + "Within Oakland": 2632398.1800000006, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.869999998, + "Individual": 2507910.870000001, "Unitemized": 110802.3, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -875,19 +875,19 @@ ], "top_contributors_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "Russ Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 @@ -935,19 +935,19 @@ ], "top_spenders_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "John Protopappas", "type": "Office", "election_name": "oakland-2022", "total_spending": 5400.0 @@ -1011,7 +1011,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "election_name": "oakland-june-2018", "total_contributions": 10000.0 } @@ -1053,7 +1053,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -1076,7 +1076,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -1087,7 +1087,7 @@ "total_contributions": 104075.02, "total_contributions_by_source": { "Out of State": 6400.0, - "Within Oakland": 64425.020000000004, + "Within Oakland": 64425.02, "Within California": 33250.0 }, "contributions_by_type": { @@ -1353,7 +1353,7 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 43186.57000000001 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", @@ -1368,36 +1368,36 @@ ], "top_contributors": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "Laborers Local 304", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Peralta Federation of Teachers COPE", "election_name": "oakland-2023", "total_contributions": 1200.0 } ], "top_contributors_for_offices": [ { - "name": "Laborers Local 304", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -1408,19 +1408,19 @@ ], "top_spenders": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -1428,19 +1428,19 @@ ], "top_spenders_for_offices": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -1500,19 +1500,19 @@ ], "top_contributors_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Dow Terry", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Weylin White", + "name": "Jacob Zonn", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 @@ -1523,7 +1523,7 @@ ], "top_spenders": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1535,7 +1535,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1543,7 +1543,7 @@ ], "top_spenders_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1555,7 +1555,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 ```
mikeubell commented 10 months ago
Build diff from Commit ea0c9abcee326a6b15ff94ee19c05a2c717c3fe1: ```diff diff --git a/build/_data/committees/1410941.json b/build/_data/committees/1410941.json index 178a733..dacda45 100644 --- a/build/_data/committees/1410941.json +++ b/build/_data/committees/1410941.json @@ -813,7 +813,7 @@ "Tran_Date": "2018-10-19", "Tran_NamF": "Garrett", "Tran_NamL": "Riegg", - "Tran_Zip4": "94602" + "Tran_Zip4": "94606" }, { "Filer_ID": "1410941", @@ -824,7 +824,7 @@ "Tran_Date": "2018-10-19", "Tran_NamF": "Garrett", "Tran_NamL": "Riegg", - "Tran_Zip4": "94606" + "Tran_Zip4": "94602" }, { "Filer_ID": "1410941", diff --git a/build/_data/committees/1421001.json b/build/_data/committees/1421001.json index ff4043a..09cc4a0 100644 --- a/build/_data/committees/1421001.json +++ b/build/_data/committees/1421001.json @@ -1198,7 +1198,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94603" + "Tran_Zip4": "94602" }, { "Filer_ID": "1421001", @@ -1209,7 +1209,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94602" + "Tran_Zip4": "94603" }, { "Filer_ID": "1421001", diff --git a/build/_data/elections/oakland/2014-11-04.json b/build/_data/elections/oakland/2014-11-04.json index 6bc999a..64964e8 100644 --- a/build/_data/elections/oakland/2014-11-04.json +++ b/build/_data/elections/oakland/2014-11-04.json @@ -62,7 +62,7 @@ { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2014", - "total_spending": 107576.90000000001 + "total_spending": 107576.9 }, { "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", diff --git a/build/_data/elections/oakland/2018-06-05.json b/build/_data/elections/oakland/2018-06-05.json index 6bc9040..b39b338 100644 --- a/build/_data/elections/oakland/2018-06-05.json +++ b/build/_data/elections/oakland/2018-06-05.json @@ -35,7 +35,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "election_name": "oakland-june-2018", "total_contributions": 10000.0 } @@ -77,7 +77,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -100,7 +100,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 diff --git a/build/_data/elections/oakland/2018-11-06.json b/build/_data/elections/oakland/2018-11-06.json index 0bee0d7..77f6e98 100644 --- a/build/_data/elections/oakland/2018-11-06.json +++ b/build/_data/elections/oakland/2018-11-06.json @@ -9,7 +9,7 @@ "Committee": 963146.17, "Individual": 2737396.8899999997, "Unitemized": 144719.47999999998, - "Self Funding": 88684.25000000001, + "Self Funding": 88684.25, "Other (includes Businesses)": 2746671.2600000002 }, "most_expensive_races": [ @@ -72,7 +72,7 @@ { "name": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018", "election_name": "oakland-2018", - "total_spending": 129086.79000000001 + "total_spending": 129086.79 } ], "top_contributors": [ @@ -97,7 +97,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_contributions": 53757.130000000005 + "total_contributions": 53757.13 }, { "name": "Charlie Michelson", @@ -157,7 +157,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_spending": 53757.130000000005 + "total_spending": 53757.13 }, { "name": "Charlie Michelson", diff --git a/build/_data/elections/oakland/2020-11-03.json b/build/_data/elections/oakland/2020-11-03.json index b50b7b2..1383a65 100644 --- a/build/_data/elections/oakland/2020-11-03.json +++ b/build/_data/elections/oakland/2020-11-03.json @@ -46,7 +46,7 @@ "type": "office", "title": "Oakland November 3rd, 2020 General Election", "candidate": "Tri Ngo", - "proportion": 0.30320009541786014, + "proportion": 0.3032000954178602, "office_title": "City Council District 1" }, { @@ -62,12 +62,12 @@ { "name": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO", "election_name": "oakland-2020", - "total_spending": 395215.8500000001 + "total_spending": 395215.85 }, { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2020", - "total_spending": 340009.22000000003 + "total_spending": 340009.22 }, { "name": "Californians for Independent Work, Sponsored by Lyft, Inc.", diff --git a/build/_data/elections/oakland/2022-06-07.json b/build/_data/elections/oakland/2022-06-07.json index 66c35a1..65938d5 100644 --- a/build/_data/elections/oakland/2022-06-07.json +++ b/build/_data/elections/oakland/2022-06-07.json @@ -2,7 +2,7 @@ "total_contributions": 104075.02, "total_contributions_by_source": { "Out of State": 6400.0, - "Within Oakland": 64425.020000000004, + "Within Oakland": 64425.02, "Within California": 33250.0 }, "contributions_by_type": { diff --git a/build/_data/elections/oakland/2022-11-08.json b/build/_data/elections/oakland/2022-11-08.json index 6477259..a7a66f8 100644 --- a/build/_data/elections/oakland/2022-11-08.json +++ b/build/_data/elections/oakland/2022-11-08.json @@ -2,13 +2,13 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.180000001, + "Within Oakland": 2632398.1800000006, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.869999998, + "Individual": 2507910.870000001, "Unitemized": 110802.3, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -95,19 +95,19 @@ ], "top_contributors_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "Russ Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 @@ -155,19 +155,19 @@ ], "top_spenders_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "John Protopappas", "type": "Office", "election_name": "oakland-2022", "total_spending": 5400.0 diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index b5c4d53..a5efb57 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -40,7 +40,7 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 43186.57000000001 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", @@ -55,36 +55,36 @@ ], "top_contributors": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "Laborers Local 304", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Peralta Federation of Teachers COPE", "election_name": "oakland-2023", "total_contributions": 1200.0 } ], "top_contributors_for_offices": [ { - "name": "Laborers Local 304", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -95,19 +95,19 @@ ], "top_spenders": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -115,19 +115,19 @@ ], "top_spenders_for_offices": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 diff --git a/build/_data/elections/oakland/2024-11-05.json b/build/_data/elections/oakland/2024-11-05.json index e171c20..9b95170 100644 --- a/build/_data/elections/oakland/2024-11-05.json +++ b/build/_data/elections/oakland/2024-11-05.json @@ -48,19 +48,19 @@ ], "top_contributors_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Dow Terry", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Weylin White", + "name": "Jacob Zonn", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 @@ -71,7 +71,7 @@ ], "top_spenders": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -83,7 +83,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -91,7 +91,7 @@ ], "top_spenders_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -103,7 +103,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 diff --git a/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json b/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json index 3459ca5..3545bad 100644 --- a/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json +++ b/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json @@ -12,7 +12,7 @@ "locale": "Out of State" }, { - "amount": 358697.32999999996, + "amount": 358697.33, "locale": "Within California" }, { diff --git a/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json b/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json index 89f2eb9..09d32d2 100644 --- a/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json +++ b/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json @@ -27,7 +27,7 @@ }, { "type": "Individual", - "amount": 4712.719999999999 + "amount": 4712.72 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json b/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json index 82cec16..46d4ef0 100644 --- a/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json +++ b/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json @@ -16,7 +16,7 @@ "locale": "Within California" }, { - "amount": 268387.33999999997, + "amount": 268387.34, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json b/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json index 9b549ce..51b29c3 100644 --- a/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json +++ b/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json @@ -31,7 +31,7 @@ }, { "type": "Other (includes Businesses)", - "amount": 536197.6699999999 + "amount": 536197.67 } ], "supporting_organizations": [ diff --git a/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json b/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json index 7cf930a..1d31194 100644 --- a/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json +++ b/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json @@ -8,11 +8,11 @@ "voters_edge_url": "https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/measures/measure/4174?cty=ca%2falm", "contributions_by_region": [ { - "amount": 20632.649999999998, + "amount": 20632.65, "locale": "Out of State" }, { - "amount": 211479.94999999998, + "amount": 211479.95, "locale": "Within California" }, { @@ -27,7 +27,7 @@ }, { "type": "Individual", - "amount": 81245.57999999999 + "amount": 81245.58 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json b/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json index ec6b686..cb9825b 100644 --- a/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json +++ b/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json @@ -16,7 +16,7 @@ "locale": "Within California" }, { - "amount": 64425.020000000004, + "amount": 64425.02, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json b/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json index 6baad7e..2647a56 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json @@ -12,11 +12,11 @@ "locale": "Out of State" }, { - "amount": 423379.48999999993, + "amount": 423379.49, "locale": "Within California" }, { - "amount": 121350.01000000001, + "amount": 121350.01, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json b/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json index 71e4e5c..3b591e4 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json @@ -8,7 +8,7 @@ "voters_edge_url": null, "contributions_by_region": [ { - "amount": 155830.47999999998, + "amount": 155830.48, "locale": "Out of State" }, { @@ -23,7 +23,7 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 160125.08999999997 + "amount": 160125.09 }, { "type": "Individual", diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json b/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json index ea57887..a900834 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json @@ -19,7 +19,7 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 54133.420000000006 + "amount": 54133.42 }, { "type": "Individual", diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json b/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json index 22ee803..ec05b42 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json @@ -23,11 +23,11 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 455370.23000000004 + "amount": 455370.23 }, { "type": "Individual", - "amount": 7164.0599999999995 + "amount": 7164.06 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/stats.json b/build/_data/stats.json index 541c07c..b95deb1 100644 --- a/build/_data/stats.json +++ b/build/_data/stats.json @@ -1,3 +1,3 @@ { - "date_processed": "2023-11-13 08:07:03 +0000" + "date_processed": "2023-11-17 00:07:15 -0800" } diff --git a/build/_data/totals.json b/build/_data/totals.json index 1dfe9c6..f9c12fc 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -96,7 +96,7 @@ { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2014", - "total_spending": 107576.90000000001 + "total_spending": 107576.9 }, { "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", @@ -399,7 +399,7 @@ "Committee": 963146.17, "Individual": 2737396.8899999997, "Unitemized": 144719.47999999998, - "Self Funding": 88684.25000000001, + "Self Funding": 88684.25, "Other (includes Businesses)": 2746671.2600000002 }, "most_expensive_races": [ @@ -462,7 +462,7 @@ { "name": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018", "election_name": "oakland-2018", - "total_spending": 129086.79000000001 + "total_spending": 129086.79 } ], "top_contributors": [ @@ -487,7 +487,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_contributions": 53757.130000000005 + "total_contributions": 53757.13 }, { "name": "Charlie Michelson", @@ -547,7 +547,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_spending": 53757.130000000005 + "total_spending": 53757.13 }, { "name": "Charlie Michelson", @@ -631,7 +631,7 @@ "type": "office", "title": "Oakland November 3rd, 2020 General Election", "candidate": "Tri Ngo", - "proportion": 0.30320009541786014, + "proportion": 0.3032000954178602, "office_title": "City Council District 1" }, { @@ -647,12 +647,12 @@ { "name": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO", "election_name": "oakland-2020", - "total_spending": 395215.8500000001 + "total_spending": 395215.85 }, { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2020", - "total_spending": 340009.22000000003 + "total_spending": 340009.22 }, { "name": "Californians for Independent Work, Sponsored by Lyft, Inc.", @@ -782,13 +782,13 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.180000001, + "Within Oakland": 2632398.1800000006, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.869999998, + "Individual": 2507910.870000001, "Unitemized": 110802.3, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -875,19 +875,19 @@ ], "top_contributors_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "Russ Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 @@ -935,19 +935,19 @@ ], "top_spenders_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "John Protopappas", "type": "Office", "election_name": "oakland-2022", "total_spending": 5400.0 @@ -1011,7 +1011,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "election_name": "oakland-june-2018", "total_contributions": 10000.0 } @@ -1053,7 +1053,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -1076,7 +1076,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -1087,7 +1087,7 @@ "total_contributions": 104075.02, "total_contributions_by_source": { "Out of State": 6400.0, - "Within Oakland": 64425.020000000004, + "Within Oakland": 64425.02, "Within California": 33250.0 }, "contributions_by_type": { @@ -1353,7 +1353,7 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 43186.57000000001 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", @@ -1368,36 +1368,36 @@ ], "top_contributors": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "Laborers Local 304", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Peralta Federation of Teachers COPE", "election_name": "oakland-2023", "total_contributions": 1200.0 } ], "top_contributors_for_offices": [ { - "name": "Laborers Local 304", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -1408,19 +1408,19 @@ ], "top_spenders": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -1428,19 +1428,19 @@ ], "top_spenders_for_offices": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -1500,19 +1500,19 @@ ], "top_contributors_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Dow Terry", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Weylin White", + "name": "Jacob Zonn", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 @@ -1523,7 +1523,7 @@ ], "top_spenders": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1535,7 +1535,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1543,7 +1543,7 @@ ], "top_spenders_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1555,7 +1555,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 ```
mikeubell commented 9 months ago
Build diff from Commit c079642b59eb36a5cf89f50ab902dee2c6c96c4c: ```diff diff --git a/build/_data/committees/1410941.json b/build/_data/committees/1410941.json index 178a733..dacda45 100644 --- a/build/_data/committees/1410941.json +++ b/build/_data/committees/1410941.json @@ -813,7 +813,7 @@ "Tran_Date": "2018-10-19", "Tran_NamF": "Garrett", "Tran_NamL": "Riegg", - "Tran_Zip4": "94602" + "Tran_Zip4": "94606" }, { "Filer_ID": "1410941", @@ -824,7 +824,7 @@ "Tran_Date": "2018-10-19", "Tran_NamF": "Garrett", "Tran_NamL": "Riegg", - "Tran_Zip4": "94606" + "Tran_Zip4": "94602" }, { "Filer_ID": "1410941", diff --git a/build/_data/committees/1421001.json b/build/_data/committees/1421001.json index ff4043a..09cc4a0 100644 --- a/build/_data/committees/1421001.json +++ b/build/_data/committees/1421001.json @@ -1198,7 +1198,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94603" + "Tran_Zip4": "94602" }, { "Filer_ID": "1421001", @@ -1209,7 +1209,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94602" + "Tran_Zip4": "94603" }, { "Filer_ID": "1421001", diff --git a/build/_data/elections/oakland/2014-11-04.json b/build/_data/elections/oakland/2014-11-04.json index d9f182f..b33a2a1 100644 --- a/build/_data/elections/oakland/2014-11-04.json +++ b/build/_data/elections/oakland/2014-11-04.json @@ -62,7 +62,7 @@ { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2014", - "total_spending": 107576.90000000001 + "total_spending": 107576.9 }, { "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", diff --git a/build/_data/elections/oakland/2018-06-05.json b/build/_data/elections/oakland/2018-06-05.json index 6bc9040..b39b338 100644 --- a/build/_data/elections/oakland/2018-06-05.json +++ b/build/_data/elections/oakland/2018-06-05.json @@ -35,7 +35,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "election_name": "oakland-june-2018", "total_contributions": 10000.0 } @@ -77,7 +77,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -100,7 +100,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 diff --git a/build/_data/elections/oakland/2018-11-06.json b/build/_data/elections/oakland/2018-11-06.json index 8414583..ff2f1a6 100644 --- a/build/_data/elections/oakland/2018-11-06.json +++ b/build/_data/elections/oakland/2018-11-06.json @@ -9,7 +9,7 @@ "Committee": 963146.17, "Individual": 2737396.8899999997, "Unitemized": 140451.47999999998, - "Self Funding": 88684.25000000001, + "Self Funding": 88684.25, "Other (includes Businesses)": 2746671.2600000002 }, "most_expensive_races": [ @@ -72,7 +72,7 @@ { "name": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018", "election_name": "oakland-2018", - "total_spending": 129086.79000000001 + "total_spending": 129086.79 } ], "top_contributors": [ @@ -97,7 +97,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_contributions": 53757.130000000005 + "total_contributions": 53757.13 }, { "name": "Charlie Michelson", @@ -157,7 +157,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_spending": 53757.130000000005 + "total_spending": 53757.13 }, { "name": "Charlie Michelson", diff --git a/build/_data/elections/oakland/2020-11-03.json b/build/_data/elections/oakland/2020-11-03.json index 65b196d..8bb578f 100644 --- a/build/_data/elections/oakland/2020-11-03.json +++ b/build/_data/elections/oakland/2020-11-03.json @@ -46,7 +46,7 @@ "type": "office", "title": "Oakland November 3rd, 2020 General Election", "candidate": "Tri Ngo", - "proportion": 0.30320009541786014, + "proportion": 0.3032000954178602, "office_title": "City Council District 1" }, { @@ -62,12 +62,12 @@ { "name": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO", "election_name": "oakland-2020", - "total_spending": 395215.8500000001 + "total_spending": 395215.85 }, { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2020", - "total_spending": 340009.22000000003 + "total_spending": 340009.22 }, { "name": "Californians for Independent Work, Sponsored by Lyft, Inc.", diff --git a/build/_data/elections/oakland/2022-06-07.json b/build/_data/elections/oakland/2022-06-07.json index 66c35a1..65938d5 100644 --- a/build/_data/elections/oakland/2022-06-07.json +++ b/build/_data/elections/oakland/2022-06-07.json @@ -2,7 +2,7 @@ "total_contributions": 104075.02, "total_contributions_by_source": { "Out of State": 6400.0, - "Within Oakland": 64425.020000000004, + "Within Oakland": 64425.02, "Within California": 33250.0 }, "contributions_by_type": { diff --git a/build/_data/elections/oakland/2022-11-08.json b/build/_data/elections/oakland/2022-11-08.json index 9a0ba61..f1cc552 100644 --- a/build/_data/elections/oakland/2022-11-08.json +++ b/build/_data/elections/oakland/2022-11-08.json @@ -2,13 +2,13 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.180000001, + "Within Oakland": 2632398.1800000006, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.869999998, + "Individual": 2507910.870000001, "Unitemized": 101537.35, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -95,19 +95,19 @@ ], "top_contributors_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "Russ Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 @@ -155,19 +155,19 @@ ], "top_spenders_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "John Protopappas", "type": "Office", "election_name": "oakland-2022", "total_spending": 5400.0 diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index b0c2adf..5e15783 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -40,7 +40,7 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 43186.57000000001 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", @@ -55,36 +55,36 @@ ], "top_contributors": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "Laborers Local 304", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Peralta Federation of Teachers COPE", "election_name": "oakland-2023", "total_contributions": 1200.0 } ], "top_contributors_for_offices": [ { - "name": "Laborers Local 304", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -95,19 +95,19 @@ ], "top_spenders": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -115,19 +115,19 @@ ], "top_spenders_for_offices": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 diff --git a/build/_data/elections/oakland/2024-11-05.json b/build/_data/elections/oakland/2024-11-05.json index a354ef8..ec93d8f 100644 --- a/build/_data/elections/oakland/2024-11-05.json +++ b/build/_data/elections/oakland/2024-11-05.json @@ -49,19 +49,19 @@ ], "top_contributors_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Dow Terry", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Weylin White", + "name": "Jacob Zonn", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 @@ -72,7 +72,7 @@ ], "top_spenders": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -84,7 +84,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -92,7 +92,7 @@ ], "top_spenders_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -104,7 +104,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 diff --git a/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json b/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json index 3459ca5..3545bad 100644 --- a/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json +++ b/build/_data/referendum_opposing/oakland/2018-11-06/just-cause-eviction-amendments.json @@ -12,7 +12,7 @@ "locale": "Out of State" }, { - "amount": 358697.32999999996, + "amount": 358697.33, "locale": "Within California" }, { diff --git a/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json b/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json index 89f2eb9..09d32d2 100644 --- a/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json +++ b/build/_data/referendum_opposing/oakland/2020-03-03/oakland-parks-and-recreation-preservation-litter-reduction-and-homelessness-support-act.json @@ -27,7 +27,7 @@ }, { "type": "Individual", - "amount": 4712.719999999999 + "amount": 4712.72 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json b/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json index 82cec16..46d4ef0 100644 --- a/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json +++ b/build/_data/referendum_supporting/oakland/2016-11-08/infrastructure-and-housing-bonds.json @@ -16,7 +16,7 @@ "locale": "Within California" }, { - "amount": 268387.33999999997, + "amount": 268387.34, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json b/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json index 9b549ce..51b29c3 100644 --- a/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json +++ b/build/_data/referendum_supporting/oakland/2018-11-06/hotel-employee-minimum-wage-and-workplace-protections.json @@ -31,7 +31,7 @@ }, { "type": "Other (includes Businesses)", - "amount": 536197.6699999999 + "amount": 536197.67 } ], "supporting_organizations": [ diff --git a/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json b/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json index 7cf930a..1d31194 100644 --- a/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json +++ b/build/_data/referendum_supporting/oakland/2020-11-03/ousd-facilities-bond.json @@ -8,11 +8,11 @@ "voters_edge_url": "https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/measures/measure/4174?cty=ca%2falm", "contributions_by_region": [ { - "amount": 20632.649999999998, + "amount": 20632.65, "locale": "Out of State" }, { - "amount": 211479.94999999998, + "amount": 211479.95, "locale": "Within California" }, { @@ -27,7 +27,7 @@ }, { "type": "Individual", - "amount": 81245.57999999999 + "amount": 81245.58 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json b/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json index ec6b686..cb9825b 100644 --- a/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json +++ b/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act.json @@ -16,7 +16,7 @@ "locale": "Within California" }, { - "amount": 64425.020000000004, + "amount": 64425.02, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json b/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json index 6baad7e..2647a56 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/affordable-housing-infrastructure-bond.json @@ -12,11 +12,11 @@ "locale": "Out of State" }, { - "amount": 423379.48999999993, + "amount": 423379.49, "locale": "Within California" }, { - "amount": 121350.01000000001, + "amount": 121350.01, "locale": "Within Oakland" } ], diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json b/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json index 71e4e5c..3b591e4 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/establish-public-financing-for-oakland-elections.json @@ -8,7 +8,7 @@ "voters_edge_url": null, "contributions_by_region": [ { - "amount": 155830.47999999998, + "amount": 155830.48, "locale": "Out of State" }, { @@ -23,7 +23,7 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 160125.08999999997 + "amount": 160125.09 }, { "type": "Individual", diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json b/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json index ea57887..a900834 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/oakland-usd-parcel-tax-renewal.json @@ -19,7 +19,7 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 54133.420000000006 + "amount": 54133.42 }, { "type": "Individual", diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json b/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json index 22ee803..ec05b42 100644 --- a/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json +++ b/build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json @@ -23,11 +23,11 @@ "contributions_by_type": [ { "type": "Committee", - "amount": 455370.23000000004 + "amount": 455370.23 }, { "type": "Individual", - "amount": 7164.0599999999995 + "amount": 7164.06 }, { "type": "Other (includes Businesses)", diff --git a/build/_data/stats.json b/build/_data/stats.json index 541c07c..5d480ae 100644 --- a/build/_data/stats.json +++ b/build/_data/stats.json @@ -1,3 +1,3 @@ { - "date_processed": "2023-11-13 08:07:03 +0000" + "date_processed": "2023-11-19 00:07:14 -0800" } diff --git a/build/_data/totals.json b/build/_data/totals.json index 74e42d4..a6dcd90 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -96,7 +96,7 @@ { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2014", - "total_spending": 107576.90000000001 + "total_spending": 107576.9 }, { "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", @@ -399,7 +399,7 @@ "Committee": 963146.17, "Individual": 2737396.8899999997, "Unitemized": 140451.47999999998, - "Self Funding": 88684.25000000001, + "Self Funding": 88684.25, "Other (includes Businesses)": 2746671.2600000002 }, "most_expensive_races": [ @@ -462,7 +462,7 @@ { "name": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018", "election_name": "oakland-2018", - "total_spending": 129086.79000000001 + "total_spending": 129086.79 } ], "top_contributors": [ @@ -487,7 +487,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_contributions": 53757.130000000005 + "total_contributions": 53757.13 }, { "name": "Charlie Michelson", @@ -547,7 +547,7 @@ "name": "Brenda Roberts", "type": "Office", "election_name": "oakland-2018", - "total_spending": 53757.130000000005 + "total_spending": 53757.13 }, { "name": "Charlie Michelson", @@ -631,7 +631,7 @@ "type": "office", "title": "Oakland November 3rd, 2020 General Election", "candidate": "Tri Ngo", - "proportion": 0.30320009541786014, + "proportion": 0.3032000954178602, "office_title": "City Council District 1" }, { @@ -647,12 +647,12 @@ { "name": "Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll Fife and Rebecca Kaplan to the Oakland City Council, sponsored by Alameda Labor Council, AFL-CIO", "election_name": "oakland-2020", - "total_spending": 395215.8500000001 + "total_spending": 395215.85 }, { "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", "election_name": "oakland-2020", - "total_spending": 340009.22000000003 + "total_spending": 340009.22 }, { "name": "Californians for Independent Work, Sponsored by Lyft, Inc.", @@ -782,13 +782,13 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.180000001, + "Within Oakland": 2632398.1800000006, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.869999998, + "Individual": 2507910.870000001, "Unitemized": 101537.35, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -875,19 +875,19 @@ ], "top_contributors_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_contributions": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "Russ Taplin", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 @@ -935,19 +935,19 @@ ], "top_spenders_for_offices": [ { - "name": "Griffin Tischler", + "name": "Riaz Taplin", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Riaz Taplin", + "name": "Griffin Tischler", "type": "Office", "election_name": "oakland-2022", "total_spending": 6300.0 }, { - "name": "Goolshan Chinoy", + "name": "John Protopappas", "type": "Office", "election_name": "oakland-2022", "total_spending": 5400.0 @@ -1011,7 +1011,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "election_name": "oakland-june-2018", "total_contributions": 10000.0 } @@ -1053,7 +1053,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -1076,7 +1076,7 @@ "total_spending": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_spending": 10000.0 @@ -1087,7 +1087,7 @@ "total_contributions": 104075.02, "total_contributions_by_source": { "Out of State": 6400.0, - "Within Oakland": 64425.020000000004, + "Within Oakland": 64425.02, "Within California": 33250.0 }, "contributions_by_type": { @@ -1353,7 +1353,7 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 43186.57000000001 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", @@ -1368,36 +1368,36 @@ ], "top_contributors": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "Laborers Local 304", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Peralta Federation of Teachers COPE", "election_name": "oakland-2023", "total_contributions": 1200.0 } ], "top_contributors_for_offices": [ { - "name": "Laborers Local 304", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -1408,19 +1408,19 @@ ], "top_spenders": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -1428,19 +1428,19 @@ ], "top_spenders_for_offices": [ { - "name": "Laborers Local 304", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "UA Local 342", + "name": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "Peralta Federation of Teachers COPE", "type": "Office", "election_name": "oakland-2023", "total_spending": 1200.0 @@ -1501,19 +1501,19 @@ ], "top_contributors_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Dow Terry", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Weylin White", + "name": "Jacob Zonn", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 @@ -1524,7 +1524,7 @@ ], "top_spenders": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1536,7 +1536,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1544,7 +1544,7 @@ ], "top_spenders_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 @@ -1556,7 +1556,7 @@ "total_spending": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_spending": 1800.0 ```
mikeubell commented 9 months ago
Build diff from Commit e4a9a673d8e10909b2feedbbf00fd0e1da9a6e7d: ```diff diff --git a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json index 4cd099a..7a0a6f3 100644 --- a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json +++ b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json @@ -42,18 +42,18 @@ }, "total_small_contributions": 15898.0, "expenditures_by_type": { - "Print Ads": 250.0, - "Not Stated": 43849.56, - "Contribution": 4031.0, - "Civic Donations": 3600.0, - "Office Expenses": 19388.42, - "Fundraising Events": 3950.0, - "Campaign Consultants": 48600.0, - "Campaign Paraphernalia/Misc.": 2934.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 28569.2, - "Postage, Delivery and Messenger Services": 14435.8, - "Professional Services (Legal, Accounting)": 25847.23 + "": 43849.56, + "CMP": 2934.54, + "CNS": 48600.0, + "CTB": 4031.0, + "CVC": 3600.0, + "FIL": 300.0, + "FND": 3950.0, + "LIT": 28569.2, + "OFC": 19388.42, + "POS": 14435.8, + "PRO": 25847.23, + "PRT": 250.0 }, "supporting_by_type": { } @@ -67,8 +67,6 @@ ] }, "total_contributions": 177069.06, - "test_totals": 177069.06, - "list_total": 165131.06, "total_expenditures": 196917.99, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json index d00ac30..65711b6 100644 --- a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json +++ b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json @@ -23,15 +23,16 @@ "supporting_money": { "contributions_received": 33744.95, "total_contributions": 33744.95, - "total_expenditures": 31569.65, - "total_loans_received": 0.0, + "total_expenditures": 29369.65, + "total_loans_received": 3500.0, "total_supporting_independent": 50.63, "support_list": [ { "Total": 50.63, "Cand_ID": 1368984, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,24 +48,22 @@ }, "total_small_contributions": 2020.0, "expenditures_by_type": { - "Print Ads": 1617.66, - "Not Stated": 876.49, - "Phone Banks": 356.52, - "Contribution": 2175.0, - "Office Expenses": 100.0, - "Fundraising Events": 158.49, - "Campaign Consultants": 5000.0, - "Campaign Workers' Salaries": 4197.84, - "Polling and Survey Research": 926.42, - "Campaign Paraphernalia/Misc.": 1736.64, - "Candidate Filing/Ballot Fees": 1640.0, - "Campaign Literature and Mailings": 5928.4, - "Postage, Delivery and Messenger Services": 5674.56, - "Professional Services (Legal, Accounting)": 150.0 + "": 876.49, + "CMP": 1736.64, + "CNS": 5000.0, + "CTB": 1175.0, + "FIL": 640.0, + "FND": 158.49, + "LIT": 5928.4, + "OFC": 100.0, + "PHO": 356.52, + "POL": 926.42, + "POS": 5674.56, + "PRO": 150.0, + "PRT": 1617.66, + "SAL": 4197.84 }, "supporting_by_type": { - "MON": 1000.0, - "Independent Expenditure Supporting/Opposing Others": 101.26 } }, "opposing_money": { @@ -76,8 +75,6 @@ ] }, "total_contributions": 33744.95, - "test_totals": 33744.95, - "list_total": 28786.68, - "total_expenditures": 31569.65, - "total_loans_received": 0.0 + "total_expenditures": 29369.65, + "total_loans_received": 3500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/andrew-park.json b/build/_data/candidates/oakland/2014-11-04/andrew-park.json index a50faaf..41ced30 100644 --- a/build/_data/candidates/oakland/2014-11-04/andrew-park.json +++ b/build/_data/candidates/oakland/2014-11-04/andrew-park.json @@ -43,18 +43,18 @@ }, "total_small_contributions": 9413.86, "expenditures_by_type": { - "Not Stated": 3746.73, - "Phone Banks": 4981.94, - "Civic Donations": 100.0, - "Office Expenses": 9271.69, - "Fundraising Events": 2226.94, - "Campaign Consultants": 15700.0, - "Meetings and Appearances": 247.82, - "Campaign Workers' Salaries": 1600.0, - "Polling and Survey Research": 2885.0, - "Campaign Paraphernalia/Misc.": 8241.76, - "Campaign Literature and Mailings": 32920.9, - "Information Technology Costs (Internet, E-mail)": 2646.38 + "": 3746.73, + "CMP": 8241.76, + "CNS": 15700.0, + "CVC": 100.0, + "FND": 2226.94, + "LIT": 32920.9, + "MTG": 247.82, + "OFC": 9271.69, + "PHO": 4981.94, + "POL": 2885.0, + "SAL": 1600.0, + "WEB": 2646.38 }, "supporting_by_type": { } @@ -68,8 +68,6 @@ ] }, "total_contributions": 67825.58, - "test_totals": 67825.58, - "list_total": 59004.72, "total_expenditures": 87126.7, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json index 3a788b3..ae66d75 100644 --- a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json @@ -31,7 +31,8 @@ "Total": 89243.48, "Cand_ID": 1365610, "Filer_ID": "1294190", - "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO" + "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,27 +48,25 @@ }, "total_small_contributions": 6664.0, "expenditures_by_type": { - "Print Ads": 100.0, - "Not Stated": 5900.0, - "Phone Banks": 478.16, - "Contribution": 500.0, - "Civic Donations": 4300.0, - "Office Expenses": 8204.11, - "Fundraising Events": 2930.15, - "Campaign Consultants": 20000.0, - "Meetings and Appearances": 220.0, - "Campaign Workers' Salaries": 9750.0, - "Campaign Paraphernalia/Misc.": 5194.28, - "Candidate Filing/Ballot Fees": 600.0, - "Campaign Literature and Mailings": 62478.8, - "Staff/Spouse Travel, Lodging, and Meals": 928.62, - "Postage, Delivery and Messenger Services": 147.0, - "Professional Services (Legal, Accounting)": 6049.1, - "Information Technology Costs (Internet, E-mail)": 5853.67 + "": 5900.0, + "CMP": 5194.28, + "CNS": 20000.0, + "CTB": 500.0, + "CVC": 4300.0, + "FIL": 600.0, + "FND": 2930.15, + "LIT": 62478.8, + "MTG": 220.0, + "OFC": 8204.11, + "PHO": 478.16, + "POS": 147.0, + "PRO": 6049.1, + "PRT": 100.0, + "SAL": 9750.0, + "TRS": 928.62, + "WEB": 5853.67 }, "supporting_by_type": { - "MON": 700.0, - "Independent Expenditure Supporting/Opposing Others": 89243.48 } }, "opposing_money": { @@ -79,8 +78,6 @@ ] }, "total_contributions": 124860.15, - "test_totals": 124860.15, - "list_total": 118802.15, "total_expenditures": 137467.74, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json index 6f05f44..238d1d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -42,19 +42,18 @@ }, "total_small_contributions": 275.0, "expenditures_by_type": { - "Print Ads": 9483.0, - "Phone Banks": 1625.47, - "Office Expenses": 589.98, - "Campaign Consultants": 11447.9, - "Meetings and Appearances": 150.0, - "Campaign Paraphernalia/Misc.": 2520.62, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 37284.94, - "Professional Services (Legal, Accounting)": 1880.0, - "Information Technology Costs (Internet, E-mail)": 3500.0 + "CMP": 2520.62, + "CNS": 11447.9, + "FIL": 500.0, + "LIT": 37284.94, + "MTG": 150.0, + "OFC": 589.98, + "PHO": 1625.47, + "PRO": 1880.0, + "PRT": 9483.0, + "WEB": 3500.0 }, "supporting_by_type": { - "MON": 3800.0 } }, "opposing_money": { @@ -66,8 +65,6 @@ ] }, "total_contributions": 69175.0, - "test_totals": 69175.0, - "list_total": 68900.0, "total_expenditures": 69170.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json index 22a3fac..b0695d3 100644 --- a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json +++ b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1357609, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 10446.26, "Cand_ID": 1357609, "Filer_ID": "983545", - "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce" + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,28 +56,26 @@ }, "total_small_contributions": 7354.23, "expenditures_by_type": { - "Print Ads": 1500.0, - "Not Stated": 73215.79, - "Phone Banks": 8729.67, - "Civic Donations": 800.0, - "Office Expenses": 24408.3, - "Fundraising Events": 12249.2, - "Campaign Consultants": 30000.0, - "Meetings and Appearances": 6512.87, - "Polling and Survey Research": 20000.0, - "Campaign Paraphernalia/Misc.": 62144.3, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 78185.99, - "Candidate Travel, Lodging, and Meals": 7.99, - "Staff/Spouse Travel, Lodging, and Meals": 2620.56, - "Postage, Delivery and Messenger Services": 12617.84, - "Professional Services (Legal, Accounting)": 21832.53, - "T.V. or Cable Airtime and Production Costs": 11520.9, - "Information Technology Costs (Internet, E-mail)": 15968.27 + "": 73215.79, + "CMP": 62144.3, + "CNS": 30000.0, + "CVC": 800.0, + "FIL": 300.0, + "FND": 12249.2, + "LIT": 78185.99, + "MTG": 6512.87, + "OFC": 24408.3, + "PHO": 8729.67, + "POL": 20000.0, + "POS": 12617.84, + "PRO": 21832.53, + "PRT": 1500.0, + "TEL": 11520.9, + "TRC": 7.99, + "TRS": 2620.56, + "WEB": 15968.27 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 18896.26 } }, "opposing_money": { @@ -87,8 +87,6 @@ ] }, "total_contributions": 237608.59, - "test_totals": 237608.59, - "list_total": 230524.09, "total_expenditures": 376955.55, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/charles-williams.json b/build/_data/candidates/oakland/2014-11-04/charles-williams.json index 5155994..b94cacf 100644 --- a/build/_data/candidates/oakland/2014-11-04/charles-williams.json +++ b/build/_data/candidates/oakland/2014-11-04/charles-williams.json @@ -42,15 +42,15 @@ }, "total_small_contributions": 35.0, "expenditures_by_type": { - "Print Ads": 960.0, - "Not Stated": 1050.0, - "Meetings and Appearances": 2651.0, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3946.0, - "Radio Airtime and Production Costs": 1860.0, - "Staff/Spouse Travel, Lodging, and Meals": 500.0, - "Postage, Delivery and Messenger Services": 1200.0, - "T.V. or Cable Airtime and Production Costs": 3750.0 + "": 1050.0, + "FIL": 300.0, + "LIT": 3946.0, + "MTG": 2651.0, + "POS": 1200.0, + "PRT": 960.0, + "RAD": 1860.0, + "TEL": 3750.0, + "TRS": 500.0 }, "supporting_by_type": { } @@ -64,8 +64,6 @@ ] }, "total_contributions": 11835.0, - "test_totals": 11835.0, - "list_total": 11800.0, "total_expenditures": 16302.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json index b83e614..f178710 100644 --- a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json +++ b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json @@ -42,16 +42,16 @@ }, "total_small_contributions": 2998.9, "expenditures_by_type": { - "Not Stated": 1365.45, - "Phone Banks": 1238.56, - "Office Expenses": 190.0, - "Fundraising Events": 914.07, - "Campaign Paraphernalia/Misc.": 3543.88, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 9703.58, - "Postage, Delivery and Messenger Services": 182.5, - "Professional Services (Legal, Accounting)": 1116.07, - "Information Technology Costs (Internet, E-mail)": 145.0 + "": 1365.45, + "CMP": 3543.88, + "FIL": 250.0, + "FND": 914.07, + "LIT": 9703.58, + "OFC": 190.0, + "PHO": 1238.56, + "POS": 182.5, + "PRO": 1116.07, + "WEB": 145.0 }, "supporting_by_type": { } @@ -65,8 +65,6 @@ ] }, "total_contributions": 18747.83, - "test_totals": 18747.83, - "list_total": 15873.93, "total_expenditures": 19226.62, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json b/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json index 6d37fb6..fb3d912 100644 --- a/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json +++ b/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json @@ -51,8 +51,6 @@ ] }, "total_contributions": 5000.0, - "test_totals": 5000.0, - "list_total": 5000.0, "total_expenditures": 0.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json index b3d8137..94f90a3 100644 --- a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json +++ b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json @@ -43,22 +43,21 @@ }, "total_small_contributions": 12393.89, "expenditures_by_type": { - "Print Ads": 1452.5, - "Office Expenses": 14228.94, - "Campaign Consultants": 24000.0, - "Meetings and Appearances": 1231.63, - "Campaign Workers' Salaries": 53774.57, - "Polling and Survey Research": 28000.0, - "Campaign Paraphernalia/Misc.": 2364.69, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12067.08, - "Staff/Spouse Travel, Lodging, and Meals": 2236.23, - "Postage, Delivery and Messenger Services": 2986.53, - "Professional Services (Legal, Accounting)": 9488.12, - "Information Technology Costs (Internet, E-mail)": 11086.68 + "CMP": 2364.69, + "CNS": 24000.0, + "FIL": 300.0, + "LIT": 12067.08, + "MTG": 1231.63, + "OFC": 14228.94, + "POL": 28000.0, + "POS": 2986.53, + "PRO": 9488.12, + "PRT": 1452.5, + "SAL": 53774.57, + "TRS": 2236.23, + "WEB": 11086.68 }, "supporting_by_type": { - "MON": 2200.0 } }, "opposing_money": { @@ -70,8 +69,6 @@ ] }, "total_contributions": 164638.37, - "test_totals": 164638.37, - "list_total": 155197.37, "total_expenditures": 165436.59, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json index 37d7f43..7334c54 100644 --- a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json +++ b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json @@ -42,22 +42,22 @@ }, "total_small_contributions": 7607.23, "expenditures_by_type": { - "Print Ads": 6205.0, - "Not Stated": 2090.45, - "Phone Banks": 1247.0, - "Office Expenses": 8348.23, - "Fundraising Events": 7746.0, - "Campaign Consultants": 154399.76, - "Meetings and Appearances": 394.0, - "Campaign Workers' Salaries": 60300.0, - "Polling and Survey Research": 11187.47, - "Campaign Paraphernalia/Misc.": 15144.71, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 934.73, - "Staff/Spouse Travel, Lodging, and Meals": 2659.35, - "Postage, Delivery and Messenger Services": 5964.21, - "Information Technology Costs (Internet, E-mail)": 1699.05, - "Transfer Between Committees of the Same Candidate/sponsor": 2.99 + "": 2090.45, + "CMP": 15144.71, + "CNS": 154399.76, + "FIL": 300.0, + "FND": 7746.0, + "LIT": 934.73, + "MTG": 394.0, + "OFC": 8348.23, + "PHO": 1247.0, + "POL": 11187.47, + "POS": 5964.21, + "PRT": 6205.0, + "SAL": 60300.0, + "TRS": 2659.35, + "TSF": 2.99, + "WEB": 1699.05 }, "supporting_by_type": { } @@ -71,8 +71,6 @@ ] }, "total_contributions": 280968.87, - "test_totals": 280968.87, - "list_total": 84279.63, "total_expenditures": 330419.52, "total_loans_received": 190000.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/dana-king.json b/build/_data/candidates/oakland/2014-11-04/dana-king.json index fc6ecda..c2c3d68 100644 --- a/build/_data/candidates/oakland/2014-11-04/dana-king.json +++ b/build/_data/candidates/oakland/2014-11-04/dana-king.json @@ -31,7 +31,8 @@ "Total": 429.45, "Cand_ID": 1364029, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,21 +48,19 @@ }, "total_small_contributions": 5651.98, "expenditures_by_type": { - "Not Stated": 22060.79, - "Civic Donations": 8726.94, - "Office Expenses": 5951.14, - "Fundraising Events": 148.98, - "Campaign Consultants": 29282.98, - "Campaign Workers' Salaries": 6550.0, - "Campaign Paraphernalia/Misc.": 12098.77, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 20507.12, - "Candidate Travel, Lodging, and Meals": 1423.03, - "Postage, Delivery and Messenger Services": 2040.85 + "": 22060.79, + "CMP": 12098.77, + "CNS": 29282.98, + "CVC": 8726.94, + "FIL": 250.0, + "FND": 148.98, + "LIT": 20507.12, + "OFC": 5951.14, + "POS": 2040.85, + "SAL": 6550.0, + "TRC": 1423.03 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 744.45 } }, "opposing_money": { @@ -73,8 +72,6 @@ ] }, "total_contributions": 91487.96, - "test_totals": 91487.96, - "list_total": 86240.98, "total_expenditures": 109745.36, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json index bafd316..2888240 100644 --- a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json +++ b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json @@ -23,27 +23,16 @@ "supporting_money": { "contributions_received": 38429.0, "total_contributions": 38429.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0, - "total_supporting_independent": 23600.06, + "total_expenditures": 62449.07, + "total_loans_received": -2500.0, + "total_supporting_independent": 429.45, "support_list": [ - { - "Total": 22999.0, - "Cand_ID": 1236617, - "Filer_ID": "1390351", - "Filer_NamL": "East Bay Working Families" - }, { "Total": 429.45, "Cand_ID": 1236617, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" - }, - { - "Total": 171.61, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -56,62 +45,36 @@ "Within Oakland": 22920.0, "Within California": 17600.0 }, - "total_small_contributions": 1332.0, + "total_small_contributions": 539.0, "expenditures_by_type": { - "Print Ads": 1600.0, - "Not Stated": 9088.93, - "Phone Banks": 6950.0, - "Contribution": 1400.0, - "Legal Defense": 1000.0, - "Civic Donations": 8241.74, - "Office Expenses": 17027.58, - "Fundraising Events": 5327.38, - "Campaign Consultants": 40300.0, - "Member Communications": 658.19, - "Meetings and Appearances": 2307.7, - "Campaign Workers' Salaries": 6300.0, - "Campaign Paraphernalia/Misc.": 6590.63, - "Candidate Filing/Ballot Fees": 1250.0, - "Campaign Literature and Mailings": 44808.23, - "Candidate Travel, Lodging, and Meals": 2462.04, - "Postage, Delivery and Messenger Services": 16472.78, - "Professional Services (Legal, Accounting)": 6888.01, - "T.V. or Cable Airtime and Production Costs": 1000.0, - "Information Technology Costs (Internet, E-mail)": 7366.31 + "": 7453.93, + "CMP": 1608.42, + "CNS": 6000.0, + "CTB": 1400.0, + "CVC": 2200.0, + "FIL": 250.0, + "FND": 4045.45, + "LEG": 1000.0, + "LIT": 22934.34, + "MBR": 658.19, + "OFC": 4451.4, + "POS": 102.0, + "PRT": 1600.0, + "SAL": 6300.0, + "TRC": 1182.61 }, "supporting_by_type": { - "MON": 10800.0, - "Mailer": 14542.0, - "Doorhanger": 17656.0, - "Phone Banking & Field Campaign": 13800.0, - "Independent Expenditure Supporting/Opposing Others": 1832.12 } }, "opposing_money": { - "opposing_expenditures": 160145.67, + "opposing_expenditures": 0.0, "opposing_by_type": { - "IKD": 14908.0, - "MON": 193000.0, - "Independent Expenditure Supporting/Opposing Others": 320291.34 }, "opposition_list": [ - { - "Total": 31230.49, - "Cand_ID": 1236617, - "Filer_ID": "1413388", - "Filer_NamL": "Citizens for a United Oakland, Opposing Desley Brooks for City Council" - }, - { - "Total": 128915.18, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" - } + ] }, "total_contributions": 38429.0, - "test_totals": 38429.0, - "list_total": 144433.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0 + "total_expenditures": 62449.07, + "total_loans_received": -2500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json index f9c705b..a510214 100644 --- a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json +++ b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/james-moore.json b/build/_data/candidates/oakland/2014-11-04/james-moore.json index fcfb340..b3926d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/james-moore.json +++ b/build/_data/candidates/oakland/2014-11-04/james-moore.json @@ -41,11 +41,11 @@ }, "total_small_contributions": 1366.0, "expenditures_by_type": { - "Office Expenses": 800.0, - "Fundraising Events": 250.0, - "Campaign Paraphernalia/Misc.": 746.33, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 5799.0 + "CMP": 746.33, + "FIL": 250.0, + "FND": 250.0, + "LIT": 5799.0, + "OFC": 800.0 }, "supporting_by_type": { } @@ -59,8 +59,6 @@ ] }, "total_contributions": 10758.0, - "test_totals": 10758.0, - "list_total": 9699.0, "total_expenditures": 10731.33, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json index 5ccf5ae..d7db0ee 100644 --- a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json +++ b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/jean-quan.json b/build/_data/candidates/oakland/2014-11-04/jean-quan.json index 498e836..9f9d78f 100644 --- a/build/_data/candidates/oakland/2014-11-04/jean-quan.json +++ b/build/_data/candidates/oakland/2014-11-04/jean-quan.json @@ -42,36 +42,33 @@ }, "total_small_contributions": 16686.8, "expenditures_by_type": { - "Not Stated": 22401.95, - "Office Expenses": 1500.0, - "Fundraising Events": 5738.75, - "Campaign Consultants": 56229.72, - "Polling and Survey Research": 23286.0, - "Campaign Paraphernalia/Misc.": 9373.41, - "Campaign Literature and Mailings": 237328.31, - "Information Technology Costs (Internet, E-mail)": 3400.0 + "": 22401.95, + "CMP": 9373.41, + "CNS": 56229.72, + "FND": 5738.75, + "LIT": 237328.31, + "OFC": 1500.0, + "POL": 23286.0, + "WEB": 3400.0 }, "supporting_by_type": { - "MON": 1400.0 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 8450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1354678, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, "total_contributions": 242342.31, - "test_totals": 242342.31, - "list_total": 259647.87, "total_expenditures": 362597.46, "total_loans_received": -30000.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json index 5692466..4e48c36 100644 --- a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json +++ b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json @@ -42,20 +42,19 @@ }, "total_small_contributions": 2041.0, "expenditures_by_type": { - "Print Ads": 5670.0, - "Not Stated": 2312.19, - "Civic Donations": 500.0, - "Campaign Consultants": 16225.78, - "Campaign Paraphernalia/Misc.": 29757.02, - "Candidate Filing/Ballot Fees": 650.0, - "Campaign Literature and Mailings": 64678.24, - "Candidate Travel, Lodging, and Meals": 374.19, - "Postage, Delivery and Messenger Services": 364.28, - "Professional Services (Legal, Accounting)": 1500.0, - "Information Technology Costs (Internet, E-mail)": 1302.07 + "": 2312.19, + "CMP": 29757.02, + "CNS": 16225.78, + "CVC": 500.0, + "FIL": 650.0, + "LIT": 64678.24, + "POS": 364.28, + "PRO": 1500.0, + "PRT": 5670.0, + "TRC": 374.19, + "WEB": 1302.07 }, "supporting_by_type": { - "MON": 2800.0 } }, "opposing_money": { @@ -67,8 +66,6 @@ ] }, "total_contributions": 96641.0, - "test_totals": 96641.0, - "list_total": 76200.0, "total_expenditures": 121746.72, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json index 5fa0368..6b76fe6 100644 --- a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json +++ b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json @@ -31,7 +31,8 @@ "Total": 8450.0, "Cand_ID": 1359017, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,25 +48,23 @@ }, "total_small_contributions": 10042.0, "expenditures_by_type": { - "Print Ads": 420.0, - "Not Stated": 1143.76, - "Phone Banks": 1086.75, - "Civic Donations": 726.75, - "Office Expenses": 18758.01, - "Fundraising Events": 589.63, - "Campaign Consultants": 84120.0, - "Meetings and Appearances": 105.0, - "Campaign Paraphernalia/Misc.": 6305.45, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 59144.47, - "Postage, Delivery and Messenger Services": 34371.2, - "Professional Services (Legal, Accounting)": 3382.76, - "T.V. or Cable Airtime and Production Costs": 28884.7, - "Information Technology Costs (Internet, E-mail)": 5850.13 + "": 1143.76, + "CMP": 6305.45, + "CNS": 84120.0, + "CVC": 726.75, + "FIL": 500.0, + "FND": 589.63, + "LIT": 59144.47, + "MTG": 105.0, + "OFC": 18758.01, + "PHO": 1086.75, + "POS": 34371.2, + "PRO": 3382.76, + "PRT": 420.0, + "TEL": 28884.7, + "WEB": 5850.13 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 8450.0 } }, "opposing_money": { @@ -77,8 +76,6 @@ ] }, "total_contributions": 115502.98, - "test_totals": 115502.98, - "list_total": 111227.0, "total_expenditures": 250571.9, "total_loans_received": -4211.02 } diff --git a/build/_data/candidates/oakland/2014-11-04/karl-debro.json b/build/_data/candidates/oakland/2014-11-04/karl-debro.json index bff4ffe..8447b4c 100644 --- a/build/_data/candidates/oakland/2014-11-04/karl-debro.json +++ b/build/_data/candidates/oakland/2014-11-04/karl-debro.json @@ -42,11 +42,11 @@ }, "total_small_contributions": 974.0, "expenditures_by_type": { - "Not Stated": 80.0, - "Campaign Consultants": 2685.0, - "Campaign Paraphernalia/Misc.": 488.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12063.65 + "": 80.0, + "CMP": 488.54, + "CNS": 2685.0, + "FIL": 300.0, + "LIT": 12063.65 }, "supporting_by_type": { } @@ -60,8 +60,6 @@ ] }, "total_contributions": 1165.8, - "test_totals": 1165.8, - "list_total": 11225.0, "total_expenditures": 15711.07, "total_loans_received": -11008.2 } diff --git a/build/_data/candidates/oakland/2014-11-04/ken-houston.json b/build/_data/candidates/oakland/2014-11-04/ken-houston.json index 0435590..d61c865 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-houston.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-houston.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json index e6ce8c2..bd49605 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json index fcb983e..2b6ab32 100644 --- a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json +++ b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json @@ -43,19 +43,19 @@ }, "total_small_contributions": 5597.0, "expenditures_by_type": { - "Not Stated": 19750.55, - "Office Expenses": 920.95, - "Fundraising Events": 1952.4, - "Campaign Consultants": 22085.96, - "Petition Circulating": 795.47, - "Meetings and Appearances": 1205.64, - "Campaign Workers' Salaries": 3600.0, - "Campaign Paraphernalia/Misc.": 23736.21, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 114.18, - "Candidate Travel, Lodging, and Meals": 1000.0, - "Postage, Delivery and Messenger Services": 98.0, - "Professional Services (Legal, Accounting)": 2588.19 + "": 19750.55, + "CMP": 23736.21, + "CNS": 22085.96, + "FIL": 300.0, + "FND": 1952.4, + "LIT": 114.18, + "MTG": 1205.64, + "OFC": 920.95, + "PET": 795.47, + "POS": 98.0, + "PRO": 2588.19, + "SAL": 3600.0, + "TRC": 1000.0 }, "supporting_by_type": { } @@ -69,8 +69,6 @@ ] }, "total_contributions": 62212.0, - "test_totals": 62212.0, - "list_total": 55760.0, "total_expenditures": 80430.44, "total_loans_received": 1600.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/len-raphael.json b/build/_data/candidates/oakland/2014-11-04/len-raphael.json index 11ee079..08fcbfe 100644 --- a/build/_data/candidates/oakland/2014-11-04/len-raphael.json +++ b/build/_data/candidates/oakland/2014-11-04/len-raphael.json @@ -41,14 +41,14 @@ }, "total_small_contributions": 345.58, "expenditures_by_type": { - "Office Expenses": 1106.52, - "Meetings and Appearances": 100.0, - "Campaign Paraphernalia/Misc.": 2036.53, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 32854.91, - "Candidate Travel, Lodging, and Meals": 478.21, - "Staff/Spouse Travel, Lodging, and Meals": 400.56, - "Information Technology Costs (Internet, E-mail)": 3177.99 + "CMP": 2036.53, + "FIL": 300.0, + "LIT": 32854.91, + "MTG": 100.0, + "OFC": 1106.52, + "TRC": 478.21, + "TRS": 400.56, + "WEB": 3177.99 }, "supporting_by_type": { } @@ -62,8 +62,6 @@ ] }, "total_contributions": 37784.69, - "test_totals": 37784.69, - "list_total": 37623.69, "total_expenditures": 40597.97, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json index f6e3fe2..7301498 100644 --- a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json +++ b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1362261, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1362261, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -53,29 +55,26 @@ }, "total_small_contributions": 15141.66, "expenditures_by_type": { - "Print Ads": 4900.0, - "Not Stated": 26687.73, - "Phone Banks": 5361.23, - "Contribution": 9400.0, - "Civic Donations": 14389.46, - "Office Expenses": 47081.01, - "Fundraising Events": 12043.26, - "Campaign Consultants": 193021.15, - "Returned Contributions": 2295.0, - "Meetings and Appearances": 53167.82, - "Polling and Survey Research": 9000.0, - "Campaign Paraphernalia/Misc.": 5387.66, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 43791.4, - "Postage, Delivery and Messenger Services": 46317.46, - "Professional Services (Legal, Accounting)": 33164.83, - "T.V. or Cable Airtime and Production Costs": 63432.0, - "Information Technology Costs (Internet, E-mail)": 11499.42 + "": 26687.73, + "CMP": 5387.66, + "CNS": 193021.15, + "CTB": 9400.0, + "CVC": 14389.46, + "FIL": 300.0, + "FND": 12043.26, + "LIT": 43791.4, + "MTG": 53167.82, + "OFC": 47081.01, + "PHO": 5361.23, + "POL": 9000.0, + "POS": 46317.46, + "PRO": 33164.83, + "PRT": 4900.0, + "RFD": 2295.0, + "TEL": 63432.0, + "WEB": 11499.42 }, "supporting_by_type": { - "MON": 5700.0, - "BILLBOARDS 10/18 - 11/6": 7672.0, - "Independent Expenditure Supporting/Opposing Others": 9824.45 } }, "opposing_money": { @@ -87,8 +86,6 @@ ] }, "total_contributions": 462809.82, - "test_totals": 462809.82, - "list_total": 452345.71, "total_expenditures": 583374.15, "total_loans_received": -1050.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json index 35cd001..3cc3576 100644 --- a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json +++ b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json @@ -42,14 +42,14 @@ }, "total_small_contributions": 6539.0, "expenditures_by_type": { - "Not Stated": 18947.11, - "Office Expenses": 991.96, - "Meetings and Appearances": 1291.03, - "Campaign Paraphernalia/Misc.": 422.25, - "Candidate Filing/Ballot Fees": 119.0, - "Campaign Literature and Mailings": 10293.5, - "Candidate Travel, Lodging, and Meals": 228.87, - "Information Technology Costs (Internet, E-mail)": 1300.0 + "": 18947.11, + "CMP": 422.25, + "FIL": 119.0, + "LIT": 10293.5, + "MTG": 1291.03, + "OFC": 991.96, + "TRC": 228.87, + "WEB": 1300.0 }, "supporting_by_type": { } @@ -63,8 +63,6 @@ ] }, "total_contributions": 34487.87, - "test_totals": 34487.87, - "list_total": 29981.87, "total_expenditures": 35886.83, "total_loans_received": -205.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json index 6b6e024..0a08384 100644 --- a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json +++ b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json b/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json index 633b4ce..edd2026 100644 --- a/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json +++ b/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json @@ -54,8 +54,6 @@ ] }, "total_contributions": 147.23, - "test_totals": 147.23, - "list_total": 147.23, "total_expenditures": 147.23, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/nina-senn.json b/build/_data/candidates/oakland/2014-11-04/nina-senn.json index e4a04af..e28bbe0 100644 --- a/build/_data/candidates/oakland/2014-11-04/nina-senn.json +++ b/build/_data/candidates/oakland/2014-11-04/nina-senn.json @@ -31,7 +31,8 @@ "Total": 34118.55, "Cand_ID": 1368416, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -48,21 +49,19 @@ }, "total_small_contributions": 1483.82, "expenditures_by_type": { - "Not Stated": 2705.87, - "Contribution": 118.48, - "Fundraising Events": 320.0, - "Campaign Consultants": 8000.0, - "Polling and Survey Research": 1592.8, - "Campaign Paraphernalia/Misc.": 1751.75, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 6344.47, - "Postage, Delivery and Messenger Services": 1538.95, - "T.V. or Cable Airtime and Production Costs": 830.0, - "Information Technology Costs (Internet, E-mail)": 57.0 + "": 2705.87, + "CMP": 1751.75, + "CNS": 8000.0, + "CTB": 118.48, + "FIL": 300.0, + "FND": 320.0, + "LIT": 6344.47, + "POL": 1592.8, + "POS": 1538.95, + "TEL": 830.0, + "WEB": 57.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34118.55 } }, "opposing_money": { @@ -74,8 +73,6 @@ ] }, "total_contributions": 24233.82, - "test_totals": 24233.82, - "list_total": 23076.7, "total_expenditures": 24231.57, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json index ccb47c6..1289df4 100644 --- a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json +++ b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/paul-lim.json b/build/_data/candidates/oakland/2014-11-04/paul-lim.json index 43abd17..86d91d9 100644 --- a/build/_data/candidates/oakland/2014-11-04/paul-lim.json +++ b/build/_data/candidates/oakland/2014-11-04/paul-lim.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/peter-liu.json b/build/_data/candidates/oakland/2014-11-04/peter-liu.json index 1c68d0f..abdec16 100644 --- a/build/_data/candidates/oakland/2014-11-04/peter-liu.json +++ b/build/_data/candidates/oakland/2014-11-04/peter-liu.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json index 77e5366..dcf7d34 100644 --- a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json @@ -31,13 +31,15 @@ "Total": 10000.0, "Cand_ID": 1367270, "Filer_ID": "COAK-1538", - "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014" + "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1367270, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,51 +56,43 @@ }, "total_small_contributions": 18274.0, "expenditures_by_type": { - "Print Ads": 763.04, - "Phone Banks": 13919.92, - "Legal Defense": 4430.25, - "Office Expenses": 23828.46, - "Fundraising Events": 3648.97, - "Campaign Consultants": 122092.03, - "Returned Contributions": 4995.0, - "Meetings and Appearances": 2606.94, - "Campaign Paraphernalia/Misc.": 11065.73, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 93872.21, - "Radio Airtime and Production Costs": 4085.0, - "Candidate Travel, Lodging, and Meals": 115.19, - "Staff/Spouse Travel, Lodging, and Meals": 224.42, - "Postage, Delivery and Messenger Services": 2704.45, - "Professional Services (Legal, Accounting)": 1200.0, - "T.V. or Cable Airtime and Production Costs": 39327.6, - "Information Technology Costs (Internet, E-mail)": 19393.37 + "CMP": 11065.73, + "CNS": 122092.03, + "FIL": 300.0, + "FND": 3648.97, + "LEG": 4430.25, + "LIT": 93872.21, + "MTG": 2606.94, + "OFC": 23828.46, + "PHO": 13919.92, + "POS": 2704.45, + "PRO": 1200.0, + "PRT": 763.04, + "RAD": 4085.0, + "RFD": 4995.0, + "TEL": 39327.6, + "TRC": 115.19, + "TRS": 224.42, + "WEB": 19393.37 }, "supporting_by_type": { - "IKD": 3676.7, - "MON": 20493.0, - "Independent Expenditure Supporting/Opposing Others": 245153.1 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "MON": 1500.0, - "Cable ads": 150000.0, - "Estimated cost of media production": 24766.0, - "Independent Expenditure Supporting/Opposing Others": 43450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1367270, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, "total_contributions": 347445.36, - "test_totals": 347445.36, - "list_total": 332258.36, "total_expenditures": 349939.31, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json index 6f48cd4..4ecf4e4 100644 --- a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json +++ b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json @@ -31,7 +31,8 @@ "Total": 63894.42, "Cand_ID": 1365454, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -46,18 +47,16 @@ }, "total_small_contributions": 2943.0, "expenditures_by_type": { - "Campaign Consultants": 4750.0, - "Meetings and Appearances": 55.86, - "Polling and Survey Research": 449.0, - "Campaign Paraphernalia/Misc.": 1217.88, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3383.36, - "Professional Services (Legal, Accounting)": 160.0, - "Information Technology Costs (Internet, E-mail)": 29.0 + "CMP": 1217.88, + "CNS": 4750.0, + "FIL": 300.0, + "LIT": 3383.36, + "MTG": 55.86, + "POL": 449.0, + "PRO": 160.0, + "WEB": 29.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 63894.42 } }, "opposing_money": { @@ -69,8 +68,6 @@ ] }, "total_contributions": 12093.0, - "test_totals": 12093.0, - "list_total": 9200.0, "total_expenditures": 10590.54, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json index a40d81f..1a043d5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json +++ b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json @@ -38,9 +38,9 @@ }, "total_small_contributions": 0.0, "expenditures_by_type": { - "Print Ads": 1500.0, - "Candidate Filing/Ballot Fees": 300.0, - "Information Technology Costs (Internet, E-mail)": 507.0 + "FIL": 300.0, + "PRT": 1500.0, + "WEB": 507.0 }, "supporting_by_type": { } @@ -54,8 +54,6 @@ ] }, "total_contributions": 2609.9, - "test_totals": 2609.9, - "list_total": 2609.9, "total_expenditures": 2609.9, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json index e8a615c..13a23b5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json +++ b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json @@ -31,7 +31,8 @@ "Total": 34066.01, "Cand_ID": 1365733, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,17 +48,15 @@ }, "total_small_contributions": 2324.0, "expenditures_by_type": { - "Phone Banks": 75.0, - "Office Expenses": 802.93, - "Fundraising Events": 508.0, - "Campaign Consultants": 8940.11, - "Meetings and Appearances": 58.0, - "Campaign Literature and Mailings": 6349.45, - "Information Technology Costs (Internet, E-mail)": 656.0 + "CNS": 8940.11, + "FND": 508.0, + "LIT": 6349.45, + "MTG": 58.0, + "OFC": 802.93, + "PHO": 75.0, + "WEB": 656.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34066.01 } }, "opposing_money": { @@ -69,8 +68,6 @@ ] }, "total_contributions": 17639.0, - "test_totals": 17639.0, - "list_total": 15545.0, "total_expenditures": 18628.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json index 08e8411..ba6b8bd 100644 --- a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json @@ -43,20 +43,19 @@ }, "total_small_contributions": 8602.01, "expenditures_by_type": { - "Not Stated": 16872.35, - "Contribution": 1400.0, - "Office Expenses": 589.25, - "Fundraising Events": 1618.95, - "Polling and Survey Research": 3137.48, - "Campaign Paraphernalia/Misc.": 14274.08, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 21352.34, - "Staff/Spouse Travel, Lodging, and Meals": 248.06, - "Postage, Delivery and Messenger Services": 4662.11, - "Professional Services (Legal, Accounting)": 6361.08 + "": 16872.35, + "CMP": 14274.08, + "CTB": 1400.0, + "FIL": 300.0, + "FND": 1618.95, + "LIT": 21352.34, + "OFC": 589.25, + "POL": 3137.48, + "POS": 4662.11, + "PRO": 6361.08, + "TRS": 248.06 }, "supporting_by_type": { - "MON": 250.0 } }, "opposing_money": { @@ -68,8 +67,6 @@ ] }, "total_contributions": 73585.61, - "test_totals": 73585.61, - "list_total": 67218.6, "total_expenditures": 72428.29, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json index 32393fc..4865c99 100644 --- a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json +++ b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json @@ -41,16 +41,16 @@ }, "total_small_contributions": 7175.0, "expenditures_by_type": { - "Print Ads": 6958.74, - "Office Expenses": 255.8, - "Fundraising Events": 100.0, - "Voter Registration": 250.0, - "Campaign Consultants": 32018.84, - "Campaign Workers' Salaries": 2768.0, - "Campaign Paraphernalia/Misc.": 20724.62, - "Campaign Literature and Mailings": 531.7, - "Professional Services (Legal, Accounting)": 500.0, - "Information Technology Costs (Internet, E-mail)": 500.0 + "CMP": 20724.62, + "CNS": 32018.84, + "FND": 100.0, + "LIT": 531.7, + "OFC": 255.8, + "PRO": 500.0, + "PRT": 6958.74, + "SAL": 2768.0, + "VOT": 250.0, + "WEB": 500.0 }, "supporting_by_type": { } @@ -64,8 +64,6 @@ ] }, "total_contributions": 32601.29, - "test_totals": 32601.29, - "list_total": 21465.0, "total_expenditures": 68116.44, "total_loans_received": 611.29 } diff --git a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json index f4e1317..520a2a4 100644 --- a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json index a078afc..4cb1310 100644 --- a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json +++ b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json index 2882ab1..bb78f71 100644 --- a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json +++ b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json index e6e2dc0..c537ffb 100644 --- a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json +++ b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json @@ -41,17 +41,16 @@ }, "total_small_contributions": 393.0, "expenditures_by_type": { - "Not Stated": 500.0, - "Contribution": 26626.59, - "Fundraising Events": 3450.0, - "Campaign Consultants": 32098.97, - "Campaign Paraphernalia/Misc.": 820.44, - "Candidate Filing/Ballot Fees": 1727.0, - "Campaign Literature and Mailings": 1559.56, - "Independent Expenditure Supporting/Opposing Others": 1250.0 + "": 500.0, + "CMP": 820.44, + "CNS": 32098.97, + "CTB": 26626.59, + "FIL": 1727.0, + "FND": 3450.0, + "IND": 1250.0, + "LIT": 1559.56 }, "supporting_by_type": { - "MON": 700.0 } }, "opposing_money": { @@ -63,8 +62,6 @@ ] }, "total_contributions": 67909.0, - "test_totals": 67909.0, - "list_total": 67516.0, "total_expenditures": 68110.09, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json index acc5038..6b44f8d 100644 --- a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json +++ b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json index 4c52159..d248212 100644 --- a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json +++ b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json @@ -43,13 +43,13 @@ }, "total_small_contributions": 1707.0, "expenditures_by_type": { - "Office Expenses": 7808.74, - "Campaign Consultants": 52134.75, - "Meetings and Appearances": 835.15, - "Campaign Paraphernalia/Misc.": 6133.94, - "Campaign Literature and Mailings": 1056.73, - "Professional Services (Legal, Accounting)": 5575.0, - "Information Technology Costs (Internet, E-mail)": 1997.97 + "CMP": 6133.94, + "CNS": 52134.75, + "LIT": 1056.73, + "MTG": 835.15, + "OFC": 7808.74, + "PRO": 5575.0, + "WEB": 1997.97 }, "supporting_by_type": { } @@ -63,8 +63,6 @@ ] }, "total_contributions": 75623.14, - "test_totals": 75623.14, - "list_total": 73917.14, "total_expenditures": 75910.59, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json index f245c0d..59de439 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -41,35 +41,31 @@ }, "total_small_contributions": 2987.0, "expenditures_by_type": { - "Not Stated": 2033.0, - "Office Expenses": 1900.34, - "Campaign Consultants": 5150.0, - "Campaign Paraphernalia/Misc.": 1167.25, - "Campaign Literature and Mailings": 1054.74, - "Professional Services (Legal, Accounting)": 3057.23 + "": 2033.0, + "CMP": 1167.25, + "CNS": 5150.0, + "LIT": 1054.74, + "OFC": 1900.34, + "PRO": 3057.23 }, "supporting_by_type": { - "IKD": 5924.0, - "MON": 1500.0 } }, "opposing_money": { "opposing_expenditures": 6987.5, "opposing_by_type": { - ```
mikeubell commented 9 months ago
Build diff from Commit c0bbc3254d52483b8e2ccb1d10c45ef52ccb0cbd: ```diff diff --git a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json index 4cd099a..7a0a6f3 100644 --- a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json +++ b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json @@ -42,18 +42,18 @@ }, "total_small_contributions": 15898.0, "expenditures_by_type": { - "Print Ads": 250.0, - "Not Stated": 43849.56, - "Contribution": 4031.0, - "Civic Donations": 3600.0, - "Office Expenses": 19388.42, - "Fundraising Events": 3950.0, - "Campaign Consultants": 48600.0, - "Campaign Paraphernalia/Misc.": 2934.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 28569.2, - "Postage, Delivery and Messenger Services": 14435.8, - "Professional Services (Legal, Accounting)": 25847.23 + "": 43849.56, + "CMP": 2934.54, + "CNS": 48600.0, + "CTB": 4031.0, + "CVC": 3600.0, + "FIL": 300.0, + "FND": 3950.0, + "LIT": 28569.2, + "OFC": 19388.42, + "POS": 14435.8, + "PRO": 25847.23, + "PRT": 250.0 }, "supporting_by_type": { } @@ -67,8 +67,6 @@ ] }, "total_contributions": 177069.06, - "test_totals": 177069.06, - "list_total": 165131.06, "total_expenditures": 196917.99, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json index d00ac30..65711b6 100644 --- a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json +++ b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json @@ -23,15 +23,16 @@ "supporting_money": { "contributions_received": 33744.95, "total_contributions": 33744.95, - "total_expenditures": 31569.65, - "total_loans_received": 0.0, + "total_expenditures": 29369.65, + "total_loans_received": 3500.0, "total_supporting_independent": 50.63, "support_list": [ { "Total": 50.63, "Cand_ID": 1368984, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,24 +48,22 @@ }, "total_small_contributions": 2020.0, "expenditures_by_type": { - "Print Ads": 1617.66, - "Not Stated": 876.49, - "Phone Banks": 356.52, - "Contribution": 2175.0, - "Office Expenses": 100.0, - "Fundraising Events": 158.49, - "Campaign Consultants": 5000.0, - "Campaign Workers' Salaries": 4197.84, - "Polling and Survey Research": 926.42, - "Campaign Paraphernalia/Misc.": 1736.64, - "Candidate Filing/Ballot Fees": 1640.0, - "Campaign Literature and Mailings": 5928.4, - "Postage, Delivery and Messenger Services": 5674.56, - "Professional Services (Legal, Accounting)": 150.0 + "": 876.49, + "CMP": 1736.64, + "CNS": 5000.0, + "CTB": 1175.0, + "FIL": 640.0, + "FND": 158.49, + "LIT": 5928.4, + "OFC": 100.0, + "PHO": 356.52, + "POL": 926.42, + "POS": 5674.56, + "PRO": 150.0, + "PRT": 1617.66, + "SAL": 4197.84 }, "supporting_by_type": { - "MON": 1000.0, - "Independent Expenditure Supporting/Opposing Others": 101.26 } }, "opposing_money": { @@ -76,8 +75,6 @@ ] }, "total_contributions": 33744.95, - "test_totals": 33744.95, - "list_total": 28786.68, - "total_expenditures": 31569.65, - "total_loans_received": 0.0 + "total_expenditures": 29369.65, + "total_loans_received": 3500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/andrew-park.json b/build/_data/candidates/oakland/2014-11-04/andrew-park.json index a50faaf..41ced30 100644 --- a/build/_data/candidates/oakland/2014-11-04/andrew-park.json +++ b/build/_data/candidates/oakland/2014-11-04/andrew-park.json @@ -43,18 +43,18 @@ }, "total_small_contributions": 9413.86, "expenditures_by_type": { - "Not Stated": 3746.73, - "Phone Banks": 4981.94, - "Civic Donations": 100.0, - "Office Expenses": 9271.69, - "Fundraising Events": 2226.94, - "Campaign Consultants": 15700.0, - "Meetings and Appearances": 247.82, - "Campaign Workers' Salaries": 1600.0, - "Polling and Survey Research": 2885.0, - "Campaign Paraphernalia/Misc.": 8241.76, - "Campaign Literature and Mailings": 32920.9, - "Information Technology Costs (Internet, E-mail)": 2646.38 + "": 3746.73, + "CMP": 8241.76, + "CNS": 15700.0, + "CVC": 100.0, + "FND": 2226.94, + "LIT": 32920.9, + "MTG": 247.82, + "OFC": 9271.69, + "PHO": 4981.94, + "POL": 2885.0, + "SAL": 1600.0, + "WEB": 2646.38 }, "supporting_by_type": { } @@ -68,8 +68,6 @@ ] }, "total_contributions": 67825.58, - "test_totals": 67825.58, - "list_total": 59004.72, "total_expenditures": 87126.7, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json index 3a788b3..ae66d75 100644 --- a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json @@ -31,7 +31,8 @@ "Total": 89243.48, "Cand_ID": 1365610, "Filer_ID": "1294190", - "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO" + "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,27 +48,25 @@ }, "total_small_contributions": 6664.0, "expenditures_by_type": { - "Print Ads": 100.0, - "Not Stated": 5900.0, - "Phone Banks": 478.16, - "Contribution": 500.0, - "Civic Donations": 4300.0, - "Office Expenses": 8204.11, - "Fundraising Events": 2930.15, - "Campaign Consultants": 20000.0, - "Meetings and Appearances": 220.0, - "Campaign Workers' Salaries": 9750.0, - "Campaign Paraphernalia/Misc.": 5194.28, - "Candidate Filing/Ballot Fees": 600.0, - "Campaign Literature and Mailings": 62478.8, - "Staff/Spouse Travel, Lodging, and Meals": 928.62, - "Postage, Delivery and Messenger Services": 147.0, - "Professional Services (Legal, Accounting)": 6049.1, - "Information Technology Costs (Internet, E-mail)": 5853.67 + "": 5900.0, + "CMP": 5194.28, + "CNS": 20000.0, + "CTB": 500.0, + "CVC": 4300.0, + "FIL": 600.0, + "FND": 2930.15, + "LIT": 62478.8, + "MTG": 220.0, + "OFC": 8204.11, + "PHO": 478.16, + "POS": 147.0, + "PRO": 6049.1, + "PRT": 100.0, + "SAL": 9750.0, + "TRS": 928.62, + "WEB": 5853.67 }, "supporting_by_type": { - "MON": 700.0, - "Independent Expenditure Supporting/Opposing Others": 89243.48 } }, "opposing_money": { @@ -79,8 +78,6 @@ ] }, "total_contributions": 124860.15, - "test_totals": 124860.15, - "list_total": 118802.15, "total_expenditures": 137467.74, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json index 6f05f44..238d1d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -42,19 +42,18 @@ }, "total_small_contributions": 275.0, "expenditures_by_type": { - "Print Ads": 9483.0, - "Phone Banks": 1625.47, - "Office Expenses": 589.98, - "Campaign Consultants": 11447.9, - "Meetings and Appearances": 150.0, - "Campaign Paraphernalia/Misc.": 2520.62, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 37284.94, - "Professional Services (Legal, Accounting)": 1880.0, - "Information Technology Costs (Internet, E-mail)": 3500.0 + "CMP": 2520.62, + "CNS": 11447.9, + "FIL": 500.0, + "LIT": 37284.94, + "MTG": 150.0, + "OFC": 589.98, + "PHO": 1625.47, + "PRO": 1880.0, + "PRT": 9483.0, + "WEB": 3500.0 }, "supporting_by_type": { - "MON": 3800.0 } }, "opposing_money": { @@ -66,8 +65,6 @@ ] }, "total_contributions": 69175.0, - "test_totals": 69175.0, - "list_total": 68900.0, "total_expenditures": 69170.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json index 22a3fac..b0695d3 100644 --- a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json +++ b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1357609, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 10446.26, "Cand_ID": 1357609, "Filer_ID": "983545", - "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce" + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,28 +56,26 @@ }, "total_small_contributions": 7354.23, "expenditures_by_type": { - "Print Ads": 1500.0, - "Not Stated": 73215.79, - "Phone Banks": 8729.67, - "Civic Donations": 800.0, - "Office Expenses": 24408.3, - "Fundraising Events": 12249.2, - "Campaign Consultants": 30000.0, - "Meetings and Appearances": 6512.87, - "Polling and Survey Research": 20000.0, - "Campaign Paraphernalia/Misc.": 62144.3, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 78185.99, - "Candidate Travel, Lodging, and Meals": 7.99, - "Staff/Spouse Travel, Lodging, and Meals": 2620.56, - "Postage, Delivery and Messenger Services": 12617.84, - "Professional Services (Legal, Accounting)": 21832.53, - "T.V. or Cable Airtime and Production Costs": 11520.9, - "Information Technology Costs (Internet, E-mail)": 15968.27 + "": 73215.79, + "CMP": 62144.3, + "CNS": 30000.0, + "CVC": 800.0, + "FIL": 300.0, + "FND": 12249.2, + "LIT": 78185.99, + "MTG": 6512.87, + "OFC": 24408.3, + "PHO": 8729.67, + "POL": 20000.0, + "POS": 12617.84, + "PRO": 21832.53, + "PRT": 1500.0, + "TEL": 11520.9, + "TRC": 7.99, + "TRS": 2620.56, + "WEB": 15968.27 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 18896.26 } }, "opposing_money": { @@ -87,8 +87,6 @@ ] }, "total_contributions": 237608.59, - "test_totals": 237608.59, - "list_total": 230524.09, "total_expenditures": 376955.55, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/charles-williams.json b/build/_data/candidates/oakland/2014-11-04/charles-williams.json index 5155994..b94cacf 100644 --- a/build/_data/candidates/oakland/2014-11-04/charles-williams.json +++ b/build/_data/candidates/oakland/2014-11-04/charles-williams.json @@ -42,15 +42,15 @@ }, "total_small_contributions": 35.0, "expenditures_by_type": { - "Print Ads": 960.0, - "Not Stated": 1050.0, - "Meetings and Appearances": 2651.0, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3946.0, - "Radio Airtime and Production Costs": 1860.0, - "Staff/Spouse Travel, Lodging, and Meals": 500.0, - "Postage, Delivery and Messenger Services": 1200.0, - "T.V. or Cable Airtime and Production Costs": 3750.0 + "": 1050.0, + "FIL": 300.0, + "LIT": 3946.0, + "MTG": 2651.0, + "POS": 1200.0, + "PRT": 960.0, + "RAD": 1860.0, + "TEL": 3750.0, + "TRS": 500.0 }, "supporting_by_type": { } @@ -64,8 +64,6 @@ ] }, "total_contributions": 11835.0, - "test_totals": 11835.0, - "list_total": 11800.0, "total_expenditures": 16302.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json index b83e614..f178710 100644 --- a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json +++ b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json @@ -42,16 +42,16 @@ }, "total_small_contributions": 2998.9, "expenditures_by_type": { - "Not Stated": 1365.45, - "Phone Banks": 1238.56, - "Office Expenses": 190.0, - "Fundraising Events": 914.07, - "Campaign Paraphernalia/Misc.": 3543.88, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 9703.58, - "Postage, Delivery and Messenger Services": 182.5, - "Professional Services (Legal, Accounting)": 1116.07, - "Information Technology Costs (Internet, E-mail)": 145.0 + "": 1365.45, + "CMP": 3543.88, + "FIL": 250.0, + "FND": 914.07, + "LIT": 9703.58, + "OFC": 190.0, + "PHO": 1238.56, + "POS": 182.5, + "PRO": 1116.07, + "WEB": 145.0 }, "supporting_by_type": { } @@ -65,8 +65,6 @@ ] }, "total_contributions": 18747.83, - "test_totals": 18747.83, - "list_total": 15873.93, "total_expenditures": 19226.62, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json b/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json index 6d37fb6..fb3d912 100644 --- a/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json +++ b/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json @@ -51,8 +51,6 @@ ] }, "total_contributions": 5000.0, - "test_totals": 5000.0, - "list_total": 5000.0, "total_expenditures": 0.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json index b3d8137..94f90a3 100644 --- a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json +++ b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json @@ -43,22 +43,21 @@ }, "total_small_contributions": 12393.89, "expenditures_by_type": { - "Print Ads": 1452.5, - "Office Expenses": 14228.94, - "Campaign Consultants": 24000.0, - "Meetings and Appearances": 1231.63, - "Campaign Workers' Salaries": 53774.57, - "Polling and Survey Research": 28000.0, - "Campaign Paraphernalia/Misc.": 2364.69, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12067.08, - "Staff/Spouse Travel, Lodging, and Meals": 2236.23, - "Postage, Delivery and Messenger Services": 2986.53, - "Professional Services (Legal, Accounting)": 9488.12, - "Information Technology Costs (Internet, E-mail)": 11086.68 + "CMP": 2364.69, + "CNS": 24000.0, + "FIL": 300.0, + "LIT": 12067.08, + "MTG": 1231.63, + "OFC": 14228.94, + "POL": 28000.0, + "POS": 2986.53, + "PRO": 9488.12, + "PRT": 1452.5, + "SAL": 53774.57, + "TRS": 2236.23, + "WEB": 11086.68 }, "supporting_by_type": { - "MON": 2200.0 } }, "opposing_money": { @@ -70,8 +69,6 @@ ] }, "total_contributions": 164638.37, - "test_totals": 164638.37, - "list_total": 155197.37, "total_expenditures": 165436.59, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json index 37d7f43..7334c54 100644 --- a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json +++ b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json @@ -42,22 +42,22 @@ }, "total_small_contributions": 7607.23, "expenditures_by_type": { - "Print Ads": 6205.0, - "Not Stated": 2090.45, - "Phone Banks": 1247.0, - "Office Expenses": 8348.23, - "Fundraising Events": 7746.0, - "Campaign Consultants": 154399.76, - "Meetings and Appearances": 394.0, - "Campaign Workers' Salaries": 60300.0, - "Polling and Survey Research": 11187.47, - "Campaign Paraphernalia/Misc.": 15144.71, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 934.73, - "Staff/Spouse Travel, Lodging, and Meals": 2659.35, - "Postage, Delivery and Messenger Services": 5964.21, - "Information Technology Costs (Internet, E-mail)": 1699.05, - "Transfer Between Committees of the Same Candidate/sponsor": 2.99 + "": 2090.45, + "CMP": 15144.71, + "CNS": 154399.76, + "FIL": 300.0, + "FND": 7746.0, + "LIT": 934.73, + "MTG": 394.0, + "OFC": 8348.23, + "PHO": 1247.0, + "POL": 11187.47, + "POS": 5964.21, + "PRT": 6205.0, + "SAL": 60300.0, + "TRS": 2659.35, + "TSF": 2.99, + "WEB": 1699.05 }, "supporting_by_type": { } @@ -71,8 +71,6 @@ ] }, "total_contributions": 280968.87, - "test_totals": 280968.87, - "list_total": 84279.63, "total_expenditures": 330419.52, "total_loans_received": 190000.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/dana-king.json b/build/_data/candidates/oakland/2014-11-04/dana-king.json index fc6ecda..c2c3d68 100644 --- a/build/_data/candidates/oakland/2014-11-04/dana-king.json +++ b/build/_data/candidates/oakland/2014-11-04/dana-king.json @@ -31,7 +31,8 @@ "Total": 429.45, "Cand_ID": 1364029, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,21 +48,19 @@ }, "total_small_contributions": 5651.98, "expenditures_by_type": { - "Not Stated": 22060.79, - "Civic Donations": 8726.94, - "Office Expenses": 5951.14, - "Fundraising Events": 148.98, - "Campaign Consultants": 29282.98, - "Campaign Workers' Salaries": 6550.0, - "Campaign Paraphernalia/Misc.": 12098.77, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 20507.12, - "Candidate Travel, Lodging, and Meals": 1423.03, - "Postage, Delivery and Messenger Services": 2040.85 + "": 22060.79, + "CMP": 12098.77, + "CNS": 29282.98, + "CVC": 8726.94, + "FIL": 250.0, + "FND": 148.98, + "LIT": 20507.12, + "OFC": 5951.14, + "POS": 2040.85, + "SAL": 6550.0, + "TRC": 1423.03 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 744.45 } }, "opposing_money": { @@ -73,8 +72,6 @@ ] }, "total_contributions": 91487.96, - "test_totals": 91487.96, - "list_total": 86240.98, "total_expenditures": 109745.36, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json index bafd316..de0c2f2 100644 --- a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json +++ b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json @@ -23,27 +23,16 @@ "supporting_money": { "contributions_received": 38429.0, "total_contributions": 38429.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0, - "total_supporting_independent": 23600.06, + "total_expenditures": 62449.07, + "total_loans_received": -2500.0, + "total_supporting_independent": 429.45, "support_list": [ - { - "Total": 22999.0, - "Cand_ID": 1236617, - "Filer_ID": "1390351", - "Filer_NamL": "East Bay Working Families" - }, { "Total": 429.45, "Cand_ID": 1236617, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" - }, - { - "Total": 171.61, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -58,60 +47,34 @@ }, "total_small_contributions": 1332.0, "expenditures_by_type": { - "Print Ads": 1600.0, - "Not Stated": 9088.93, - "Phone Banks": 6950.0, - "Contribution": 1400.0, - "Legal Defense": 1000.0, - "Civic Donations": 8241.74, - "Office Expenses": 17027.58, - "Fundraising Events": 5327.38, - "Campaign Consultants": 40300.0, - "Member Communications": 658.19, - "Meetings and Appearances": 2307.7, - "Campaign Workers' Salaries": 6300.0, - "Campaign Paraphernalia/Misc.": 6590.63, - "Candidate Filing/Ballot Fees": 1250.0, - "Campaign Literature and Mailings": 44808.23, - "Candidate Travel, Lodging, and Meals": 2462.04, - "Postage, Delivery and Messenger Services": 16472.78, - "Professional Services (Legal, Accounting)": 6888.01, - "T.V. or Cable Airtime and Production Costs": 1000.0, - "Information Technology Costs (Internet, E-mail)": 7366.31 + "": 7453.93, + "CMP": 1608.42, + "CNS": 6000.0, + "CTB": 1400.0, + "CVC": 2200.0, + "FIL": 250.0, + "FND": 4045.45, + "LEG": 1000.0, + "LIT": 22934.34, + "MBR": 658.19, + "OFC": 4451.4, + "POS": 102.0, + "PRT": 1600.0, + "SAL": 6300.0, + "TRC": 1182.61 }, "supporting_by_type": { - "MON": 10800.0, - "Mailer": 14542.0, - "Doorhanger": 17656.0, - "Phone Banking & Field Campaign": 13800.0, - "Independent Expenditure Supporting/Opposing Others": 1832.12 } }, "opposing_money": { - "opposing_expenditures": 160145.67, + "opposing_expenditures": 0.0, "opposing_by_type": { - "IKD": 14908.0, - "MON": 193000.0, - "Independent Expenditure Supporting/Opposing Others": 320291.34 }, "opposition_list": [ - { - "Total": 31230.49, - "Cand_ID": 1236617, - "Filer_ID": "1413388", - "Filer_NamL": "Citizens for a United Oakland, Opposing Desley Brooks for City Council" - }, - { - "Total": 128915.18, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" - } + ] }, "total_contributions": 38429.0, - "test_totals": 38429.0, - "list_total": 144433.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0 + "total_expenditures": 62449.07, + "total_loans_received": -2500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json index f9c705b..a510214 100644 --- a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json +++ b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/james-moore.json b/build/_data/candidates/oakland/2014-11-04/james-moore.json index fcfb340..b3926d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/james-moore.json +++ b/build/_data/candidates/oakland/2014-11-04/james-moore.json @@ -41,11 +41,11 @@ }, "total_small_contributions": 1366.0, "expenditures_by_type": { - "Office Expenses": 800.0, - "Fundraising Events": 250.0, - "Campaign Paraphernalia/Misc.": 746.33, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 5799.0 + "CMP": 746.33, + "FIL": 250.0, + "FND": 250.0, + "LIT": 5799.0, + "OFC": 800.0 }, "supporting_by_type": { } @@ -59,8 +59,6 @@ ] }, "total_contributions": 10758.0, - "test_totals": 10758.0, - "list_total": 9699.0, "total_expenditures": 10731.33, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json index 5ccf5ae..d7db0ee 100644 --- a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json +++ b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/jean-quan.json b/build/_data/candidates/oakland/2014-11-04/jean-quan.json index 498e836..9f9d78f 100644 --- a/build/_data/candidates/oakland/2014-11-04/jean-quan.json +++ b/build/_data/candidates/oakland/2014-11-04/jean-quan.json @@ -42,36 +42,33 @@ }, "total_small_contributions": 16686.8, "expenditures_by_type": { - "Not Stated": 22401.95, - "Office Expenses": 1500.0, - "Fundraising Events": 5738.75, - "Campaign Consultants": 56229.72, - "Polling and Survey Research": 23286.0, - "Campaign Paraphernalia/Misc.": 9373.41, - "Campaign Literature and Mailings": 237328.31, - "Information Technology Costs (Internet, E-mail)": 3400.0 + "": 22401.95, + "CMP": 9373.41, + "CNS": 56229.72, + "FND": 5738.75, + "LIT": 237328.31, + "OFC": 1500.0, + "POL": 23286.0, + "WEB": 3400.0 }, "supporting_by_type": { - "MON": 1400.0 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 8450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1354678, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, "total_contributions": 242342.31, - "test_totals": 242342.31, - "list_total": 259647.87, "total_expenditures": 362597.46, "total_loans_received": -30000.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json index 5692466..4e48c36 100644 --- a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json +++ b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json @@ -42,20 +42,19 @@ }, "total_small_contributions": 2041.0, "expenditures_by_type": { - "Print Ads": 5670.0, - "Not Stated": 2312.19, - "Civic Donations": 500.0, - "Campaign Consultants": 16225.78, - "Campaign Paraphernalia/Misc.": 29757.02, - "Candidate Filing/Ballot Fees": 650.0, - "Campaign Literature and Mailings": 64678.24, - "Candidate Travel, Lodging, and Meals": 374.19, - "Postage, Delivery and Messenger Services": 364.28, - "Professional Services (Legal, Accounting)": 1500.0, - "Information Technology Costs (Internet, E-mail)": 1302.07 + "": 2312.19, + "CMP": 29757.02, + "CNS": 16225.78, + "CVC": 500.0, + "FIL": 650.0, + "LIT": 64678.24, + "POS": 364.28, + "PRO": 1500.0, + "PRT": 5670.0, + "TRC": 374.19, + "WEB": 1302.07 }, "supporting_by_type": { - "MON": 2800.0 } }, "opposing_money": { @@ -67,8 +66,6 @@ ] }, "total_contributions": 96641.0, - "test_totals": 96641.0, - "list_total": 76200.0, "total_expenditures": 121746.72, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json index 5fa0368..6b76fe6 100644 --- a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json +++ b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json @@ -31,7 +31,8 @@ "Total": 8450.0, "Cand_ID": 1359017, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,25 +48,23 @@ }, "total_small_contributions": 10042.0, "expenditures_by_type": { - "Print Ads": 420.0, - "Not Stated": 1143.76, - "Phone Banks": 1086.75, - "Civic Donations": 726.75, - "Office Expenses": 18758.01, - "Fundraising Events": 589.63, - "Campaign Consultants": 84120.0, - "Meetings and Appearances": 105.0, - "Campaign Paraphernalia/Misc.": 6305.45, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 59144.47, - "Postage, Delivery and Messenger Services": 34371.2, - "Professional Services (Legal, Accounting)": 3382.76, - "T.V. or Cable Airtime and Production Costs": 28884.7, - "Information Technology Costs (Internet, E-mail)": 5850.13 + "": 1143.76, + "CMP": 6305.45, + "CNS": 84120.0, + "CVC": 726.75, + "FIL": 500.0, + "FND": 589.63, + "LIT": 59144.47, + "MTG": 105.0, + "OFC": 18758.01, + "PHO": 1086.75, + "POS": 34371.2, + "PRO": 3382.76, + "PRT": 420.0, + "TEL": 28884.7, + "WEB": 5850.13 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 8450.0 } }, "opposing_money": { @@ -77,8 +76,6 @@ ] }, "total_contributions": 115502.98, - "test_totals": 115502.98, - "list_total": 111227.0, "total_expenditures": 250571.9, "total_loans_received": -4211.02 } diff --git a/build/_data/candidates/oakland/2014-11-04/karl-debro.json b/build/_data/candidates/oakland/2014-11-04/karl-debro.json index bff4ffe..8447b4c 100644 --- a/build/_data/candidates/oakland/2014-11-04/karl-debro.json +++ b/build/_data/candidates/oakland/2014-11-04/karl-debro.json @@ -42,11 +42,11 @@ }, "total_small_contributions": 974.0, "expenditures_by_type": { - "Not Stated": 80.0, - "Campaign Consultants": 2685.0, - "Campaign Paraphernalia/Misc.": 488.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12063.65 + "": 80.0, + "CMP": 488.54, + "CNS": 2685.0, + "FIL": 300.0, + "LIT": 12063.65 }, "supporting_by_type": { } @@ -60,8 +60,6 @@ ] }, "total_contributions": 1165.8, - "test_totals": 1165.8, - "list_total": 11225.0, "total_expenditures": 15711.07, "total_loans_received": -11008.2 } diff --git a/build/_data/candidates/oakland/2014-11-04/ken-houston.json b/build/_data/candidates/oakland/2014-11-04/ken-houston.json index 0435590..d61c865 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-houston.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-houston.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json index e6ce8c2..bd49605 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json index fcb983e..2b6ab32 100644 --- a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json +++ b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json @@ -43,19 +43,19 @@ }, "total_small_contributions": 5597.0, "expenditures_by_type": { - "Not Stated": 19750.55, - "Office Expenses": 920.95, - "Fundraising Events": 1952.4, - "Campaign Consultants": 22085.96, - "Petition Circulating": 795.47, - "Meetings and Appearances": 1205.64, - "Campaign Workers' Salaries": 3600.0, - "Campaign Paraphernalia/Misc.": 23736.21, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 114.18, - "Candidate Travel, Lodging, and Meals": 1000.0, - "Postage, Delivery and Messenger Services": 98.0, - "Professional Services (Legal, Accounting)": 2588.19 + "": 19750.55, + "CMP": 23736.21, + "CNS": 22085.96, + "FIL": 300.0, + "FND": 1952.4, + "LIT": 114.18, + "MTG": 1205.64, + "OFC": 920.95, + "PET": 795.47, + "POS": 98.0, + "PRO": 2588.19, + "SAL": 3600.0, + "TRC": 1000.0 }, "supporting_by_type": { } @@ -69,8 +69,6 @@ ] }, "total_contributions": 62212.0, - "test_totals": 62212.0, - "list_total": 55760.0, "total_expenditures": 80430.44, "total_loans_received": 1600.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/len-raphael.json b/build/_data/candidates/oakland/2014-11-04/len-raphael.json index 11ee079..08fcbfe 100644 --- a/build/_data/candidates/oakland/2014-11-04/len-raphael.json +++ b/build/_data/candidates/oakland/2014-11-04/len-raphael.json @@ -41,14 +41,14 @@ }, "total_small_contributions": 345.58, "expenditures_by_type": { - "Office Expenses": 1106.52, - "Meetings and Appearances": 100.0, - "Campaign Paraphernalia/Misc.": 2036.53, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 32854.91, - "Candidate Travel, Lodging, and Meals": 478.21, - "Staff/Spouse Travel, Lodging, and Meals": 400.56, - "Information Technology Costs (Internet, E-mail)": 3177.99 + "CMP": 2036.53, + "FIL": 300.0, + "LIT": 32854.91, + "MTG": 100.0, + "OFC": 1106.52, + "TRC": 478.21, + "TRS": 400.56, + "WEB": 3177.99 }, "supporting_by_type": { } @@ -62,8 +62,6 @@ ] }, "total_contributions": 37784.69, - "test_totals": 37784.69, - "list_total": 37623.69, "total_expenditures": 40597.97, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json index f6e3fe2..7301498 100644 --- a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json +++ b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1362261, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1362261, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -53,29 +55,26 @@ }, "total_small_contributions": 15141.66, "expenditures_by_type": { - "Print Ads": 4900.0, - "Not Stated": 26687.73, - "Phone Banks": 5361.23, - "Contribution": 9400.0, - "Civic Donations": 14389.46, - "Office Expenses": 47081.01, - "Fundraising Events": 12043.26, - "Campaign Consultants": 193021.15, - "Returned Contributions": 2295.0, - "Meetings and Appearances": 53167.82, - "Polling and Survey Research": 9000.0, - "Campaign Paraphernalia/Misc.": 5387.66, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 43791.4, - "Postage, Delivery and Messenger Services": 46317.46, - "Professional Services (Legal, Accounting)": 33164.83, - "T.V. or Cable Airtime and Production Costs": 63432.0, - "Information Technology Costs (Internet, E-mail)": 11499.42 + "": 26687.73, + "CMP": 5387.66, + "CNS": 193021.15, + "CTB": 9400.0, + "CVC": 14389.46, + "FIL": 300.0, + "FND": 12043.26, + "LIT": 43791.4, + "MTG": 53167.82, + "OFC": 47081.01, + "PHO": 5361.23, + "POL": 9000.0, + "POS": 46317.46, + "PRO": 33164.83, + "PRT": 4900.0, + "RFD": 2295.0, + "TEL": 63432.0, + "WEB": 11499.42 }, "supporting_by_type": { - "MON": 5700.0, - "BILLBOARDS 10/18 - 11/6": 7672.0, - "Independent Expenditure Supporting/Opposing Others": 9824.45 } }, "opposing_money": { @@ -87,8 +86,6 @@ ] }, "total_contributions": 462809.82, - "test_totals": 462809.82, - "list_total": 452345.71, "total_expenditures": 583374.15, "total_loans_received": -1050.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json index 35cd001..3cc3576 100644 --- a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json +++ b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json @@ -42,14 +42,14 @@ }, "total_small_contributions": 6539.0, "expenditures_by_type": { - "Not Stated": 18947.11, - "Office Expenses": 991.96, - "Meetings and Appearances": 1291.03, - "Campaign Paraphernalia/Misc.": 422.25, - "Candidate Filing/Ballot Fees": 119.0, - "Campaign Literature and Mailings": 10293.5, - "Candidate Travel, Lodging, and Meals": 228.87, - "Information Technology Costs (Internet, E-mail)": 1300.0 + "": 18947.11, + "CMP": 422.25, + "FIL": 119.0, + "LIT": 10293.5, + "MTG": 1291.03, + "OFC": 991.96, + "TRC": 228.87, + "WEB": 1300.0 }, "supporting_by_type": { } @@ -63,8 +63,6 @@ ] }, "total_contributions": 34487.87, - "test_totals": 34487.87, - "list_total": 29981.87, "total_expenditures": 35886.83, "total_loans_received": -205.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json index 6b6e024..0a08384 100644 --- a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json +++ b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json b/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json index 633b4ce..edd2026 100644 --- a/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json +++ b/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json @@ -54,8 +54,6 @@ ] }, "total_contributions": 147.23, - "test_totals": 147.23, - "list_total": 147.23, "total_expenditures": 147.23, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/nina-senn.json b/build/_data/candidates/oakland/2014-11-04/nina-senn.json index e4a04af..e28bbe0 100644 --- a/build/_data/candidates/oakland/2014-11-04/nina-senn.json +++ b/build/_data/candidates/oakland/2014-11-04/nina-senn.json @@ -31,7 +31,8 @@ "Total": 34118.55, "Cand_ID": 1368416, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -48,21 +49,19 @@ }, "total_small_contributions": 1483.82, "expenditures_by_type": { - "Not Stated": 2705.87, - "Contribution": 118.48, - "Fundraising Events": 320.0, - "Campaign Consultants": 8000.0, - "Polling and Survey Research": 1592.8, - "Campaign Paraphernalia/Misc.": 1751.75, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 6344.47, - "Postage, Delivery and Messenger Services": 1538.95, - "T.V. or Cable Airtime and Production Costs": 830.0, - "Information Technology Costs (Internet, E-mail)": 57.0 + "": 2705.87, + "CMP": 1751.75, + "CNS": 8000.0, + "CTB": 118.48, + "FIL": 300.0, + "FND": 320.0, + "LIT": 6344.47, + "POL": 1592.8, + "POS": 1538.95, + "TEL": 830.0, + "WEB": 57.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34118.55 } }, "opposing_money": { @@ -74,8 +73,6 @@ ] }, "total_contributions": 24233.82, - "test_totals": 24233.82, - "list_total": 23076.7, "total_expenditures": 24231.57, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json index ccb47c6..1289df4 100644 --- a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json +++ b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/paul-lim.json b/build/_data/candidates/oakland/2014-11-04/paul-lim.json index 43abd17..86d91d9 100644 --- a/build/_data/candidates/oakland/2014-11-04/paul-lim.json +++ b/build/_data/candidates/oakland/2014-11-04/paul-lim.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/peter-liu.json b/build/_data/candidates/oakland/2014-11-04/peter-liu.json index 1c68d0f..abdec16 100644 --- a/build/_data/candidates/oakland/2014-11-04/peter-liu.json +++ b/build/_data/candidates/oakland/2014-11-04/peter-liu.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json index 77e5366..dcf7d34 100644 --- a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json @@ -31,13 +31,15 @@ "Total": 10000.0, "Cand_ID": 1367270, "Filer_ID": "COAK-1538", - "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014" + "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1367270, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,51 +56,43 @@ }, "total_small_contributions": 18274.0, "expenditures_by_type": { - "Print Ads": 763.04, - "Phone Banks": 13919.92, - "Legal Defense": 4430.25, - "Office Expenses": 23828.46, - "Fundraising Events": 3648.97, - "Campaign Consultants": 122092.03, - "Returned Contributions": 4995.0, - "Meetings and Appearances": 2606.94, - "Campaign Paraphernalia/Misc.": 11065.73, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 93872.21, - "Radio Airtime and Production Costs": 4085.0, - "Candidate Travel, Lodging, and Meals": 115.19, - "Staff/Spouse Travel, Lodging, and Meals": 224.42, - "Postage, Delivery and Messenger Services": 2704.45, - "Professional Services (Legal, Accounting)": 1200.0, - "T.V. or Cable Airtime and Production Costs": 39327.6, - "Information Technology Costs (Internet, E-mail)": 19393.37 + "CMP": 11065.73, + "CNS": 122092.03, + "FIL": 300.0, + "FND": 3648.97, + "LEG": 4430.25, + "LIT": 93872.21, + "MTG": 2606.94, + "OFC": 23828.46, + "PHO": 13919.92, + "POS": 2704.45, + "PRO": 1200.0, + "PRT": 763.04, + "RAD": 4085.0, + "RFD": 4995.0, + "TEL": 39327.6, + "TRC": 115.19, + "TRS": 224.42, + "WEB": 19393.37 }, "supporting_by_type": { - "IKD": 3676.7, - "MON": 20493.0, - "Independent Expenditure Supporting/Opposing Others": 245153.1 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "MON": 1500.0, - "Cable ads": 150000.0, - "Estimated cost of media production": 24766.0, - "Independent Expenditure Supporting/Opposing Others": 43450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1367270, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, "total_contributions": 347445.36, - "test_totals": 347445.36, - "list_total": 332258.36, "total_expenditures": 349939.31, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json index 6f48cd4..4ecf4e4 100644 --- a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json +++ b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json @@ -31,7 +31,8 @@ "Total": 63894.42, "Cand_ID": 1365454, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -46,18 +47,16 @@ }, "total_small_contributions": 2943.0, "expenditures_by_type": { - "Campaign Consultants": 4750.0, - "Meetings and Appearances": 55.86, - "Polling and Survey Research": 449.0, - "Campaign Paraphernalia/Misc.": 1217.88, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3383.36, - "Professional Services (Legal, Accounting)": 160.0, - "Information Technology Costs (Internet, E-mail)": 29.0 + "CMP": 1217.88, + "CNS": 4750.0, + "FIL": 300.0, + "LIT": 3383.36, + "MTG": 55.86, + "POL": 449.0, + "PRO": 160.0, + "WEB": 29.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 63894.42 } }, "opposing_money": { @@ -69,8 +68,6 @@ ] }, "total_contributions": 12093.0, - "test_totals": 12093.0, - "list_total": 9200.0, "total_expenditures": 10590.54, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json index a40d81f..1a043d5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json +++ b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json @@ -38,9 +38,9 @@ }, "total_small_contributions": 0.0, "expenditures_by_type": { - "Print Ads": 1500.0, - "Candidate Filing/Ballot Fees": 300.0, - "Information Technology Costs (Internet, E-mail)": 507.0 + "FIL": 300.0, + "PRT": 1500.0, + "WEB": 507.0 }, "supporting_by_type": { } @@ -54,8 +54,6 @@ ] }, "total_contributions": 2609.9, - "test_totals": 2609.9, - "list_total": 2609.9, "total_expenditures": 2609.9, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json index e8a615c..13a23b5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json +++ b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json @@ -31,7 +31,8 @@ "Total": 34066.01, "Cand_ID": 1365733, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,17 +48,15 @@ }, "total_small_contributions": 2324.0, "expenditures_by_type": { - "Phone Banks": 75.0, - "Office Expenses": 802.93, - "Fundraising Events": 508.0, - "Campaign Consultants": 8940.11, - "Meetings and Appearances": 58.0, - "Campaign Literature and Mailings": 6349.45, - "Information Technology Costs (Internet, E-mail)": 656.0 + "CNS": 8940.11, + "FND": 508.0, + "LIT": 6349.45, + "MTG": 58.0, + "OFC": 802.93, + "PHO": 75.0, + "WEB": 656.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34066.01 } }, "opposing_money": { @@ -69,8 +68,6 @@ ] }, "total_contributions": 17639.0, - "test_totals": 17639.0, - "list_total": 15545.0, "total_expenditures": 18628.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json index 08e8411..ba6b8bd 100644 --- a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json @@ -43,20 +43,19 @@ }, "total_small_contributions": 8602.01, "expenditures_by_type": { - "Not Stated": 16872.35, - "Contribution": 1400.0, - "Office Expenses": 589.25, - "Fundraising Events": 1618.95, - "Polling and Survey Research": 3137.48, - "Campaign Paraphernalia/Misc.": 14274.08, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 21352.34, - "Staff/Spouse Travel, Lodging, and Meals": 248.06, - "Postage, Delivery and Messenger Services": 4662.11, - "Professional Services (Legal, Accounting)": 6361.08 + "": 16872.35, + "CMP": 14274.08, + "CTB": 1400.0, + "FIL": 300.0, + "FND": 1618.95, + "LIT": 21352.34, + "OFC": 589.25, + "POL": 3137.48, + "POS": 4662.11, + "PRO": 6361.08, + "TRS": 248.06 }, "supporting_by_type": { - "MON": 250.0 } }, "opposing_money": { @@ -68,8 +67,6 @@ ] }, "total_contributions": 73585.61, - "test_totals": 73585.61, - "list_total": 67218.6, "total_expenditures": 72428.29, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json index 32393fc..4865c99 100644 --- a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json +++ b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json @@ -41,16 +41,16 @@ }, "total_small_contributions": 7175.0, "expenditures_by_type": { - "Print Ads": 6958.74, - "Office Expenses": 255.8, - "Fundraising Events": 100.0, - "Voter Registration": 250.0, - "Campaign Consultants": 32018.84, - "Campaign Workers' Salaries": 2768.0, - "Campaign Paraphernalia/Misc.": 20724.62, - "Campaign Literature and Mailings": 531.7, - "Professional Services (Legal, Accounting)": 500.0, - "Information Technology Costs (Internet, E-mail)": 500.0 + "CMP": 20724.62, + "CNS": 32018.84, + "FND": 100.0, + "LIT": 531.7, + "OFC": 255.8, + "PRO": 500.0, + "PRT": 6958.74, + "SAL": 2768.0, + "VOT": 250.0, + "WEB": 500.0 }, "supporting_by_type": { } @@ -64,8 +64,6 @@ ] }, "total_contributions": 32601.29, - "test_totals": 32601.29, - "list_total": 21465.0, "total_expenditures": 68116.44, "total_loans_received": 611.29 } diff --git a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json index f4e1317..520a2a4 100644 --- a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json index a078afc..4cb1310 100644 --- a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json +++ b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json index 2882ab1..bb78f71 100644 --- a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json +++ b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json index e6e2dc0..c537ffb 100644 --- a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json +++ b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json @@ -41,17 +41,16 @@ }, "total_small_contributions": 393.0, "expenditures_by_type": { - "Not Stated": 500.0, - "Contribution": 26626.59, - "Fundraising Events": 3450.0, - "Campaign Consultants": 32098.97, - "Campaign Paraphernalia/Misc.": 820.44, - "Candidate Filing/Ballot Fees": 1727.0, - "Campaign Literature and Mailings": 1559.56, - "Independent Expenditure Supporting/Opposing Others": 1250.0 + "": 500.0, + "CMP": 820.44, + "CNS": 32098.97, + "CTB": 26626.59, + "FIL": 1727.0, + "FND": 3450.0, + "IND": 1250.0, + "LIT": 1559.56 }, "supporting_by_type": { - "MON": 700.0 } }, "opposing_money": { @@ -63,8 +62,6 @@ ] }, "total_contributions": 67909.0, - "test_totals": 67909.0, - "list_total": 67516.0, "total_expenditures": 68110.09, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json index acc5038..6b44f8d 100644 --- a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json +++ b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json index 4c52159..d248212 100644 --- a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json +++ b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json @@ -43,13 +43,13 @@ }, "total_small_contributions": 1707.0, "expenditures_by_type": { - "Office Expenses": 7808.74, - "Campaign Consultants": 52134.75, - "Meetings and Appearances": 835.15, - "Campaign Paraphernalia/Misc.": 6133.94, - "Campaign Literature and Mailings": 1056.73, - "Professional Services (Legal, Accounting)": 5575.0, - "Information Technology Costs (Internet, E-mail)": 1997.97 + "CMP": 6133.94, + "CNS": 52134.75, + "LIT": 1056.73, + "MTG": 835.15, + "OFC": 7808.74, + "PRO": 5575.0, + "WEB": 1997.97 }, "supporting_by_type": { } @@ -63,8 +63,6 @@ ] }, "total_contributions": 75623.14, - "test_totals": 75623.14, - "list_total": 73917.14, "total_expenditures": 75910.59, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json index f245c0d..59de439 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -41,35 +41,31 @@ }, "total_small_contributions": 2987.0, "expenditures_by_type": { - "Not Stated": 2033.0, - "Office Expenses": 1900.34, - "Campaign Consultants": 5150.0, - "Campaign Paraphernalia/Misc.": 1167.25, - "Campaign Literature and Mailings": 1054.74, - "Professional Services (Legal, Accounting)": 3057.23 + "": 2033.0, + "CMP": 1167.25, + "CNS": 5150.0, + "LIT": 1054.74, + "OFC": 1900.34, + "PRO": 3057.23 }, "supporting_by_type": { - "IKD": 5924.0, - "MON": 1500.0 } }, "opposing_money": { "opposing_expenditures": 6987.5, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 6987.5 }, "opposition_list": [ { ```
mikeubell commented 9 months ago
Build diff from Commit 55192e046e23341dcf3bbeda744c1f2671918173: ```diff diff --git a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json index 4cd099a..7a0a6f3 100644 --- a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json +++ b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json @@ -42,18 +42,18 @@ }, "total_small_contributions": 15898.0, "expenditures_by_type": { - "Print Ads": 250.0, - "Not Stated": 43849.56, - "Contribution": 4031.0, - "Civic Donations": 3600.0, - "Office Expenses": 19388.42, - "Fundraising Events": 3950.0, - "Campaign Consultants": 48600.0, - "Campaign Paraphernalia/Misc.": 2934.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 28569.2, - "Postage, Delivery and Messenger Services": 14435.8, - "Professional Services (Legal, Accounting)": 25847.23 + "": 43849.56, + "CMP": 2934.54, + "CNS": 48600.0, + "CTB": 4031.0, + "CVC": 3600.0, + "FIL": 300.0, + "FND": 3950.0, + "LIT": 28569.2, + "OFC": 19388.42, + "POS": 14435.8, + "PRO": 25847.23, + "PRT": 250.0 }, "supporting_by_type": { } @@ -67,8 +67,6 @@ ] }, "total_contributions": 177069.06, - "test_totals": 177069.06, - "list_total": 165131.06, "total_expenditures": 196917.99, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json index d00ac30..65711b6 100644 --- a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json +++ b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json @@ -23,15 +23,16 @@ "supporting_money": { "contributions_received": 33744.95, "total_contributions": 33744.95, - "total_expenditures": 31569.65, - "total_loans_received": 0.0, + "total_expenditures": 29369.65, + "total_loans_received": 3500.0, "total_supporting_independent": 50.63, "support_list": [ { "Total": 50.63, "Cand_ID": 1368984, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,24 +48,22 @@ }, "total_small_contributions": 2020.0, "expenditures_by_type": { - "Print Ads": 1617.66, - "Not Stated": 876.49, - "Phone Banks": 356.52, - "Contribution": 2175.0, - "Office Expenses": 100.0, - "Fundraising Events": 158.49, - "Campaign Consultants": 5000.0, - "Campaign Workers' Salaries": 4197.84, - "Polling and Survey Research": 926.42, - "Campaign Paraphernalia/Misc.": 1736.64, - "Candidate Filing/Ballot Fees": 1640.0, - "Campaign Literature and Mailings": 5928.4, - "Postage, Delivery and Messenger Services": 5674.56, - "Professional Services (Legal, Accounting)": 150.0 + "": 876.49, + "CMP": 1736.64, + "CNS": 5000.0, + "CTB": 1175.0, + "FIL": 640.0, + "FND": 158.49, + "LIT": 5928.4, + "OFC": 100.0, + "PHO": 356.52, + "POL": 926.42, + "POS": 5674.56, + "PRO": 150.0, + "PRT": 1617.66, + "SAL": 4197.84 }, "supporting_by_type": { - "MON": 1000.0, - "Independent Expenditure Supporting/Opposing Others": 101.26 } }, "opposing_money": { @@ -76,8 +75,6 @@ ] }, "total_contributions": 33744.95, - "test_totals": 33744.95, - "list_total": 28786.68, - "total_expenditures": 31569.65, - "total_loans_received": 0.0 + "total_expenditures": 29369.65, + "total_loans_received": 3500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/andrew-park.json b/build/_data/candidates/oakland/2014-11-04/andrew-park.json index a50faaf..41ced30 100644 --- a/build/_data/candidates/oakland/2014-11-04/andrew-park.json +++ b/build/_data/candidates/oakland/2014-11-04/andrew-park.json @@ -43,18 +43,18 @@ }, "total_small_contributions": 9413.86, "expenditures_by_type": { - "Not Stated": 3746.73, - "Phone Banks": 4981.94, - "Civic Donations": 100.0, - "Office Expenses": 9271.69, - "Fundraising Events": 2226.94, - "Campaign Consultants": 15700.0, - "Meetings and Appearances": 247.82, - "Campaign Workers' Salaries": 1600.0, - "Polling and Survey Research": 2885.0, - "Campaign Paraphernalia/Misc.": 8241.76, - "Campaign Literature and Mailings": 32920.9, - "Information Technology Costs (Internet, E-mail)": 2646.38 + "": 3746.73, + "CMP": 8241.76, + "CNS": 15700.0, + "CVC": 100.0, + "FND": 2226.94, + "LIT": 32920.9, + "MTG": 247.82, + "OFC": 9271.69, + "PHO": 4981.94, + "POL": 2885.0, + "SAL": 1600.0, + "WEB": 2646.38 }, "supporting_by_type": { } @@ -68,8 +68,6 @@ ] }, "total_contributions": 67825.58, - "test_totals": 67825.58, - "list_total": 59004.72, "total_expenditures": 87126.7, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json index 3a788b3..ae66d75 100644 --- a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json @@ -31,7 +31,8 @@ "Total": 89243.48, "Cand_ID": 1365610, "Filer_ID": "1294190", - "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO" + "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,27 +48,25 @@ }, "total_small_contributions": 6664.0, "expenditures_by_type": { - "Print Ads": 100.0, - "Not Stated": 5900.0, - "Phone Banks": 478.16, - "Contribution": 500.0, - "Civic Donations": 4300.0, - "Office Expenses": 8204.11, - "Fundraising Events": 2930.15, - "Campaign Consultants": 20000.0, - "Meetings and Appearances": 220.0, - "Campaign Workers' Salaries": 9750.0, - "Campaign Paraphernalia/Misc.": 5194.28, - "Candidate Filing/Ballot Fees": 600.0, - "Campaign Literature and Mailings": 62478.8, - "Staff/Spouse Travel, Lodging, and Meals": 928.62, - "Postage, Delivery and Messenger Services": 147.0, - "Professional Services (Legal, Accounting)": 6049.1, - "Information Technology Costs (Internet, E-mail)": 5853.67 + "": 5900.0, + "CMP": 5194.28, + "CNS": 20000.0, + "CTB": 500.0, + "CVC": 4300.0, + "FIL": 600.0, + "FND": 2930.15, + "LIT": 62478.8, + "MTG": 220.0, + "OFC": 8204.11, + "PHO": 478.16, + "POS": 147.0, + "PRO": 6049.1, + "PRT": 100.0, + "SAL": 9750.0, + "TRS": 928.62, + "WEB": 5853.67 }, "supporting_by_type": { - "MON": 700.0, - "Independent Expenditure Supporting/Opposing Others": 89243.48 } }, "opposing_money": { @@ -79,8 +78,6 @@ ] }, "total_contributions": 124860.15, - "test_totals": 124860.15, - "list_total": 118802.15, "total_expenditures": 137467.74, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json index 6f05f44..238d1d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -42,19 +42,18 @@ }, "total_small_contributions": 275.0, "expenditures_by_type": { - "Print Ads": 9483.0, - "Phone Banks": 1625.47, - "Office Expenses": 589.98, - "Campaign Consultants": 11447.9, - "Meetings and Appearances": 150.0, - "Campaign Paraphernalia/Misc.": 2520.62, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 37284.94, - "Professional Services (Legal, Accounting)": 1880.0, - "Information Technology Costs (Internet, E-mail)": 3500.0 + "CMP": 2520.62, + "CNS": 11447.9, + "FIL": 500.0, + "LIT": 37284.94, + "MTG": 150.0, + "OFC": 589.98, + "PHO": 1625.47, + "PRO": 1880.0, + "PRT": 9483.0, + "WEB": 3500.0 }, "supporting_by_type": { - "MON": 3800.0 } }, "opposing_money": { @@ -66,8 +65,6 @@ ] }, "total_contributions": 69175.0, - "test_totals": 69175.0, - "list_total": 68900.0, "total_expenditures": 69170.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json index 22a3fac..b0695d3 100644 --- a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json +++ b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1357609, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 10446.26, "Cand_ID": 1357609, "Filer_ID": "983545", - "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce" + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,28 +56,26 @@ }, "total_small_contributions": 7354.23, "expenditures_by_type": { - "Print Ads": 1500.0, - "Not Stated": 73215.79, - "Phone Banks": 8729.67, - "Civic Donations": 800.0, - "Office Expenses": 24408.3, - "Fundraising Events": 12249.2, - "Campaign Consultants": 30000.0, - "Meetings and Appearances": 6512.87, - "Polling and Survey Research": 20000.0, - "Campaign Paraphernalia/Misc.": 62144.3, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 78185.99, - "Candidate Travel, Lodging, and Meals": 7.99, - "Staff/Spouse Travel, Lodging, and Meals": 2620.56, - "Postage, Delivery and Messenger Services": 12617.84, - "Professional Services (Legal, Accounting)": 21832.53, - "T.V. or Cable Airtime and Production Costs": 11520.9, - "Information Technology Costs (Internet, E-mail)": 15968.27 + "": 73215.79, + "CMP": 62144.3, + "CNS": 30000.0, + "CVC": 800.0, + "FIL": 300.0, + "FND": 12249.2, + "LIT": 78185.99, + "MTG": 6512.87, + "OFC": 24408.3, + "PHO": 8729.67, + "POL": 20000.0, + "POS": 12617.84, + "PRO": 21832.53, + "PRT": 1500.0, + "TEL": 11520.9, + "TRC": 7.99, + "TRS": 2620.56, + "WEB": 15968.27 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 18896.26 } }, "opposing_money": { @@ -87,8 +87,6 @@ ] }, "total_contributions": 237608.59, - "test_totals": 237608.59, - "list_total": 230524.09, "total_expenditures": 376955.55, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/charles-williams.json b/build/_data/candidates/oakland/2014-11-04/charles-williams.json index 5155994..b94cacf 100644 --- a/build/_data/candidates/oakland/2014-11-04/charles-williams.json +++ b/build/_data/candidates/oakland/2014-11-04/charles-williams.json @@ -42,15 +42,15 @@ }, "total_small_contributions": 35.0, "expenditures_by_type": { - "Print Ads": 960.0, - "Not Stated": 1050.0, - "Meetings and Appearances": 2651.0, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3946.0, - "Radio Airtime and Production Costs": 1860.0, - "Staff/Spouse Travel, Lodging, and Meals": 500.0, - "Postage, Delivery and Messenger Services": 1200.0, - "T.V. or Cable Airtime and Production Costs": 3750.0 + "": 1050.0, + "FIL": 300.0, + "LIT": 3946.0, + "MTG": 2651.0, + "POS": 1200.0, + "PRT": 960.0, + "RAD": 1860.0, + "TEL": 3750.0, + "TRS": 500.0 }, "supporting_by_type": { } @@ -64,8 +64,6 @@ ] }, "total_contributions": 11835.0, - "test_totals": 11835.0, - "list_total": 11800.0, "total_expenditures": 16302.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json index b83e614..f178710 100644 --- a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json +++ b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json @@ -42,16 +42,16 @@ }, "total_small_contributions": 2998.9, "expenditures_by_type": { - "Not Stated": 1365.45, - "Phone Banks": 1238.56, - "Office Expenses": 190.0, - "Fundraising Events": 914.07, - "Campaign Paraphernalia/Misc.": 3543.88, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 9703.58, - "Postage, Delivery and Messenger Services": 182.5, - "Professional Services (Legal, Accounting)": 1116.07, - "Information Technology Costs (Internet, E-mail)": 145.0 + "": 1365.45, + "CMP": 3543.88, + "FIL": 250.0, + "FND": 914.07, + "LIT": 9703.58, + "OFC": 190.0, + "PHO": 1238.56, + "POS": 182.5, + "PRO": 1116.07, + "WEB": 145.0 }, "supporting_by_type": { } @@ -65,8 +65,6 @@ ] }, "total_contributions": 18747.83, - "test_totals": 18747.83, - "list_total": 15873.93, "total_expenditures": 19226.62, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json b/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json index 6d37fb6..fb3d912 100644 --- a/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json +++ b/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json @@ -51,8 +51,6 @@ ] }, "total_contributions": 5000.0, - "test_totals": 5000.0, - "list_total": 5000.0, "total_expenditures": 0.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json index b3d8137..94f90a3 100644 --- a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json +++ b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json @@ -43,22 +43,21 @@ }, "total_small_contributions": 12393.89, "expenditures_by_type": { - "Print Ads": 1452.5, - "Office Expenses": 14228.94, - "Campaign Consultants": 24000.0, - "Meetings and Appearances": 1231.63, - "Campaign Workers' Salaries": 53774.57, - "Polling and Survey Research": 28000.0, - "Campaign Paraphernalia/Misc.": 2364.69, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12067.08, - "Staff/Spouse Travel, Lodging, and Meals": 2236.23, - "Postage, Delivery and Messenger Services": 2986.53, - "Professional Services (Legal, Accounting)": 9488.12, - "Information Technology Costs (Internet, E-mail)": 11086.68 + "CMP": 2364.69, + "CNS": 24000.0, + "FIL": 300.0, + "LIT": 12067.08, + "MTG": 1231.63, + "OFC": 14228.94, + "POL": 28000.0, + "POS": 2986.53, + "PRO": 9488.12, + "PRT": 1452.5, + "SAL": 53774.57, + "TRS": 2236.23, + "WEB": 11086.68 }, "supporting_by_type": { - "MON": 2200.0 } }, "opposing_money": { @@ -70,8 +69,6 @@ ] }, "total_contributions": 164638.37, - "test_totals": 164638.37, - "list_total": 155197.37, "total_expenditures": 165436.59, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json index 37d7f43..7334c54 100644 --- a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json +++ b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json @@ -42,22 +42,22 @@ }, "total_small_contributions": 7607.23, "expenditures_by_type": { - "Print Ads": 6205.0, - "Not Stated": 2090.45, - "Phone Banks": 1247.0, - "Office Expenses": 8348.23, - "Fundraising Events": 7746.0, - "Campaign Consultants": 154399.76, - "Meetings and Appearances": 394.0, - "Campaign Workers' Salaries": 60300.0, - "Polling and Survey Research": 11187.47, - "Campaign Paraphernalia/Misc.": 15144.71, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 934.73, - "Staff/Spouse Travel, Lodging, and Meals": 2659.35, - "Postage, Delivery and Messenger Services": 5964.21, - "Information Technology Costs (Internet, E-mail)": 1699.05, - "Transfer Between Committees of the Same Candidate/sponsor": 2.99 + "": 2090.45, + "CMP": 15144.71, + "CNS": 154399.76, + "FIL": 300.0, + "FND": 7746.0, + "LIT": 934.73, + "MTG": 394.0, + "OFC": 8348.23, + "PHO": 1247.0, + "POL": 11187.47, + "POS": 5964.21, + "PRT": 6205.0, + "SAL": 60300.0, + "TRS": 2659.35, + "TSF": 2.99, + "WEB": 1699.05 }, "supporting_by_type": { } @@ -71,8 +71,6 @@ ] }, "total_contributions": 280968.87, - "test_totals": 280968.87, - "list_total": 84279.63, "total_expenditures": 330419.52, "total_loans_received": 190000.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/dana-king.json b/build/_data/candidates/oakland/2014-11-04/dana-king.json index fc6ecda..c2c3d68 100644 --- a/build/_data/candidates/oakland/2014-11-04/dana-king.json +++ b/build/_data/candidates/oakland/2014-11-04/dana-king.json @@ -31,7 +31,8 @@ "Total": 429.45, "Cand_ID": 1364029, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,21 +48,19 @@ }, "total_small_contributions": 5651.98, "expenditures_by_type": { - "Not Stated": 22060.79, - "Civic Donations": 8726.94, - "Office Expenses": 5951.14, - "Fundraising Events": 148.98, - "Campaign Consultants": 29282.98, - "Campaign Workers' Salaries": 6550.0, - "Campaign Paraphernalia/Misc.": 12098.77, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 20507.12, - "Candidate Travel, Lodging, and Meals": 1423.03, - "Postage, Delivery and Messenger Services": 2040.85 + "": 22060.79, + "CMP": 12098.77, + "CNS": 29282.98, + "CVC": 8726.94, + "FIL": 250.0, + "FND": 148.98, + "LIT": 20507.12, + "OFC": 5951.14, + "POS": 2040.85, + "SAL": 6550.0, + "TRC": 1423.03 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 744.45 } }, "opposing_money": { @@ -73,8 +72,6 @@ ] }, "total_contributions": 91487.96, - "test_totals": 91487.96, - "list_total": 86240.98, "total_expenditures": 109745.36, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json index bafd316..de0c2f2 100644 --- a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json +++ b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json @@ -23,27 +23,16 @@ "supporting_money": { "contributions_received": 38429.0, "total_contributions": 38429.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0, - "total_supporting_independent": 23600.06, + "total_expenditures": 62449.07, + "total_loans_received": -2500.0, + "total_supporting_independent": 429.45, "support_list": [ - { - "Total": 22999.0, - "Cand_ID": 1236617, - "Filer_ID": "1390351", - "Filer_NamL": "East Bay Working Families" - }, { "Total": 429.45, "Cand_ID": 1236617, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" - }, - { - "Total": 171.61, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -58,60 +47,34 @@ }, "total_small_contributions": 1332.0, "expenditures_by_type": { - "Print Ads": 1600.0, - "Not Stated": 9088.93, - "Phone Banks": 6950.0, - "Contribution": 1400.0, - "Legal Defense": 1000.0, - "Civic Donations": 8241.74, - "Office Expenses": 17027.58, - "Fundraising Events": 5327.38, - "Campaign Consultants": 40300.0, - "Member Communications": 658.19, - "Meetings and Appearances": 2307.7, - "Campaign Workers' Salaries": 6300.0, - "Campaign Paraphernalia/Misc.": 6590.63, - "Candidate Filing/Ballot Fees": 1250.0, - "Campaign Literature and Mailings": 44808.23, - "Candidate Travel, Lodging, and Meals": 2462.04, - "Postage, Delivery and Messenger Services": 16472.78, - "Professional Services (Legal, Accounting)": 6888.01, - "T.V. or Cable Airtime and Production Costs": 1000.0, - "Information Technology Costs (Internet, E-mail)": 7366.31 + "": 7453.93, + "CMP": 1608.42, + "CNS": 6000.0, + "CTB": 1400.0, + "CVC": 2200.0, + "FIL": 250.0, + "FND": 4045.45, + "LEG": 1000.0, + "LIT": 22934.34, + "MBR": 658.19, + "OFC": 4451.4, + "POS": 102.0, + "PRT": 1600.0, + "SAL": 6300.0, + "TRC": 1182.61 }, "supporting_by_type": { - "MON": 10800.0, - "Mailer": 14542.0, - "Doorhanger": 17656.0, - "Phone Banking & Field Campaign": 13800.0, - "Independent Expenditure Supporting/Opposing Others": 1832.12 } }, "opposing_money": { - "opposing_expenditures": 160145.67, + "opposing_expenditures": 0.0, "opposing_by_type": { - "IKD": 14908.0, - "MON": 193000.0, - "Independent Expenditure Supporting/Opposing Others": 320291.34 }, "opposition_list": [ - { - "Total": 31230.49, - "Cand_ID": 1236617, - "Filer_ID": "1413388", - "Filer_NamL": "Citizens for a United Oakland, Opposing Desley Brooks for City Council" - }, - { - "Total": 128915.18, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" - } + ] }, "total_contributions": 38429.0, - "test_totals": 38429.0, - "list_total": 144433.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0 + "total_expenditures": 62449.07, + "total_loans_received": -2500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json index f9c705b..a510214 100644 --- a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json +++ b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/james-moore.json b/build/_data/candidates/oakland/2014-11-04/james-moore.json index fcfb340..b3926d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/james-moore.json +++ b/build/_data/candidates/oakland/2014-11-04/james-moore.json @@ -41,11 +41,11 @@ }, "total_small_contributions": 1366.0, "expenditures_by_type": { - "Office Expenses": 800.0, - "Fundraising Events": 250.0, - "Campaign Paraphernalia/Misc.": 746.33, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 5799.0 + "CMP": 746.33, + "FIL": 250.0, + "FND": 250.0, + "LIT": 5799.0, + "OFC": 800.0 }, "supporting_by_type": { } @@ -59,8 +59,6 @@ ] }, "total_contributions": 10758.0, - "test_totals": 10758.0, - "list_total": 9699.0, "total_expenditures": 10731.33, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json index 5ccf5ae..d7db0ee 100644 --- a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json +++ b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/jean-quan.json b/build/_data/candidates/oakland/2014-11-04/jean-quan.json index 498e836..9f9d78f 100644 --- a/build/_data/candidates/oakland/2014-11-04/jean-quan.json +++ b/build/_data/candidates/oakland/2014-11-04/jean-quan.json @@ -42,36 +42,33 @@ }, "total_small_contributions": 16686.8, "expenditures_by_type": { - "Not Stated": 22401.95, - "Office Expenses": 1500.0, - "Fundraising Events": 5738.75, - "Campaign Consultants": 56229.72, - "Polling and Survey Research": 23286.0, - "Campaign Paraphernalia/Misc.": 9373.41, - "Campaign Literature and Mailings": 237328.31, - "Information Technology Costs (Internet, E-mail)": 3400.0 + "": 22401.95, + "CMP": 9373.41, + "CNS": 56229.72, + "FND": 5738.75, + "LIT": 237328.31, + "OFC": 1500.0, + "POL": 23286.0, + "WEB": 3400.0 }, "supporting_by_type": { - "MON": 1400.0 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 8450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1354678, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, "total_contributions": 242342.31, - "test_totals": 242342.31, - "list_total": 259647.87, "total_expenditures": 362597.46, "total_loans_received": -30000.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json index 5692466..4e48c36 100644 --- a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json +++ b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json @@ -42,20 +42,19 @@ }, "total_small_contributions": 2041.0, "expenditures_by_type": { - "Print Ads": 5670.0, - "Not Stated": 2312.19, - "Civic Donations": 500.0, - "Campaign Consultants": 16225.78, - "Campaign Paraphernalia/Misc.": 29757.02, - "Candidate Filing/Ballot Fees": 650.0, - "Campaign Literature and Mailings": 64678.24, - "Candidate Travel, Lodging, and Meals": 374.19, - "Postage, Delivery and Messenger Services": 364.28, - "Professional Services (Legal, Accounting)": 1500.0, - "Information Technology Costs (Internet, E-mail)": 1302.07 + "": 2312.19, + "CMP": 29757.02, + "CNS": 16225.78, + "CVC": 500.0, + "FIL": 650.0, + "LIT": 64678.24, + "POS": 364.28, + "PRO": 1500.0, + "PRT": 5670.0, + "TRC": 374.19, + "WEB": 1302.07 }, "supporting_by_type": { - "MON": 2800.0 } }, "opposing_money": { @@ -67,8 +66,6 @@ ] }, "total_contributions": 96641.0, - "test_totals": 96641.0, - "list_total": 76200.0, "total_expenditures": 121746.72, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json index 5fa0368..6b76fe6 100644 --- a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json +++ b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json @@ -31,7 +31,8 @@ "Total": 8450.0, "Cand_ID": 1359017, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,25 +48,23 @@ }, "total_small_contributions": 10042.0, "expenditures_by_type": { - "Print Ads": 420.0, - "Not Stated": 1143.76, - "Phone Banks": 1086.75, - "Civic Donations": 726.75, - "Office Expenses": 18758.01, - "Fundraising Events": 589.63, - "Campaign Consultants": 84120.0, - "Meetings and Appearances": 105.0, - "Campaign Paraphernalia/Misc.": 6305.45, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 59144.47, - "Postage, Delivery and Messenger Services": 34371.2, - "Professional Services (Legal, Accounting)": 3382.76, - "T.V. or Cable Airtime and Production Costs": 28884.7, - "Information Technology Costs (Internet, E-mail)": 5850.13 + "": 1143.76, + "CMP": 6305.45, + "CNS": 84120.0, + "CVC": 726.75, + "FIL": 500.0, + "FND": 589.63, + "LIT": 59144.47, + "MTG": 105.0, + "OFC": 18758.01, + "PHO": 1086.75, + "POS": 34371.2, + "PRO": 3382.76, + "PRT": 420.0, + "TEL": 28884.7, + "WEB": 5850.13 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 8450.0 } }, "opposing_money": { @@ -77,8 +76,6 @@ ] }, "total_contributions": 115502.98, - "test_totals": 115502.98, - "list_total": 111227.0, "total_expenditures": 250571.9, "total_loans_received": -4211.02 } diff --git a/build/_data/candidates/oakland/2014-11-04/karl-debro.json b/build/_data/candidates/oakland/2014-11-04/karl-debro.json index bff4ffe..8447b4c 100644 --- a/build/_data/candidates/oakland/2014-11-04/karl-debro.json +++ b/build/_data/candidates/oakland/2014-11-04/karl-debro.json @@ -42,11 +42,11 @@ }, "total_small_contributions": 974.0, "expenditures_by_type": { - "Not Stated": 80.0, - "Campaign Consultants": 2685.0, - "Campaign Paraphernalia/Misc.": 488.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12063.65 + "": 80.0, + "CMP": 488.54, + "CNS": 2685.0, + "FIL": 300.0, + "LIT": 12063.65 }, "supporting_by_type": { } @@ -60,8 +60,6 @@ ] }, "total_contributions": 1165.8, - "test_totals": 1165.8, - "list_total": 11225.0, "total_expenditures": 15711.07, "total_loans_received": -11008.2 } diff --git a/build/_data/candidates/oakland/2014-11-04/ken-houston.json b/build/_data/candidates/oakland/2014-11-04/ken-houston.json index 0435590..d61c865 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-houston.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-houston.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json index e6ce8c2..bd49605 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json index fcb983e..2b6ab32 100644 --- a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json +++ b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json @@ -43,19 +43,19 @@ }, "total_small_contributions": 5597.0, "expenditures_by_type": { - "Not Stated": 19750.55, - "Office Expenses": 920.95, - "Fundraising Events": 1952.4, - "Campaign Consultants": 22085.96, - "Petition Circulating": 795.47, - "Meetings and Appearances": 1205.64, - "Campaign Workers' Salaries": 3600.0, - "Campaign Paraphernalia/Misc.": 23736.21, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 114.18, - "Candidate Travel, Lodging, and Meals": 1000.0, - "Postage, Delivery and Messenger Services": 98.0, - "Professional Services (Legal, Accounting)": 2588.19 + "": 19750.55, + "CMP": 23736.21, + "CNS": 22085.96, + "FIL": 300.0, + "FND": 1952.4, + "LIT": 114.18, + "MTG": 1205.64, + "OFC": 920.95, + "PET": 795.47, + "POS": 98.0, + "PRO": 2588.19, + "SAL": 3600.0, + "TRC": 1000.0 }, "supporting_by_type": { } @@ -69,8 +69,6 @@ ] }, "total_contributions": 62212.0, - "test_totals": 62212.0, - "list_total": 55760.0, "total_expenditures": 80430.44, "total_loans_received": 1600.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/len-raphael.json b/build/_data/candidates/oakland/2014-11-04/len-raphael.json index 11ee079..08fcbfe 100644 --- a/build/_data/candidates/oakland/2014-11-04/len-raphael.json +++ b/build/_data/candidates/oakland/2014-11-04/len-raphael.json @@ -41,14 +41,14 @@ }, "total_small_contributions": 345.58, "expenditures_by_type": { - "Office Expenses": 1106.52, - "Meetings and Appearances": 100.0, - "Campaign Paraphernalia/Misc.": 2036.53, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 32854.91, - "Candidate Travel, Lodging, and Meals": 478.21, - "Staff/Spouse Travel, Lodging, and Meals": 400.56, - "Information Technology Costs (Internet, E-mail)": 3177.99 + "CMP": 2036.53, + "FIL": 300.0, + "LIT": 32854.91, + "MTG": 100.0, + "OFC": 1106.52, + "TRC": 478.21, + "TRS": 400.56, + "WEB": 3177.99 }, "supporting_by_type": { } @@ -62,8 +62,6 @@ ] }, "total_contributions": 37784.69, - "test_totals": 37784.69, - "list_total": 37623.69, "total_expenditures": 40597.97, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json index f6e3fe2..7301498 100644 --- a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json +++ b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1362261, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1362261, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -53,29 +55,26 @@ }, "total_small_contributions": 15141.66, "expenditures_by_type": { - "Print Ads": 4900.0, - "Not Stated": 26687.73, - "Phone Banks": 5361.23, - "Contribution": 9400.0, - "Civic Donations": 14389.46, - "Office Expenses": 47081.01, - "Fundraising Events": 12043.26, - "Campaign Consultants": 193021.15, - "Returned Contributions": 2295.0, - "Meetings and Appearances": 53167.82, - "Polling and Survey Research": 9000.0, - "Campaign Paraphernalia/Misc.": 5387.66, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 43791.4, - "Postage, Delivery and Messenger Services": 46317.46, - "Professional Services (Legal, Accounting)": 33164.83, - "T.V. or Cable Airtime and Production Costs": 63432.0, - "Information Technology Costs (Internet, E-mail)": 11499.42 + "": 26687.73, + "CMP": 5387.66, + "CNS": 193021.15, + "CTB": 9400.0, + "CVC": 14389.46, + "FIL": 300.0, + "FND": 12043.26, + "LIT": 43791.4, + "MTG": 53167.82, + "OFC": 47081.01, + "PHO": 5361.23, + "POL": 9000.0, + "POS": 46317.46, + "PRO": 33164.83, + "PRT": 4900.0, + "RFD": 2295.0, + "TEL": 63432.0, + "WEB": 11499.42 }, "supporting_by_type": { - "MON": 5700.0, - "BILLBOARDS 10/18 - 11/6": 7672.0, - "Independent Expenditure Supporting/Opposing Others": 9824.45 } }, "opposing_money": { @@ -87,8 +86,6 @@ ] }, "total_contributions": 462809.82, - "test_totals": 462809.82, - "list_total": 452345.71, "total_expenditures": 583374.15, "total_loans_received": -1050.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json index 35cd001..3cc3576 100644 --- a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json +++ b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json @@ -42,14 +42,14 @@ }, "total_small_contributions": 6539.0, "expenditures_by_type": { - "Not Stated": 18947.11, - "Office Expenses": 991.96, - "Meetings and Appearances": 1291.03, - "Campaign Paraphernalia/Misc.": 422.25, - "Candidate Filing/Ballot Fees": 119.0, - "Campaign Literature and Mailings": 10293.5, - "Candidate Travel, Lodging, and Meals": 228.87, - "Information Technology Costs (Internet, E-mail)": 1300.0 + "": 18947.11, + "CMP": 422.25, + "FIL": 119.0, + "LIT": 10293.5, + "MTG": 1291.03, + "OFC": 991.96, + "TRC": 228.87, + "WEB": 1300.0 }, "supporting_by_type": { } @@ -63,8 +63,6 @@ ] }, "total_contributions": 34487.87, - "test_totals": 34487.87, - "list_total": 29981.87, "total_expenditures": 35886.83, "total_loans_received": -205.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json index 6b6e024..0a08384 100644 --- a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json +++ b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json b/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json index 633b4ce..edd2026 100644 --- a/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json +++ b/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json @@ -54,8 +54,6 @@ ] }, "total_contributions": 147.23, - "test_totals": 147.23, - "list_total": 147.23, "total_expenditures": 147.23, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/nina-senn.json b/build/_data/candidates/oakland/2014-11-04/nina-senn.json index e4a04af..e28bbe0 100644 --- a/build/_data/candidates/oakland/2014-11-04/nina-senn.json +++ b/build/_data/candidates/oakland/2014-11-04/nina-senn.json @@ -31,7 +31,8 @@ "Total": 34118.55, "Cand_ID": 1368416, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -48,21 +49,19 @@ }, "total_small_contributions": 1483.82, "expenditures_by_type": { - "Not Stated": 2705.87, - "Contribution": 118.48, - "Fundraising Events": 320.0, - "Campaign Consultants": 8000.0, - "Polling and Survey Research": 1592.8, - "Campaign Paraphernalia/Misc.": 1751.75, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 6344.47, - "Postage, Delivery and Messenger Services": 1538.95, - "T.V. or Cable Airtime and Production Costs": 830.0, - "Information Technology Costs (Internet, E-mail)": 57.0 + "": 2705.87, + "CMP": 1751.75, + "CNS": 8000.0, + "CTB": 118.48, + "FIL": 300.0, + "FND": 320.0, + "LIT": 6344.47, + "POL": 1592.8, + "POS": 1538.95, + "TEL": 830.0, + "WEB": 57.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34118.55 } }, "opposing_money": { @@ -74,8 +73,6 @@ ] }, "total_contributions": 24233.82, - "test_totals": 24233.82, - "list_total": 23076.7, "total_expenditures": 24231.57, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json index ccb47c6..1289df4 100644 --- a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json +++ b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/paul-lim.json b/build/_data/candidates/oakland/2014-11-04/paul-lim.json index 43abd17..86d91d9 100644 --- a/build/_data/candidates/oakland/2014-11-04/paul-lim.json +++ b/build/_data/candidates/oakland/2014-11-04/paul-lim.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/peter-liu.json b/build/_data/candidates/oakland/2014-11-04/peter-liu.json index 1c68d0f..abdec16 100644 --- a/build/_data/candidates/oakland/2014-11-04/peter-liu.json +++ b/build/_data/candidates/oakland/2014-11-04/peter-liu.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json index 77e5366..dcf7d34 100644 --- a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json @@ -31,13 +31,15 @@ "Total": 10000.0, "Cand_ID": 1367270, "Filer_ID": "COAK-1538", - "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014" + "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1367270, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,51 +56,43 @@ }, "total_small_contributions": 18274.0, "expenditures_by_type": { - "Print Ads": 763.04, - "Phone Banks": 13919.92, - "Legal Defense": 4430.25, - "Office Expenses": 23828.46, - "Fundraising Events": 3648.97, - "Campaign Consultants": 122092.03, - "Returned Contributions": 4995.0, - "Meetings and Appearances": 2606.94, - "Campaign Paraphernalia/Misc.": 11065.73, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 93872.21, - "Radio Airtime and Production Costs": 4085.0, - "Candidate Travel, Lodging, and Meals": 115.19, - "Staff/Spouse Travel, Lodging, and Meals": 224.42, - "Postage, Delivery and Messenger Services": 2704.45, - "Professional Services (Legal, Accounting)": 1200.0, - "T.V. or Cable Airtime and Production Costs": 39327.6, - "Information Technology Costs (Internet, E-mail)": 19393.37 + "CMP": 11065.73, + "CNS": 122092.03, + "FIL": 300.0, + "FND": 3648.97, + "LEG": 4430.25, + "LIT": 93872.21, + "MTG": 2606.94, + "OFC": 23828.46, + "PHO": 13919.92, + "POS": 2704.45, + "PRO": 1200.0, + "PRT": 763.04, + "RAD": 4085.0, + "RFD": 4995.0, + "TEL": 39327.6, + "TRC": 115.19, + "TRS": 224.42, + "WEB": 19393.37 }, "supporting_by_type": { - "IKD": 3676.7, - "MON": 20493.0, - "Independent Expenditure Supporting/Opposing Others": 245153.1 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "MON": 1500.0, - "Cable ads": 150000.0, - "Estimated cost of media production": 24766.0, - "Independent Expenditure Supporting/Opposing Others": 43450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1367270, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, "total_contributions": 347445.36, - "test_totals": 347445.36, - "list_total": 332258.36, "total_expenditures": 349939.31, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json index 6f48cd4..4ecf4e4 100644 --- a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json +++ b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json @@ -31,7 +31,8 @@ "Total": 63894.42, "Cand_ID": 1365454, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -46,18 +47,16 @@ }, "total_small_contributions": 2943.0, "expenditures_by_type": { - "Campaign Consultants": 4750.0, - "Meetings and Appearances": 55.86, - "Polling and Survey Research": 449.0, - "Campaign Paraphernalia/Misc.": 1217.88, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3383.36, - "Professional Services (Legal, Accounting)": 160.0, - "Information Technology Costs (Internet, E-mail)": 29.0 + "CMP": 1217.88, + "CNS": 4750.0, + "FIL": 300.0, + "LIT": 3383.36, + "MTG": 55.86, + "POL": 449.0, + "PRO": 160.0, + "WEB": 29.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 63894.42 } }, "opposing_money": { @@ -69,8 +68,6 @@ ] }, "total_contributions": 12093.0, - "test_totals": 12093.0, - "list_total": 9200.0, "total_expenditures": 10590.54, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json index a40d81f..1a043d5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json +++ b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json @@ -38,9 +38,9 @@ }, "total_small_contributions": 0.0, "expenditures_by_type": { - "Print Ads": 1500.0, - "Candidate Filing/Ballot Fees": 300.0, - "Information Technology Costs (Internet, E-mail)": 507.0 + "FIL": 300.0, + "PRT": 1500.0, + "WEB": 507.0 }, "supporting_by_type": { } @@ -54,8 +54,6 @@ ] }, "total_contributions": 2609.9, - "test_totals": 2609.9, - "list_total": 2609.9, "total_expenditures": 2609.9, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json index e8a615c..13a23b5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json +++ b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json @@ -31,7 +31,8 @@ "Total": 34066.01, "Cand_ID": 1365733, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,17 +48,15 @@ }, "total_small_contributions": 2324.0, "expenditures_by_type": { - "Phone Banks": 75.0, - "Office Expenses": 802.93, - "Fundraising Events": 508.0, - "Campaign Consultants": 8940.11, - "Meetings and Appearances": 58.0, - "Campaign Literature and Mailings": 6349.45, - "Information Technology Costs (Internet, E-mail)": 656.0 + "CNS": 8940.11, + "FND": 508.0, + "LIT": 6349.45, + "MTG": 58.0, + "OFC": 802.93, + "PHO": 75.0, + "WEB": 656.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34066.01 } }, "opposing_money": { @@ -69,8 +68,6 @@ ] }, "total_contributions": 17639.0, - "test_totals": 17639.0, - "list_total": 15545.0, "total_expenditures": 18628.0, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json index 08e8411..ba6b8bd 100644 --- a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json @@ -43,20 +43,19 @@ }, "total_small_contributions": 8602.01, "expenditures_by_type": { - "Not Stated": 16872.35, - "Contribution": 1400.0, - "Office Expenses": 589.25, - "Fundraising Events": 1618.95, - "Polling and Survey Research": 3137.48, - "Campaign Paraphernalia/Misc.": 14274.08, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 21352.34, - "Staff/Spouse Travel, Lodging, and Meals": 248.06, - "Postage, Delivery and Messenger Services": 4662.11, - "Professional Services (Legal, Accounting)": 6361.08 + "": 16872.35, + "CMP": 14274.08, + "CTB": 1400.0, + "FIL": 300.0, + "FND": 1618.95, + "LIT": 21352.34, + "OFC": 589.25, + "POL": 3137.48, + "POS": 4662.11, + "PRO": 6361.08, + "TRS": 248.06 }, "supporting_by_type": { - "MON": 250.0 } }, "opposing_money": { @@ -68,8 +67,6 @@ ] }, "total_contributions": 73585.61, - "test_totals": 73585.61, - "list_total": 67218.6, "total_expenditures": 72428.29, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json index 32393fc..4865c99 100644 --- a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json +++ b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json @@ -41,16 +41,16 @@ }, "total_small_contributions": 7175.0, "expenditures_by_type": { - "Print Ads": 6958.74, - "Office Expenses": 255.8, - "Fundraising Events": 100.0, - "Voter Registration": 250.0, - "Campaign Consultants": 32018.84, - "Campaign Workers' Salaries": 2768.0, - "Campaign Paraphernalia/Misc.": 20724.62, - "Campaign Literature and Mailings": 531.7, - "Professional Services (Legal, Accounting)": 500.0, - "Information Technology Costs (Internet, E-mail)": 500.0 + "CMP": 20724.62, + "CNS": 32018.84, + "FND": 100.0, + "LIT": 531.7, + "OFC": 255.8, + "PRO": 500.0, + "PRT": 6958.74, + "SAL": 2768.0, + "VOT": 250.0, + "WEB": 500.0 }, "supporting_by_type": { } @@ -64,8 +64,6 @@ ] }, "total_contributions": 32601.29, - "test_totals": 32601.29, - "list_total": 21465.0, "total_expenditures": 68116.44, "total_loans_received": 611.29 } diff --git a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json index f4e1317..520a2a4 100644 --- a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json index a078afc..4cb1310 100644 --- a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json +++ b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json index 2882ab1..bb78f71 100644 --- a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json +++ b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json index e6e2dc0..c537ffb 100644 --- a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json +++ b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json @@ -41,17 +41,16 @@ }, "total_small_contributions": 393.0, "expenditures_by_type": { - "Not Stated": 500.0, - "Contribution": 26626.59, - "Fundraising Events": 3450.0, - "Campaign Consultants": 32098.97, - "Campaign Paraphernalia/Misc.": 820.44, - "Candidate Filing/Ballot Fees": 1727.0, - "Campaign Literature and Mailings": 1559.56, - "Independent Expenditure Supporting/Opposing Others": 1250.0 + "": 500.0, + "CMP": 820.44, + "CNS": 32098.97, + "CTB": 26626.59, + "FIL": 1727.0, + "FND": 3450.0, + "IND": 1250.0, + "LIT": 1559.56 }, "supporting_by_type": { - "MON": 700.0 } }, "opposing_money": { @@ -63,8 +62,6 @@ ] }, "total_contributions": 67909.0, - "test_totals": 67909.0, - "list_total": 67516.0, "total_expenditures": 68110.09, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json index acc5038..6b44f8d 100644 --- a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json +++ b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ @@ -48,8 +48,6 @@ ] }, "total_contributions": 0.0, - "test_totals": null, - "list_total": 0.0, "total_expenditures": null, "total_loans_received": null } diff --git a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json index 4c52159..d248212 100644 --- a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json +++ b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json @@ -43,13 +43,13 @@ }, "total_small_contributions": 1707.0, "expenditures_by_type": { - "Office Expenses": 7808.74, - "Campaign Consultants": 52134.75, - "Meetings and Appearances": 835.15, - "Campaign Paraphernalia/Misc.": 6133.94, - "Campaign Literature and Mailings": 1056.73, - "Professional Services (Legal, Accounting)": 5575.0, - "Information Technology Costs (Internet, E-mail)": 1997.97 + "CMP": 6133.94, + "CNS": 52134.75, + "LIT": 1056.73, + "MTG": 835.15, + "OFC": 7808.74, + "PRO": 5575.0, + "WEB": 1997.97 }, "supporting_by_type": { } @@ -63,8 +63,6 @@ ] }, "total_contributions": 75623.14, - "test_totals": 75623.14, - "list_total": 73917.14, "total_expenditures": 75910.59, "total_loans_received": 0.0 } diff --git a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json index f245c0d..59de439 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -41,35 +41,31 @@ }, "total_small_contributions": 2987.0, "expenditures_by_type": { - "Not Stated": 2033.0, - "Office Expenses": 1900.34, - "Campaign Consultants": 5150.0, - "Campaign Paraphernalia/Misc.": 1167.25, - "Campaign Literature and Mailings": 1054.74, - "Professional Services (Legal, Accounting)": 3057.23 + "": 2033.0, + "CMP": 1167.25, + "CNS": 5150.0, + "LIT": 1054.74, + "OFC": 1900.34, + "PRO": 3057.23 }, "supporting_by_type": { - "IKD": 5924.0, - "MON": 1500.0 } }, "opposing_money": { "opposing_expenditures": 6987.5, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 6987.5 }, "opposition_list": [ { ```
mikeubell commented 9 months ago
Build diff from Commit 1db21ed043420bb1ca38fa69b4ca541cdf236ee7: ```diff diff --git a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json index 74b122b..7a0a6f3 100644 --- a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json +++ b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json @@ -42,18 +42,18 @@ }, "total_small_contributions": 15898.0, "expenditures_by_type": { - "Print Ads": 250.0, - "Not Stated": 43849.56, - "Contribution": 4031.0, - "Civic Donations": 3600.0, - "Office Expenses": 19388.42, - "Fundraising Events": 3950.0, - "Campaign Consultants": 48600.0, - "Campaign Paraphernalia/Misc.": 2934.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 28569.2, - "Postage, Delivery and Messenger Services": 14435.8, - "Professional Services (Legal, Accounting)": 25847.23 + "": 43849.56, + "CMP": 2934.54, + "CNS": 48600.0, + "CTB": 4031.0, + "CVC": 3600.0, + "FIL": 300.0, + "FND": 3950.0, + "LIT": 28569.2, + "OFC": 19388.42, + "POS": 14435.8, + "PRO": 25847.23, + "PRT": 250.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json index 9080bb6..65711b6 100644 --- a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json +++ b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json @@ -21,51 +21,49 @@ "is_winner": null, "filer_id": 1368984, "supporting_money": { - "contributions_received": 30829.65, - "total_contributions": 30829.65, - "total_expenditures": 31569.65, - "total_loans_received": 0.0, + "contributions_received": 33744.95, + "total_contributions": 33744.95, + "total_expenditures": 29369.65, + "total_loans_received": 3500.0, "total_supporting_independent": 50.63, "support_list": [ { "Total": 50.63, "Cand_ID": 1368984, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { "Committee": 3500.0, - "Individual": 22167.4, - "Unitemized": 2042.97, - "Self Funding": 438.56, + "Individual": 21924.95, + "Unitemized": 1920.0, "Other (includes Businesses)": 2900.0 }, "contributions_by_origin": { "Out of State": 3349.95, - "Within Oakland": 7869.28, - "Within California": 17567.45 + "Within Oakland": 7650.0, + "Within California": 17325.0 }, - "total_small_contributions": 2142.97, + "total_small_contributions": 2020.0, "expenditures_by_type": { - "Print Ads": 1617.66, - "Not Stated": 876.49, - "Phone Banks": 356.52, - "Contribution": 2175.0, - "Office Expenses": 100.0, - "Fundraising Events": 158.49, - "Campaign Consultants": 5000.0, - "Campaign Workers' Salaries": 4197.84, - "Polling and Survey Research": 926.42, - "Campaign Paraphernalia/Misc.": 1736.64, - "Candidate Filing/Ballot Fees": 1640.0, - "Campaign Literature and Mailings": 5928.4, - "Postage, Delivery and Messenger Services": 5674.56, - "Professional Services (Legal, Accounting)": 150.0 + "": 876.49, + "CMP": 1736.64, + "CNS": 5000.0, + "CTB": 1175.0, + "FIL": 640.0, + "FND": 158.49, + "LIT": 5928.4, + "OFC": 100.0, + "PHO": 356.52, + "POL": 926.42, + "POS": 5674.56, + "PRO": 150.0, + "PRT": 1617.66, + "SAL": 4197.84 }, "supporting_by_type": { - "MON": 1000.0, - "Independent Expenditure Supporting/Opposing Others": 101.26 } }, "opposing_money": { @@ -76,7 +74,7 @@ ] }, - "total_contributions": 30829.65, - "total_expenditures": 31569.65, - "total_loans_received": 0.0 + "total_contributions": 33744.95, + "total_expenditures": 29369.65, + "total_loans_received": 3500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/andrew-park.json b/build/_data/candidates/oakland/2014-11-04/andrew-park.json index 50ee4d0..41ced30 100644 --- a/build/_data/candidates/oakland/2014-11-04/andrew-park.json +++ b/build/_data/candidates/oakland/2014-11-04/andrew-park.json @@ -43,18 +43,18 @@ }, "total_small_contributions": 9413.86, "expenditures_by_type": { - "Not Stated": 3746.73, - "Phone Banks": 4981.94, - "Civic Donations": 100.0, - "Office Expenses": 9271.69, - "Fundraising Events": 2226.94, - "Campaign Consultants": 15700.0, - "Meetings and Appearances": 247.82, - "Campaign Workers' Salaries": 1600.0, - "Polling and Survey Research": 2885.0, - "Campaign Paraphernalia/Misc.": 8241.76, - "Campaign Literature and Mailings": 32920.9, - "Information Technology Costs (Internet, E-mail)": 2646.38 + "": 3746.73, + "CMP": 8241.76, + "CNS": 15700.0, + "CVC": 100.0, + "FND": 2226.94, + "LIT": 32920.9, + "MTG": 247.82, + "OFC": 9271.69, + "PHO": 4981.94, + "POL": 2885.0, + "SAL": 1600.0, + "WEB": 2646.38 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json index efbd686..ae66d75 100644 --- a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json @@ -31,7 +31,8 @@ "Total": 89243.48, "Cand_ID": 1365610, "Filer_ID": "1294190", - "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO" + "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,27 +48,25 @@ }, "total_small_contributions": 6664.0, "expenditures_by_type": { - "Print Ads": 100.0, - "Not Stated": 5900.0, - "Phone Banks": 478.16, - "Contribution": 500.0, - "Civic Donations": 4300.0, - "Office Expenses": 8204.11, - "Fundraising Events": 2930.15, - "Campaign Consultants": 20000.0, - "Meetings and Appearances": 220.0, - "Campaign Workers' Salaries": 9750.0, - "Campaign Paraphernalia/Misc.": 5194.28, - "Candidate Filing/Ballot Fees": 600.0, - "Campaign Literature and Mailings": 62478.8, - "Staff/Spouse Travel, Lodging, and Meals": 928.62, - "Postage, Delivery and Messenger Services": 147.0, - "Professional Services (Legal, Accounting)": 6049.1, - "Information Technology Costs (Internet, E-mail)": 5853.67 + "": 5900.0, + "CMP": 5194.28, + "CNS": 20000.0, + "CTB": 500.0, + "CVC": 4300.0, + "FIL": 600.0, + "FND": 2930.15, + "LIT": 62478.8, + "MTG": 220.0, + "OFC": 8204.11, + "PHO": 478.16, + "POS": 147.0, + "PRO": 6049.1, + "PRT": 100.0, + "SAL": 9750.0, + "TRS": 928.62, + "WEB": 5853.67 }, "supporting_by_type": { - "MON": 700.0, - "Independent Expenditure Supporting/Opposing Others": 89243.48 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json index 7a56e35..238d1d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -42,19 +42,18 @@ }, "total_small_contributions": 275.0, "expenditures_by_type": { - "Print Ads": 9483.0, - "Phone Banks": 1625.47, - "Office Expenses": 589.98, - "Campaign Consultants": 11447.9, - "Meetings and Appearances": 150.0, - "Campaign Paraphernalia/Misc.": 2520.62, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 37284.94, - "Professional Services (Legal, Accounting)": 1880.0, - "Information Technology Costs (Internet, E-mail)": 3500.0 + "CMP": 2520.62, + "CNS": 11447.9, + "FIL": 500.0, + "LIT": 37284.94, + "MTG": 150.0, + "OFC": 589.98, + "PHO": 1625.47, + "PRO": 1880.0, + "PRT": 9483.0, + "WEB": 3500.0 }, "supporting_by_type": { - "MON": 3800.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json index 719aeb8..b0695d3 100644 --- a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json +++ b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1357609, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 10446.26, "Cand_ID": 1357609, "Filer_ID": "983545", - "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce" + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,28 +56,26 @@ }, "total_small_contributions": 7354.23, "expenditures_by_type": { - "Print Ads": 1500.0, - "Not Stated": 73215.79, - "Phone Banks": 8729.67, - "Civic Donations": 800.0, - "Office Expenses": 24408.3, - "Fundraising Events": 12249.2, - "Campaign Consultants": 30000.0, - "Meetings and Appearances": 6512.87, - "Polling and Survey Research": 20000.0, - "Campaign Paraphernalia/Misc.": 62144.3, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 78185.99, - "Candidate Travel, Lodging, and Meals": 7.99, - "Staff/Spouse Travel, Lodging, and Meals": 2620.56, - "Postage, Delivery and Messenger Services": 12617.84, - "Professional Services (Legal, Accounting)": 21832.53, - "T.V. or Cable Airtime and Production Costs": 11520.9, - "Information Technology Costs (Internet, E-mail)": 15968.27 + "": 73215.79, + "CMP": 62144.3, + "CNS": 30000.0, + "CVC": 800.0, + "FIL": 300.0, + "FND": 12249.2, + "LIT": 78185.99, + "MTG": 6512.87, + "OFC": 24408.3, + "PHO": 8729.67, + "POL": 20000.0, + "POS": 12617.84, + "PRO": 21832.53, + "PRT": 1500.0, + "TEL": 11520.9, + "TRC": 7.99, + "TRS": 2620.56, + "WEB": 15968.27 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 18896.26 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/charles-williams.json b/build/_data/candidates/oakland/2014-11-04/charles-williams.json index 0610dc9..b94cacf 100644 --- a/build/_data/candidates/oakland/2014-11-04/charles-williams.json +++ b/build/_data/candidates/oakland/2014-11-04/charles-williams.json @@ -42,15 +42,15 @@ }, "total_small_contributions": 35.0, "expenditures_by_type": { - "Print Ads": 960.0, - "Not Stated": 1050.0, - "Meetings and Appearances": 2651.0, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3946.0, - "Radio Airtime and Production Costs": 1860.0, - "Staff/Spouse Travel, Lodging, and Meals": 500.0, - "Postage, Delivery and Messenger Services": 1200.0, - "T.V. or Cable Airtime and Production Costs": 3750.0 + "": 1050.0, + "FIL": 300.0, + "LIT": 3946.0, + "MTG": 2651.0, + "POS": 1200.0, + "PRT": 960.0, + "RAD": 1860.0, + "TEL": 3750.0, + "TRS": 500.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json index 080c389..f178710 100644 --- a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json +++ b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json @@ -42,16 +42,16 @@ }, "total_small_contributions": 2998.9, "expenditures_by_type": { - "Not Stated": 1365.45, - "Phone Banks": 1238.56, - "Office Expenses": 190.0, - "Fundraising Events": 914.07, - "Campaign Paraphernalia/Misc.": 3543.88, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 9703.58, - "Postage, Delivery and Messenger Services": 182.5, - "Professional Services (Legal, Accounting)": 1116.07, - "Information Technology Costs (Internet, E-mail)": 145.0 + "": 1365.45, + "CMP": 3543.88, + "FIL": 250.0, + "FND": 914.07, + "LIT": 9703.58, + "OFC": 190.0, + "PHO": 1238.56, + "POS": 182.5, + "PRO": 1116.07, + "WEB": 145.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json index 0084445..94f90a3 100644 --- a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json +++ b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json @@ -43,22 +43,21 @@ }, "total_small_contributions": 12393.89, "expenditures_by_type": { - "Print Ads": 1452.5, - "Office Expenses": 14228.94, - "Campaign Consultants": 24000.0, - "Meetings and Appearances": 1231.63, - "Campaign Workers' Salaries": 53774.57, - "Polling and Survey Research": 28000.0, - "Campaign Paraphernalia/Misc.": 2364.69, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12067.08, - "Staff/Spouse Travel, Lodging, and Meals": 2236.23, - "Postage, Delivery and Messenger Services": 2986.53, - "Professional Services (Legal, Accounting)": 9488.12, - "Information Technology Costs (Internet, E-mail)": 11086.68 + "CMP": 2364.69, + "CNS": 24000.0, + "FIL": 300.0, + "LIT": 12067.08, + "MTG": 1231.63, + "OFC": 14228.94, + "POL": 28000.0, + "POS": 2986.53, + "PRO": 9488.12, + "PRT": 1452.5, + "SAL": 53774.57, + "TRS": 2236.23, + "WEB": 11086.68 }, "supporting_by_type": { - "MON": 2200.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json index 29f3e0a..7334c54 100644 --- a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json +++ b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json @@ -42,22 +42,22 @@ }, "total_small_contributions": 7607.23, "expenditures_by_type": { - "Print Ads": 6205.0, - "Not Stated": 2090.45, - "Phone Banks": 1247.0, - "Office Expenses": 8348.23, - "Fundraising Events": 7746.0, - "Campaign Consultants": 154399.76, - "Meetings and Appearances": 394.0, - "Campaign Workers' Salaries": 60300.0, - "Polling and Survey Research": 11187.47, - "Campaign Paraphernalia/Misc.": 15144.71, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 934.73, - "Staff/Spouse Travel, Lodging, and Meals": 2659.35, - "Postage, Delivery and Messenger Services": 5964.21, - "Information Technology Costs (Internet, E-mail)": 1699.05, - "Transfer Between Committees of the Same Candidate/sponsor": 2.99 + "": 2090.45, + "CMP": 15144.71, + "CNS": 154399.76, + "FIL": 300.0, + "FND": 7746.0, + "LIT": 934.73, + "MTG": 394.0, + "OFC": 8348.23, + "PHO": 1247.0, + "POL": 11187.47, + "POS": 5964.21, + "PRT": 6205.0, + "SAL": 60300.0, + "TRS": 2659.35, + "TSF": 2.99, + "WEB": 1699.05 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/dana-king.json b/build/_data/candidates/oakland/2014-11-04/dana-king.json index fbdd7ce..c2c3d68 100644 --- a/build/_data/candidates/oakland/2014-11-04/dana-king.json +++ b/build/_data/candidates/oakland/2014-11-04/dana-king.json @@ -31,7 +31,8 @@ "Total": 429.45, "Cand_ID": 1364029, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,21 +48,19 @@ }, "total_small_contributions": 5651.98, "expenditures_by_type": { - "Not Stated": 22060.79, - "Civic Donations": 8726.94, - "Office Expenses": 5951.14, - "Fundraising Events": 148.98, - "Campaign Consultants": 29282.98, - "Campaign Workers' Salaries": 6550.0, - "Campaign Paraphernalia/Misc.": 12098.77, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 20507.12, - "Candidate Travel, Lodging, and Meals": 1423.03, - "Postage, Delivery and Messenger Services": 2040.85 + "": 22060.79, + "CMP": 12098.77, + "CNS": 29282.98, + "CVC": 8726.94, + "FIL": 250.0, + "FND": 148.98, + "LIT": 20507.12, + "OFC": 5951.14, + "POS": 2040.85, + "SAL": 6550.0, + "TRC": 1423.03 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 744.45 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json index ea62373..de0c2f2 100644 --- a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json +++ b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json @@ -21,96 +21,60 @@ "is_winner": null, "filer_id": 1236617, "supporting_money": { - "contributions_received": 144254.0, - "total_contributions": 144254.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0, - "total_supporting_independent": 23600.06, + "contributions_received": 38429.0, + "total_contributions": 38429.0, + "total_expenditures": 62449.07, + "total_loans_received": -2500.0, + "total_supporting_independent": 429.45, "support_list": [ - { - "Total": 22999.0, - "Cand_ID": 1236617, - "Filer_ID": "1390351", - "Filer_NamL": "East Bay Working Families" - }, { "Total": 429.45, "Cand_ID": 1236617, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" - }, - { - "Total": 171.61, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { - "Committee": 10650.0, - "Individual": 125733.0, - "Unitemized": 2221.0, - "Other (includes Businesses)": 8050.0 + "Committee": 2400.0, + "Individual": 37620.0, + "Unitemized": 409.0, + "Other (includes Businesses)": 500.0 }, "contributions_by_origin": { - "Out of State": 2300.0, - "Within Oakland": 79674.0, - "Within California": 62459.0 + "Within Oakland": 22920.0, + "Within California": 17600.0 }, - "total_small_contributions": 3144.0, + "total_small_contributions": 1332.0, "expenditures_by_type": { - "Print Ads": 1600.0, - "Not Stated": 9088.93, - "Phone Banks": 6950.0, - "Contribution": 1400.0, - "Legal Defense": 1000.0, - "Civic Donations": 8241.74, - "Office Expenses": 17027.58, - "Fundraising Events": 5327.38, - "Campaign Consultants": 40300.0, - "Member Communications": 658.19, - "Meetings and Appearances": 2307.7, - "Campaign Workers' Salaries": 6300.0, - "Campaign Paraphernalia/Misc.": 6590.63, - "Candidate Filing/Ballot Fees": 1250.0, - "Campaign Literature and Mailings": 44808.23, - "Candidate Travel, Lodging, and Meals": 2462.04, - "Postage, Delivery and Messenger Services": 16472.78, - "Professional Services (Legal, Accounting)": 6888.01, - "T.V. or Cable Airtime and Production Costs": 1000.0, - "Information Technology Costs (Internet, E-mail)": 7366.31 + "": 7453.93, + "CMP": 1608.42, + "CNS": 6000.0, + "CTB": 1400.0, + "CVC": 2200.0, + "FIL": 250.0, + "FND": 4045.45, + "LEG": 1000.0, + "LIT": 22934.34, + "MBR": 658.19, + "OFC": 4451.4, + "POS": 102.0, + "PRT": 1600.0, + "SAL": 6300.0, + "TRC": 1182.61 }, "supporting_by_type": { - "MON": 10800.0, - "Mailer": 14542.0, - "Doorhanger": 17656.0, - "Phone Banking & Field Campaign": 13800.0, - "Independent Expenditure Supporting/Opposing Others": 1832.12 } }, "opposing_money": { - "opposing_expenditures": 160145.67, + "opposing_expenditures": 0.0, "opposing_by_type": { - "IKD": 14908.0, - "MON": 193000.0, - "Independent Expenditure Supporting/Opposing Others": 320291.34 }, "opposition_list": [ - { - "Total": 31230.49, - "Cand_ID": 1236617, - "Filer_ID": "1413388", - "Filer_NamL": "Citizens for a United Oakland, Opposing Desley Brooks for City Council" - }, - { - "Total": 128915.18, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" - } + ] }, - "total_contributions": 144254.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0 + "total_contributions": 38429.0, + "total_expenditures": 62449.07, + "total_loans_received": -2500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json index 78b428f..a510214 100644 --- a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json +++ b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/james-moore.json b/build/_data/candidates/oakland/2014-11-04/james-moore.json index 8573e03..b3926d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/james-moore.json +++ b/build/_data/candidates/oakland/2014-11-04/james-moore.json @@ -41,11 +41,11 @@ }, "total_small_contributions": 1366.0, "expenditures_by_type": { - "Office Expenses": 800.0, - "Fundraising Events": 250.0, - "Campaign Paraphernalia/Misc.": 746.33, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 5799.0 + "CMP": 746.33, + "FIL": 250.0, + "FND": 250.0, + "LIT": 5799.0, + "OFC": 800.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json index 582f7ac..d7db0ee 100644 --- a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json +++ b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/jean-quan.json b/build/_data/candidates/oakland/2014-11-04/jean-quan.json index dad15c2..9f9d78f 100644 --- a/build/_data/candidates/oakland/2014-11-04/jean-quan.json +++ b/build/_data/candidates/oakland/2014-11-04/jean-quan.json @@ -42,30 +42,29 @@ }, "total_small_contributions": 16686.8, "expenditures_by_type": { - "Not Stated": 22401.95, - "Office Expenses": 1500.0, - "Fundraising Events": 5738.75, - "Campaign Consultants": 56229.72, - "Polling and Survey Research": 23286.0, - "Campaign Paraphernalia/Misc.": 9373.41, - "Campaign Literature and Mailings": 237328.31, - "Information Technology Costs (Internet, E-mail)": 3400.0 + "": 22401.95, + "CMP": 9373.41, + "CNS": 56229.72, + "FND": 5738.75, + "LIT": 237328.31, + "OFC": 1500.0, + "POL": 23286.0, + "WEB": 3400.0 }, "supporting_by_type": { - "MON": 1400.0 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 8450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1354678, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, diff --git a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json index b77a84b..4e48c36 100644 --- a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json +++ b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json @@ -42,20 +42,19 @@ }, "total_small_contributions": 2041.0, "expenditures_by_type": { - "Print Ads": 5670.0, - "Not Stated": 2312.19, - "Civic Donations": 500.0, - "Campaign Consultants": 16225.78, - "Campaign Paraphernalia/Misc.": 29757.02, - "Candidate Filing/Ballot Fees": 650.0, - "Campaign Literature and Mailings": 64678.24, - "Candidate Travel, Lodging, and Meals": 374.19, - "Postage, Delivery and Messenger Services": 364.28, - "Professional Services (Legal, Accounting)": 1500.0, - "Information Technology Costs (Internet, E-mail)": 1302.07 + "": 2312.19, + "CMP": 29757.02, + "CNS": 16225.78, + "CVC": 500.0, + "FIL": 650.0, + "LIT": 64678.24, + "POS": 364.28, + "PRO": 1500.0, + "PRT": 5670.0, + "TRC": 374.19, + "WEB": 1302.07 }, "supporting_by_type": { - "MON": 2800.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json index 336a697..6b76fe6 100644 --- a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json +++ b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json @@ -31,7 +31,8 @@ "Total": 8450.0, "Cand_ID": 1359017, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,25 +48,23 @@ }, "total_small_contributions": 10042.0, "expenditures_by_type": { - "Print Ads": 420.0, - "Not Stated": 1143.76, - "Phone Banks": 1086.75, - "Civic Donations": 726.75, - "Office Expenses": 18758.01, - "Fundraising Events": 589.63, - "Campaign Consultants": 84120.0, - "Meetings and Appearances": 105.0, - "Campaign Paraphernalia/Misc.": 6305.45, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 59144.47, - "Postage, Delivery and Messenger Services": 34371.2, - "Professional Services (Legal, Accounting)": 3382.76, - "T.V. or Cable Airtime and Production Costs": 28884.7, - "Information Technology Costs (Internet, E-mail)": 5850.13 + "": 1143.76, + "CMP": 6305.45, + "CNS": 84120.0, + "CVC": 726.75, + "FIL": 500.0, + "FND": 589.63, + "LIT": 59144.47, + "MTG": 105.0, + "OFC": 18758.01, + "PHO": 1086.75, + "POS": 34371.2, + "PRO": 3382.76, + "PRT": 420.0, + "TEL": 28884.7, + "WEB": 5850.13 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 8450.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/karl-debro.json b/build/_data/candidates/oakland/2014-11-04/karl-debro.json index 38290ed..8447b4c 100644 --- a/build/_data/candidates/oakland/2014-11-04/karl-debro.json +++ b/build/_data/candidates/oakland/2014-11-04/karl-debro.json @@ -42,11 +42,11 @@ }, "total_small_contributions": 974.0, "expenditures_by_type": { - "Not Stated": 80.0, - "Campaign Consultants": 2685.0, - "Campaign Paraphernalia/Misc.": 488.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12063.65 + "": 80.0, + "CMP": 488.54, + "CNS": 2685.0, + "FIL": 300.0, + "LIT": 12063.65 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/ken-houston.json b/build/_data/candidates/oakland/2014-11-04/ken-houston.json index c26deea..d61c865 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-houston.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-houston.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json index f5b458e..bd49605 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json index 3056518..2b6ab32 100644 --- a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json +++ b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json @@ -43,19 +43,19 @@ }, "total_small_contributions": 5597.0, "expenditures_by_type": { - "Not Stated": 19750.55, - "Office Expenses": 920.95, - "Fundraising Events": 1952.4, - "Campaign Consultants": 22085.96, - "Petition Circulating": 795.47, - "Meetings and Appearances": 1205.64, - "Campaign Workers' Salaries": 3600.0, - "Campaign Paraphernalia/Misc.": 23736.21, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 114.18, - "Candidate Travel, Lodging, and Meals": 1000.0, - "Postage, Delivery and Messenger Services": 98.0, - "Professional Services (Legal, Accounting)": 2588.19 + "": 19750.55, + "CMP": 23736.21, + "CNS": 22085.96, + "FIL": 300.0, + "FND": 1952.4, + "LIT": 114.18, + "MTG": 1205.64, + "OFC": 920.95, + "PET": 795.47, + "POS": 98.0, + "PRO": 2588.19, + "SAL": 3600.0, + "TRC": 1000.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/len-raphael.json b/build/_data/candidates/oakland/2014-11-04/len-raphael.json index 536c8f8..08fcbfe 100644 --- a/build/_data/candidates/oakland/2014-11-04/len-raphael.json +++ b/build/_data/candidates/oakland/2014-11-04/len-raphael.json @@ -41,14 +41,14 @@ }, "total_small_contributions": 345.58, "expenditures_by_type": { - "Office Expenses": 1106.52, - "Meetings and Appearances": 100.0, - "Campaign Paraphernalia/Misc.": 2036.53, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 32854.91, - "Candidate Travel, Lodging, and Meals": 478.21, - "Staff/Spouse Travel, Lodging, and Meals": 400.56, - "Information Technology Costs (Internet, E-mail)": 3177.99 + "CMP": 2036.53, + "FIL": 300.0, + "LIT": 32854.91, + "MTG": 100.0, + "OFC": 1106.52, + "TRC": 478.21, + "TRS": 400.56, + "WEB": 3177.99 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json index 159d41b..7301498 100644 --- a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json +++ b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1362261, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1362261, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -53,29 +55,26 @@ }, "total_small_contributions": 15141.66, "expenditures_by_type": { - "Print Ads": 4900.0, - "Not Stated": 26687.73, - "Phone Banks": 5361.23, - "Contribution": 9400.0, - "Civic Donations": 14389.46, - "Office Expenses": 47081.01, - "Fundraising Events": 12043.26, - "Campaign Consultants": 193021.15, - "Returned Contributions": 2295.0, - "Meetings and Appearances": 53167.82, - "Polling and Survey Research": 9000.0, - "Campaign Paraphernalia/Misc.": 5387.66, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 43791.4, - "Postage, Delivery and Messenger Services": 46317.46, - "Professional Services (Legal, Accounting)": 33164.83, - "T.V. or Cable Airtime and Production Costs": 63432.0, - "Information Technology Costs (Internet, E-mail)": 11499.42 + "": 26687.73, + "CMP": 5387.66, + "CNS": 193021.15, + "CTB": 9400.0, + "CVC": 14389.46, + "FIL": 300.0, + "FND": 12043.26, + "LIT": 43791.4, + "MTG": 53167.82, + "OFC": 47081.01, + "PHO": 5361.23, + "POL": 9000.0, + "POS": 46317.46, + "PRO": 33164.83, + "PRT": 4900.0, + "RFD": 2295.0, + "TEL": 63432.0, + "WEB": 11499.42 }, "supporting_by_type": { - "MON": 5700.0, - "BILLBOARDS 10/18 - 11/6": 7672.0, - "Independent Expenditure Supporting/Opposing Others": 9824.45 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json index 43fc85d..3cc3576 100644 --- a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json +++ b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json @@ -42,14 +42,14 @@ }, "total_small_contributions": 6539.0, "expenditures_by_type": { - "Not Stated": 18947.11, - "Office Expenses": 991.96, - "Meetings and Appearances": 1291.03, - "Campaign Paraphernalia/Misc.": 422.25, - "Candidate Filing/Ballot Fees": 119.0, - "Campaign Literature and Mailings": 10293.5, - "Candidate Travel, Lodging, and Meals": 228.87, - "Information Technology Costs (Internet, E-mail)": 1300.0 + "": 18947.11, + "CMP": 422.25, + "FIL": 119.0, + "LIT": 10293.5, + "MTG": 1291.03, + "OFC": 991.96, + "TRC": 228.87, + "WEB": 1300.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json index 81d68a4..0a08384 100644 --- a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json +++ b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/nina-senn.json b/build/_data/candidates/oakland/2014-11-04/nina-senn.json index 47c479e..e28bbe0 100644 --- a/build/_data/candidates/oakland/2014-11-04/nina-senn.json +++ b/build/_data/candidates/oakland/2014-11-04/nina-senn.json @@ -31,7 +31,8 @@ "Total": 34118.55, "Cand_ID": 1368416, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -48,21 +49,19 @@ }, "total_small_contributions": 1483.82, "expenditures_by_type": { - "Not Stated": 2705.87, - "Contribution": 118.48, - "Fundraising Events": 320.0, - "Campaign Consultants": 8000.0, - "Polling and Survey Research": 1592.8, - "Campaign Paraphernalia/Misc.": 1751.75, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 6344.47, - "Postage, Delivery and Messenger Services": 1538.95, - "T.V. or Cable Airtime and Production Costs": 830.0, - "Information Technology Costs (Internet, E-mail)": 57.0 + "": 2705.87, + "CMP": 1751.75, + "CNS": 8000.0, + "CTB": 118.48, + "FIL": 300.0, + "FND": 320.0, + "LIT": 6344.47, + "POL": 1592.8, + "POS": 1538.95, + "TEL": 830.0, + "WEB": 57.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34118.55 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json index dcbb384..1289df4 100644 --- a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json +++ b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/paul-lim.json b/build/_data/candidates/oakland/2014-11-04/paul-lim.json index 15665bb..86d91d9 100644 --- a/build/_data/candidates/oakland/2014-11-04/paul-lim.json +++ b/build/_data/candidates/oakland/2014-11-04/paul-lim.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/peter-liu.json b/build/_data/candidates/oakland/2014-11-04/peter-liu.json index 0ae6378..abdec16 100644 --- a/build/_data/candidates/oakland/2014-11-04/peter-liu.json +++ b/build/_data/candidates/oakland/2014-11-04/peter-liu.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json index 5da7a23..dcf7d34 100644 --- a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json @@ -31,13 +31,15 @@ "Total": 10000.0, "Cand_ID": 1367270, "Filer_ID": "COAK-1538", - "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014" + "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1367270, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,45 +56,39 @@ }, "total_small_contributions": 18274.0, "expenditures_by_type": { - "Print Ads": 763.04, - "Phone Banks": 13919.92, - "Legal Defense": 4430.25, - "Office Expenses": 23828.46, - "Fundraising Events": 3648.97, - "Campaign Consultants": 122092.03, - "Returned Contributions": 4995.0, - "Meetings and Appearances": 2606.94, - "Campaign Paraphernalia/Misc.": 11065.73, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 93872.21, - "Radio Airtime and Production Costs": 4085.0, - "Candidate Travel, Lodging, and Meals": 115.19, - "Staff/Spouse Travel, Lodging, and Meals": 224.42, - "Postage, Delivery and Messenger Services": 2704.45, - "Professional Services (Legal, Accounting)": 1200.0, - "T.V. or Cable Airtime and Production Costs": 39327.6, - "Information Technology Costs (Internet, E-mail)": 19393.37 + "CMP": 11065.73, + "CNS": 122092.03, + "FIL": 300.0, + "FND": 3648.97, + "LEG": 4430.25, + "LIT": 93872.21, + "MTG": 2606.94, + "OFC": 23828.46, + "PHO": 13919.92, + "POS": 2704.45, + "PRO": 1200.0, + "PRT": 763.04, + "RAD": 4085.0, + "RFD": 4995.0, + "TEL": 39327.6, + "TRC": 115.19, + "TRS": 224.42, + "WEB": 19393.37 }, "supporting_by_type": { - "IKD": 3676.7, - "MON": 20493.0, - "Independent Expenditure Supporting/Opposing Others": 245153.1 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "MON": 1500.0, - "Cable ads": 150000.0, - "Estimated cost of media production": 24766.0, - "Independent Expenditure Supporting/Opposing Others": 43450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1367270, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, diff --git a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json index f9216be..4ecf4e4 100644 --- a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json +++ b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json @@ -31,7 +31,8 @@ "Total": 63894.42, "Cand_ID": 1365454, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -46,18 +47,16 @@ }, "total_small_contributions": 2943.0, "expenditures_by_type": { - "Campaign Consultants": 4750.0, - "Meetings and Appearances": 55.86, - "Polling and Survey Research": 449.0, - "Campaign Paraphernalia/Misc.": 1217.88, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3383.36, - "Professional Services (Legal, Accounting)": 160.0, - "Information Technology Costs (Internet, E-mail)": 29.0 + "CMP": 1217.88, + "CNS": 4750.0, + "FIL": 300.0, + "LIT": 3383.36, + "MTG": 55.86, + "POL": 449.0, + "PRO": 160.0, + "WEB": 29.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 63894.42 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json index 3196d99..1a043d5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json +++ b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json @@ -38,9 +38,9 @@ }, "total_small_contributions": 0.0, "expenditures_by_type": { - "Print Ads": 1500.0, - "Candidate Filing/Ballot Fees": 300.0, - "Information Technology Costs (Internet, E-mail)": 507.0 + "FIL": 300.0, + "PRT": 1500.0, + "WEB": 507.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json index 80f4cc8..13a23b5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json +++ b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json @@ -31,7 +31,8 @@ "Total": 34066.01, "Cand_ID": 1365733, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,17 +48,15 @@ }, "total_small_contributions": 2324.0, "expenditures_by_type": { - "Phone Banks": 75.0, - "Office Expenses": 802.93, - "Fundraising Events": 508.0, - "Campaign Consultants": 8940.11, - "Meetings and Appearances": 58.0, - "Campaign Literature and Mailings": 6349.45, - "Information Technology Costs (Internet, E-mail)": 656.0 + "CNS": 8940.11, + "FND": 508.0, + "LIT": 6349.45, + "MTG": 58.0, + "OFC": 802.93, + "PHO": 75.0, + "WEB": 656.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34066.01 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json index 2a5a03a..ba6b8bd 100644 --- a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json @@ -43,20 +43,19 @@ }, "total_small_contributions": 8602.01, "expenditures_by_type": { - "Not Stated": 16872.35, - "Contribution": 1400.0, - "Office Expenses": 589.25, - "Fundraising Events": 1618.95, - "Polling and Survey Research": 3137.48, - "Campaign Paraphernalia/Misc.": 14274.08, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 21352.34, - "Staff/Spouse Travel, Lodging, and Meals": 248.06, - "Postage, Delivery and Messenger Services": 4662.11, - "Professional Services (Legal, Accounting)": 6361.08 + "": 16872.35, + "CMP": 14274.08, + "CTB": 1400.0, + "FIL": 300.0, + "FND": 1618.95, + "LIT": 21352.34, + "OFC": 589.25, + "POL": 3137.48, + "POS": 4662.11, + "PRO": 6361.08, + "TRS": 248.06 }, "supporting_by_type": { - "MON": 250.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json index b529488..4865c99 100644 --- a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json +++ b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json @@ -41,16 +41,16 @@ }, "total_small_contributions": 7175.0, "expenditures_by_type": { - "Print Ads": 6958.74, - "Office Expenses": 255.8, - "Fundraising Events": 100.0, - "Voter Registration": 250.0, - "Campaign Consultants": 32018.84, - "Campaign Workers' Salaries": 2768.0, - "Campaign Paraphernalia/Misc.": 20724.62, - "Campaign Literature and Mailings": 531.7, - "Professional Services (Legal, Accounting)": 500.0, - "Information Technology Costs (Internet, E-mail)": 500.0 + "CMP": 20724.62, + "CNS": 32018.84, + "FND": 100.0, + "LIT": 531.7, + "OFC": 255.8, + "PRO": 500.0, + "PRT": 6958.74, + "SAL": 2768.0, + "VOT": 250.0, + "WEB": 500.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json index a0ff9b7..520a2a4 100644 --- a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json index f7323d5..4cb1310 100644 --- a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json +++ b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json index 4fe9136..bb78f71 100644 --- a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json +++ b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json index 5b9dca2..c537ffb 100644 --- a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json +++ b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json @@ -41,17 +41,16 @@ }, "total_small_contributions": 393.0, "expenditures_by_type": { - "Not Stated": 500.0, - "Contribution": 26626.59, - "Fundraising Events": 3450.0, - "Campaign Consultants": 32098.97, - "Campaign Paraphernalia/Misc.": 820.44, - "Candidate Filing/Ballot Fees": 1727.0, - "Campaign Literature and Mailings": 1559.56, - "Independent Expenditure Supporting/Opposing Others": 1250.0 + "": 500.0, + "CMP": 820.44, + "CNS": 32098.97, + "CTB": 26626.59, + "FIL": 1727.0, + "FND": 3450.0, + "IND": 1250.0, + "LIT": 1559.56 }, "supporting_by_type": { - "MON": 700.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json index 81ac63a..6b44f8d 100644 --- a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json +++ b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json index b8a06d2..d248212 100644 --- a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json +++ b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json @@ -43,13 +43,13 @@ }, "total_small_contributions": 1707.0, "expenditures_by_type": { - "Office Expenses": 7808.74, - "Campaign Consultants": 52134.75, - "Meetings and Appearances": 835.15, - "Campaign Paraphernalia/Misc.": 6133.94, - "Campaign Literature and Mailings": 1056.73, - "Professional Services (Legal, Accounting)": 5575.0, - "Information Technology Costs (Internet, E-mail)": 1997.97 + "CMP": 6133.94, + "CNS": 52134.75, + "LIT": 1056.73, + "MTG": 835.15, + "OFC": 7808.74, + "PRO": 5575.0, + "WEB": 1997.97 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json index f86aca6..59de439 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -41,29 +41,27 @@ }, "total_small_contributions": 2987.0, "expenditures_by_type": { - "Not Stated": 2033.0, - "Office Expenses": 1900.34, - "Campaign Consultants": 5150.0, - "Campaign Paraphernalia/Misc.": 1167.25, - "Campaign Literature and Mailings": 1054.74, - "Professional Services (Legal, Accounting)": 3057.23 + "": 2033.0, + "CMP": 1167.25, + "CNS": 5150.0, + "LIT": 1054.74, + "OFC": 1900.34, + "PRO": 3057.23 }, "supporting_by_type": { - "IKD": 5924.0, - "MON": 1500.0 } }, "opposing_money": { "opposing_expenditures": 6987.5, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 6987.5 }, "opposition_list": [ { "Total": 6987.5, "Cand_ID": 1384926, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2016" } ] }, diff --git a/build/_data/candidates/oakland/2016-11-08/dan-kalb.json b/build/_data/candidates/oakland/2016-11-08/dan-kalb.json index c200f77..42600bd 100644 --- a/build/_data/candidates/oakland/2016-11-08/dan-kalb.json +++ b/build/_data/candidates/oakland/2016-11-08/dan-kalb.json @@ -43,46 +43,43 @@ }, "total_small_contributions": 12667.66, "expenditures_by_type": { - "Print Ads": 655.0, - "Not Stated": 2696.93, - "Contribution": 1035.0, - "Civic Donations": 2200.0, - "Fundraising Events": 12301.23, - "Campaign Consultants": 37769.07, - "Meetings and Appearances": 150.0, - "Campaign Workers' Salaries": 3500.0, - "Campaign Paraphernalia/Misc.": 22654.34, - "Candidate Filing/Ballot Fees": 50.0, - "Campaign Literature and Mailings": 36770.03, - "Professional Services (Legal, Accounting)": 11882.76, - "Information Technology Costs (Internet, E-mail)": 4275.01, - "Independent Expenditure Supporting/Opposing Others": 400.0, - "Transfer Between Committees of the Same Candidate/sponsor": 13900.0 + "": 2696.93, + "CMP": 22654.34, + "CNS": 37769.07, + "CTB": 1035.0, + "CVC": 2200.0, + "FIL": 50.0, + "FND": 12301.23, + "IND": 400.0, + "LIT": 36770.03, + "MTG": 150.0, + "PRO": 11882.76, + "PRT": 655.0, + "SAL": 3500.0, + "TSF": 13900.0, + "WEB": 4275.01 }, "supporting_by_type": { - "IKD": 300.0, - "MON": 6200.0, - "Mailer": 32697.0, - "Independent Expenditure Supporting/Opposing Others": 2810.32 } }, "opposing_money": { "opposing_expenditures": 13241.65, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 13241.65 }, "opposition_list": [ { "Total": 148.12, "Cand_ID": 1382408, "Filer_ID": "1342695", - "Filer_NamL": "East Bay Rental Housing Association PAC" + "Filer_NamL": "East Bay Rental Housing Association PAC", + "election_name": "oakland-2016" }, { "Total": 13093.53, "Cand_ID": 1382408, "Filer_ID": "943526", - "Filer_NamL": "Oakland Police Officer’s Association - Political Action Committee" + "Filer_NamL": "Oakland Police Officer’s Association - Political Action Committee", + "election_name": "oakland-2016" } ] }, diff --git a/build/_data/candidates/oakland/2016-11-08/donald-macleay.json b/build/_data/candidates/oakland/2016-11-08/donald-macleay.json index decf8f8..80d9b4f 100644 --- a/build/_data/candidates/oakland/2016-11-08/donald-macleay.json +++ b/build/_data/candidates/oakland/2016-11-08/donald-macleay.json @@ -41,19 +41,19 @@ }, "total_small_contributions": 839.5, "expenditures_by_type": { - "Not Stated": 809.02, - "Civic Donations": 261.86, - "Office Expenses": 1981.28, - "Fundraising Events": 147.81, - "Voter Registration": 156.15, - "Petition Circulating": 29.28, - "Meetings and Appearances": 24.86, - "Campaign Paraphernalia/Misc.": 1629.6, - "Candidate Filing/Ballot Fees": 440.0, - "Campaign Literature and Mailings": 541.33, - "Staff/Spouse Travel, Lodging, and Meals": 320.14, - "Professional Services (Legal, Accounting)": 372.42, - "Information Technology Costs (Internet, E-mail)": 100.0 + "": 809.02, + "CMP": 1629.6, + "CVC": 261.86, + "FIL": 440.0, + "FND": 147.81, + "LIT": 541.33, + "MTG": 24.86, + "OFC": 1981.28, + "PET": 29.28, + "PRO": 372.42, + "TRS": 320.14, + "VOT": 156.15, + "WEB": 100.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json b/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json index 727df5d..dccf218 100644 --- a/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json +++ b/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json @@ -38,11 +38,11 @@ }, "total_small_contributions": 0.0, "expenditures_by_type": { - "Print Ads": 500.0, - "Campaign Consultants": 1000.0, - "Campaign Workers' Salaries": 1000.0, - "Campaign Paraphernalia/Misc.": 1612.37, - "Campaign Literature and Mailings": 300.0 + "CMP": 1612.37, + "CNS": 1000.0, + "LIT": 300.0, + "PRT": 500.0, + "SAL": 1000.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2016-11-08/huber-trenado.json b/build/_data/candidates/oakland/2016-11-08/huber-trenado.json index 251c44b..ff0e264 100644 --- a/build/_data/candidates/oakland/2016-11-08/huber-trenado.json +++ b/build/_data/candidates/oakland/2016-11-08/huber-trenado.json @@ -31,7 +31,8 @@ "Total": 170197.74, "Cand_ID": 1386749, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2016" } ], "contributions_by_type": { @@ -47,19 +48,17 @@ }, "total_small_contributions": 1798.0, "expenditures_by_type": { - "Office Expenses": 123.83, - "Fundraising Events": 126.9, - "Voter Registration": 1600.0, - "Campaign Consultants": 1500.0, - "Campaign Paraphernalia/Misc.": 4633.94, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 10825.06, - "Professional Services (Legal, Accounting)": 2500.0, - "Information Technology Costs (Internet, E-mail)": 833.57 + "CMP": 4633.94, + "CNS": 1500.0, + "FIL": 300.0, + "FND": 126.9, + "LIT": 10825.06, + "OFC": 123.83, + "PRO": 2500.0, + "VOT": 1600.0, + "WEB": 833.57 }, "supporting_by_type": { - "MON": 1500.0, - "Independent Expenditure Supporting/Opposing Others": 175327.52 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2016-11-08/james-harris.json b/build/_data/candidates/oakland/2016-11-08/james-harris.json index 6337210..15b1cee 100644 --- a/build/_data/candidates/oakland/2016-11-08/james-harris.json +++ b/build/_data/candidates/oakland/2016-11-08/james-harris.json @@ -31,7 +31,8 @@ "Total": 193788.73, "Cand_ID": 1387803, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2016" } ], "contributions_by_type": { @@ -47 ```
mikeubell commented 9 months ago
Build diff from Commit 17a2f7c513ce43adf4a9292601a588dbc5937d9b: ```diff diff --git a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json index 74b122b..7a0a6f3 100644 --- a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json +++ b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json @@ -42,18 +42,18 @@ }, "total_small_contributions": 15898.0, "expenditures_by_type": { - "Print Ads": 250.0, - "Not Stated": 43849.56, - "Contribution": 4031.0, - "Civic Donations": 3600.0, - "Office Expenses": 19388.42, - "Fundraising Events": 3950.0, - "Campaign Consultants": 48600.0, - "Campaign Paraphernalia/Misc.": 2934.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 28569.2, - "Postage, Delivery and Messenger Services": 14435.8, - "Professional Services (Legal, Accounting)": 25847.23 + "": 43849.56, + "CMP": 2934.54, + "CNS": 48600.0, + "CTB": 4031.0, + "CVC": 3600.0, + "FIL": 300.0, + "FND": 3950.0, + "LIT": 28569.2, + "OFC": 19388.42, + "POS": 14435.8, + "PRO": 25847.23, + "PRT": 250.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json index 9080bb6..65711b6 100644 --- a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json +++ b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json @@ -21,51 +21,49 @@ "is_winner": null, "filer_id": 1368984, "supporting_money": { - "contributions_received": 30829.65, - "total_contributions": 30829.65, - "total_expenditures": 31569.65, - "total_loans_received": 0.0, + "contributions_received": 33744.95, + "total_contributions": 33744.95, + "total_expenditures": 29369.65, + "total_loans_received": 3500.0, "total_supporting_independent": 50.63, "support_list": [ { "Total": 50.63, "Cand_ID": 1368984, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { "Committee": 3500.0, - "Individual": 22167.4, - "Unitemized": 2042.97, - "Self Funding": 438.56, + "Individual": 21924.95, + "Unitemized": 1920.0, "Other (includes Businesses)": 2900.0 }, "contributions_by_origin": { "Out of State": 3349.95, - "Within Oakland": 7869.28, - "Within California": 17567.45 + "Within Oakland": 7650.0, + "Within California": 17325.0 }, - "total_small_contributions": 2142.97, + "total_small_contributions": 2020.0, "expenditures_by_type": { - "Print Ads": 1617.66, - "Not Stated": 876.49, - "Phone Banks": 356.52, - "Contribution": 2175.0, - "Office Expenses": 100.0, - "Fundraising Events": 158.49, - "Campaign Consultants": 5000.0, - "Campaign Workers' Salaries": 4197.84, - "Polling and Survey Research": 926.42, - "Campaign Paraphernalia/Misc.": 1736.64, - "Candidate Filing/Ballot Fees": 1640.0, - "Campaign Literature and Mailings": 5928.4, - "Postage, Delivery and Messenger Services": 5674.56, - "Professional Services (Legal, Accounting)": 150.0 + "": 876.49, + "CMP": 1736.64, + "CNS": 5000.0, + "CTB": 1175.0, + "FIL": 640.0, + "FND": 158.49, + "LIT": 5928.4, + "OFC": 100.0, + "PHO": 356.52, + "POL": 926.42, + "POS": 5674.56, + "PRO": 150.0, + "PRT": 1617.66, + "SAL": 4197.84 }, "supporting_by_type": { - "MON": 1000.0, - "Independent Expenditure Supporting/Opposing Others": 101.26 } }, "opposing_money": { @@ -76,7 +74,7 @@ ] }, - "total_contributions": 30829.65, - "total_expenditures": 31569.65, - "total_loans_received": 0.0 + "total_contributions": 33744.95, + "total_expenditures": 29369.65, + "total_loans_received": 3500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/andrew-park.json b/build/_data/candidates/oakland/2014-11-04/andrew-park.json index 50ee4d0..41ced30 100644 --- a/build/_data/candidates/oakland/2014-11-04/andrew-park.json +++ b/build/_data/candidates/oakland/2014-11-04/andrew-park.json @@ -43,18 +43,18 @@ }, "total_small_contributions": 9413.86, "expenditures_by_type": { - "Not Stated": 3746.73, - "Phone Banks": 4981.94, - "Civic Donations": 100.0, - "Office Expenses": 9271.69, - "Fundraising Events": 2226.94, - "Campaign Consultants": 15700.0, - "Meetings and Appearances": 247.82, - "Campaign Workers' Salaries": 1600.0, - "Polling and Survey Research": 2885.0, - "Campaign Paraphernalia/Misc.": 8241.76, - "Campaign Literature and Mailings": 32920.9, - "Information Technology Costs (Internet, E-mail)": 2646.38 + "": 3746.73, + "CMP": 8241.76, + "CNS": 15700.0, + "CVC": 100.0, + "FND": 2226.94, + "LIT": 32920.9, + "MTG": 247.82, + "OFC": 9271.69, + "PHO": 4981.94, + "POL": 2885.0, + "SAL": 1600.0, + "WEB": 2646.38 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json index efbd686..ae66d75 100644 --- a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json @@ -31,7 +31,8 @@ "Total": 89243.48, "Cand_ID": 1365610, "Filer_ID": "1294190", - "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO" + "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,27 +48,25 @@ }, "total_small_contributions": 6664.0, "expenditures_by_type": { - "Print Ads": 100.0, - "Not Stated": 5900.0, - "Phone Banks": 478.16, - "Contribution": 500.0, - "Civic Donations": 4300.0, - "Office Expenses": 8204.11, - "Fundraising Events": 2930.15, - "Campaign Consultants": 20000.0, - "Meetings and Appearances": 220.0, - "Campaign Workers' Salaries": 9750.0, - "Campaign Paraphernalia/Misc.": 5194.28, - "Candidate Filing/Ballot Fees": 600.0, - "Campaign Literature and Mailings": 62478.8, - "Staff/Spouse Travel, Lodging, and Meals": 928.62, - "Postage, Delivery and Messenger Services": 147.0, - "Professional Services (Legal, Accounting)": 6049.1, - "Information Technology Costs (Internet, E-mail)": 5853.67 + "": 5900.0, + "CMP": 5194.28, + "CNS": 20000.0, + "CTB": 500.0, + "CVC": 4300.0, + "FIL": 600.0, + "FND": 2930.15, + "LIT": 62478.8, + "MTG": 220.0, + "OFC": 8204.11, + "PHO": 478.16, + "POS": 147.0, + "PRO": 6049.1, + "PRT": 100.0, + "SAL": 9750.0, + "TRS": 928.62, + "WEB": 5853.67 }, "supporting_by_type": { - "MON": 700.0, - "Independent Expenditure Supporting/Opposing Others": 89243.48 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json index 7a56e35..238d1d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -42,19 +42,18 @@ }, "total_small_contributions": 275.0, "expenditures_by_type": { - "Print Ads": 9483.0, - "Phone Banks": 1625.47, - "Office Expenses": 589.98, - "Campaign Consultants": 11447.9, - "Meetings and Appearances": 150.0, - "Campaign Paraphernalia/Misc.": 2520.62, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 37284.94, - "Professional Services (Legal, Accounting)": 1880.0, - "Information Technology Costs (Internet, E-mail)": 3500.0 + "CMP": 2520.62, + "CNS": 11447.9, + "FIL": 500.0, + "LIT": 37284.94, + "MTG": 150.0, + "OFC": 589.98, + "PHO": 1625.47, + "PRO": 1880.0, + "PRT": 9483.0, + "WEB": 3500.0 }, "supporting_by_type": { - "MON": 3800.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json index 719aeb8..b0695d3 100644 --- a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json +++ b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1357609, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 10446.26, "Cand_ID": 1357609, "Filer_ID": "983545", - "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce" + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,28 +56,26 @@ }, "total_small_contributions": 7354.23, "expenditures_by_type": { - "Print Ads": 1500.0, - "Not Stated": 73215.79, - "Phone Banks": 8729.67, - "Civic Donations": 800.0, - "Office Expenses": 24408.3, - "Fundraising Events": 12249.2, - "Campaign Consultants": 30000.0, - "Meetings and Appearances": 6512.87, - "Polling and Survey Research": 20000.0, - "Campaign Paraphernalia/Misc.": 62144.3, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 78185.99, - "Candidate Travel, Lodging, and Meals": 7.99, - "Staff/Spouse Travel, Lodging, and Meals": 2620.56, - "Postage, Delivery and Messenger Services": 12617.84, - "Professional Services (Legal, Accounting)": 21832.53, - "T.V. or Cable Airtime and Production Costs": 11520.9, - "Information Technology Costs (Internet, E-mail)": 15968.27 + "": 73215.79, + "CMP": 62144.3, + "CNS": 30000.0, + "CVC": 800.0, + "FIL": 300.0, + "FND": 12249.2, + "LIT": 78185.99, + "MTG": 6512.87, + "OFC": 24408.3, + "PHO": 8729.67, + "POL": 20000.0, + "POS": 12617.84, + "PRO": 21832.53, + "PRT": 1500.0, + "TEL": 11520.9, + "TRC": 7.99, + "TRS": 2620.56, + "WEB": 15968.27 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 18896.26 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/charles-williams.json b/build/_data/candidates/oakland/2014-11-04/charles-williams.json index 0610dc9..b94cacf 100644 --- a/build/_data/candidates/oakland/2014-11-04/charles-williams.json +++ b/build/_data/candidates/oakland/2014-11-04/charles-williams.json @@ -42,15 +42,15 @@ }, "total_small_contributions": 35.0, "expenditures_by_type": { - "Print Ads": 960.0, - "Not Stated": 1050.0, - "Meetings and Appearances": 2651.0, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3946.0, - "Radio Airtime and Production Costs": 1860.0, - "Staff/Spouse Travel, Lodging, and Meals": 500.0, - "Postage, Delivery and Messenger Services": 1200.0, - "T.V. or Cable Airtime and Production Costs": 3750.0 + "": 1050.0, + "FIL": 300.0, + "LIT": 3946.0, + "MTG": 2651.0, + "POS": 1200.0, + "PRT": 960.0, + "RAD": 1860.0, + "TEL": 3750.0, + "TRS": 500.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json index 080c389..f178710 100644 --- a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json +++ b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json @@ -42,16 +42,16 @@ }, "total_small_contributions": 2998.9, "expenditures_by_type": { - "Not Stated": 1365.45, - "Phone Banks": 1238.56, - "Office Expenses": 190.0, - "Fundraising Events": 914.07, - "Campaign Paraphernalia/Misc.": 3543.88, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 9703.58, - "Postage, Delivery and Messenger Services": 182.5, - "Professional Services (Legal, Accounting)": 1116.07, - "Information Technology Costs (Internet, E-mail)": 145.0 + "": 1365.45, + "CMP": 3543.88, + "FIL": 250.0, + "FND": 914.07, + "LIT": 9703.58, + "OFC": 190.0, + "PHO": 1238.56, + "POS": 182.5, + "PRO": 1116.07, + "WEB": 145.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json index 0084445..94f90a3 100644 --- a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json +++ b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json @@ -43,22 +43,21 @@ }, "total_small_contributions": 12393.89, "expenditures_by_type": { - "Print Ads": 1452.5, - "Office Expenses": 14228.94, - "Campaign Consultants": 24000.0, - "Meetings and Appearances": 1231.63, - "Campaign Workers' Salaries": 53774.57, - "Polling and Survey Research": 28000.0, - "Campaign Paraphernalia/Misc.": 2364.69, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12067.08, - "Staff/Spouse Travel, Lodging, and Meals": 2236.23, - "Postage, Delivery and Messenger Services": 2986.53, - "Professional Services (Legal, Accounting)": 9488.12, - "Information Technology Costs (Internet, E-mail)": 11086.68 + "CMP": 2364.69, + "CNS": 24000.0, + "FIL": 300.0, + "LIT": 12067.08, + "MTG": 1231.63, + "OFC": 14228.94, + "POL": 28000.0, + "POS": 2986.53, + "PRO": 9488.12, + "PRT": 1452.5, + "SAL": 53774.57, + "TRS": 2236.23, + "WEB": 11086.68 }, "supporting_by_type": { - "MON": 2200.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json index 29f3e0a..7334c54 100644 --- a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json +++ b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json @@ -42,22 +42,22 @@ }, "total_small_contributions": 7607.23, "expenditures_by_type": { - "Print Ads": 6205.0, - "Not Stated": 2090.45, - "Phone Banks": 1247.0, - "Office Expenses": 8348.23, - "Fundraising Events": 7746.0, - "Campaign Consultants": 154399.76, - "Meetings and Appearances": 394.0, - "Campaign Workers' Salaries": 60300.0, - "Polling and Survey Research": 11187.47, - "Campaign Paraphernalia/Misc.": 15144.71, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 934.73, - "Staff/Spouse Travel, Lodging, and Meals": 2659.35, - "Postage, Delivery and Messenger Services": 5964.21, - "Information Technology Costs (Internet, E-mail)": 1699.05, - "Transfer Between Committees of the Same Candidate/sponsor": 2.99 + "": 2090.45, + "CMP": 15144.71, + "CNS": 154399.76, + "FIL": 300.0, + "FND": 7746.0, + "LIT": 934.73, + "MTG": 394.0, + "OFC": 8348.23, + "PHO": 1247.0, + "POL": 11187.47, + "POS": 5964.21, + "PRT": 6205.0, + "SAL": 60300.0, + "TRS": 2659.35, + "TSF": 2.99, + "WEB": 1699.05 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/dana-king.json b/build/_data/candidates/oakland/2014-11-04/dana-king.json index fbdd7ce..c2c3d68 100644 --- a/build/_data/candidates/oakland/2014-11-04/dana-king.json +++ b/build/_data/candidates/oakland/2014-11-04/dana-king.json @@ -31,7 +31,8 @@ "Total": 429.45, "Cand_ID": 1364029, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,21 +48,19 @@ }, "total_small_contributions": 5651.98, "expenditures_by_type": { - "Not Stated": 22060.79, - "Civic Donations": 8726.94, - "Office Expenses": 5951.14, - "Fundraising Events": 148.98, - "Campaign Consultants": 29282.98, - "Campaign Workers' Salaries": 6550.0, - "Campaign Paraphernalia/Misc.": 12098.77, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 20507.12, - "Candidate Travel, Lodging, and Meals": 1423.03, - "Postage, Delivery and Messenger Services": 2040.85 + "": 22060.79, + "CMP": 12098.77, + "CNS": 29282.98, + "CVC": 8726.94, + "FIL": 250.0, + "FND": 148.98, + "LIT": 20507.12, + "OFC": 5951.14, + "POS": 2040.85, + "SAL": 6550.0, + "TRC": 1423.03 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 744.45 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json index ea62373..de0c2f2 100644 --- a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json +++ b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json @@ -21,96 +21,60 @@ "is_winner": null, "filer_id": 1236617, "supporting_money": { - "contributions_received": 144254.0, - "total_contributions": 144254.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0, - "total_supporting_independent": 23600.06, + "contributions_received": 38429.0, + "total_contributions": 38429.0, + "total_expenditures": 62449.07, + "total_loans_received": -2500.0, + "total_supporting_independent": 429.45, "support_list": [ - { - "Total": 22999.0, - "Cand_ID": 1236617, - "Filer_ID": "1390351", - "Filer_NamL": "East Bay Working Families" - }, { "Total": 429.45, "Cand_ID": 1236617, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" - }, - { - "Total": 171.61, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { - "Committee": 10650.0, - "Individual": 125733.0, - "Unitemized": 2221.0, - "Other (includes Businesses)": 8050.0 + "Committee": 2400.0, + "Individual": 37620.0, + "Unitemized": 409.0, + "Other (includes Businesses)": 500.0 }, "contributions_by_origin": { - "Out of State": 2300.0, - "Within Oakland": 79674.0, - "Within California": 62459.0 + "Within Oakland": 22920.0, + "Within California": 17600.0 }, - "total_small_contributions": 3144.0, + "total_small_contributions": 1332.0, "expenditures_by_type": { - "Print Ads": 1600.0, - "Not Stated": 9088.93, - "Phone Banks": 6950.0, - "Contribution": 1400.0, - "Legal Defense": 1000.0, - "Civic Donations": 8241.74, - "Office Expenses": 17027.58, - "Fundraising Events": 5327.38, - "Campaign Consultants": 40300.0, - "Member Communications": 658.19, - "Meetings and Appearances": 2307.7, - "Campaign Workers' Salaries": 6300.0, - "Campaign Paraphernalia/Misc.": 6590.63, - "Candidate Filing/Ballot Fees": 1250.0, - "Campaign Literature and Mailings": 44808.23, - "Candidate Travel, Lodging, and Meals": 2462.04, - "Postage, Delivery and Messenger Services": 16472.78, - "Professional Services (Legal, Accounting)": 6888.01, - "T.V. or Cable Airtime and Production Costs": 1000.0, - "Information Technology Costs (Internet, E-mail)": 7366.31 + "": 7453.93, + "CMP": 1608.42, + "CNS": 6000.0, + "CTB": 1400.0, + "CVC": 2200.0, + "FIL": 250.0, + "FND": 4045.45, + "LEG": 1000.0, + "LIT": 22934.34, + "MBR": 658.19, + "OFC": 4451.4, + "POS": 102.0, + "PRT": 1600.0, + "SAL": 6300.0, + "TRC": 1182.61 }, "supporting_by_type": { - "MON": 10800.0, - "Mailer": 14542.0, - "Doorhanger": 17656.0, - "Phone Banking & Field Campaign": 13800.0, - "Independent Expenditure Supporting/Opposing Others": 1832.12 } }, "opposing_money": { - "opposing_expenditures": 160145.67, + "opposing_expenditures": 0.0, "opposing_by_type": { - "IKD": 14908.0, - "MON": 193000.0, - "Independent Expenditure Supporting/Opposing Others": 320291.34 }, "opposition_list": [ - { - "Total": 31230.49, - "Cand_ID": 1236617, - "Filer_ID": "1413388", - "Filer_NamL": "Citizens for a United Oakland, Opposing Desley Brooks for City Council" - }, - { - "Total": 128915.18, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" - } + ] }, - "total_contributions": 144254.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0 + "total_contributions": 38429.0, + "total_expenditures": 62449.07, + "total_loans_received": -2500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json index 78b428f..a510214 100644 --- a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json +++ b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/james-moore.json b/build/_data/candidates/oakland/2014-11-04/james-moore.json index 8573e03..b3926d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/james-moore.json +++ b/build/_data/candidates/oakland/2014-11-04/james-moore.json @@ -41,11 +41,11 @@ }, "total_small_contributions": 1366.0, "expenditures_by_type": { - "Office Expenses": 800.0, - "Fundraising Events": 250.0, - "Campaign Paraphernalia/Misc.": 746.33, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 5799.0 + "CMP": 746.33, + "FIL": 250.0, + "FND": 250.0, + "LIT": 5799.0, + "OFC": 800.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json index 582f7ac..d7db0ee 100644 --- a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json +++ b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/jean-quan.json b/build/_data/candidates/oakland/2014-11-04/jean-quan.json index dad15c2..9f9d78f 100644 --- a/build/_data/candidates/oakland/2014-11-04/jean-quan.json +++ b/build/_data/candidates/oakland/2014-11-04/jean-quan.json @@ -42,30 +42,29 @@ }, "total_small_contributions": 16686.8, "expenditures_by_type": { - "Not Stated": 22401.95, - "Office Expenses": 1500.0, - "Fundraising Events": 5738.75, - "Campaign Consultants": 56229.72, - "Polling and Survey Research": 23286.0, - "Campaign Paraphernalia/Misc.": 9373.41, - "Campaign Literature and Mailings": 237328.31, - "Information Technology Costs (Internet, E-mail)": 3400.0 + "": 22401.95, + "CMP": 9373.41, + "CNS": 56229.72, + "FND": 5738.75, + "LIT": 237328.31, + "OFC": 1500.0, + "POL": 23286.0, + "WEB": 3400.0 }, "supporting_by_type": { - "MON": 1400.0 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 8450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1354678, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, diff --git a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json index b77a84b..4e48c36 100644 --- a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json +++ b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json @@ -42,20 +42,19 @@ }, "total_small_contributions": 2041.0, "expenditures_by_type": { - "Print Ads": 5670.0, - "Not Stated": 2312.19, - "Civic Donations": 500.0, - "Campaign Consultants": 16225.78, - "Campaign Paraphernalia/Misc.": 29757.02, - "Candidate Filing/Ballot Fees": 650.0, - "Campaign Literature and Mailings": 64678.24, - "Candidate Travel, Lodging, and Meals": 374.19, - "Postage, Delivery and Messenger Services": 364.28, - "Professional Services (Legal, Accounting)": 1500.0, - "Information Technology Costs (Internet, E-mail)": 1302.07 + "": 2312.19, + "CMP": 29757.02, + "CNS": 16225.78, + "CVC": 500.0, + "FIL": 650.0, + "LIT": 64678.24, + "POS": 364.28, + "PRO": 1500.0, + "PRT": 5670.0, + "TRC": 374.19, + "WEB": 1302.07 }, "supporting_by_type": { - "MON": 2800.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json index 336a697..6b76fe6 100644 --- a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json +++ b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json @@ -31,7 +31,8 @@ "Total": 8450.0, "Cand_ID": 1359017, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,25 +48,23 @@ }, "total_small_contributions": 10042.0, "expenditures_by_type": { - "Print Ads": 420.0, - "Not Stated": 1143.76, - "Phone Banks": 1086.75, - "Civic Donations": 726.75, - "Office Expenses": 18758.01, - "Fundraising Events": 589.63, - "Campaign Consultants": 84120.0, - "Meetings and Appearances": 105.0, - "Campaign Paraphernalia/Misc.": 6305.45, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 59144.47, - "Postage, Delivery and Messenger Services": 34371.2, - "Professional Services (Legal, Accounting)": 3382.76, - "T.V. or Cable Airtime and Production Costs": 28884.7, - "Information Technology Costs (Internet, E-mail)": 5850.13 + "": 1143.76, + "CMP": 6305.45, + "CNS": 84120.0, + "CVC": 726.75, + "FIL": 500.0, + "FND": 589.63, + "LIT": 59144.47, + "MTG": 105.0, + "OFC": 18758.01, + "PHO": 1086.75, + "POS": 34371.2, + "PRO": 3382.76, + "PRT": 420.0, + "TEL": 28884.7, + "WEB": 5850.13 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 8450.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/karl-debro.json b/build/_data/candidates/oakland/2014-11-04/karl-debro.json index 38290ed..8447b4c 100644 --- a/build/_data/candidates/oakland/2014-11-04/karl-debro.json +++ b/build/_data/candidates/oakland/2014-11-04/karl-debro.json @@ -42,11 +42,11 @@ }, "total_small_contributions": 974.0, "expenditures_by_type": { - "Not Stated": 80.0, - "Campaign Consultants": 2685.0, - "Campaign Paraphernalia/Misc.": 488.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12063.65 + "": 80.0, + "CMP": 488.54, + "CNS": 2685.0, + "FIL": 300.0, + "LIT": 12063.65 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/ken-houston.json b/build/_data/candidates/oakland/2014-11-04/ken-houston.json index c26deea..d61c865 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-houston.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-houston.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json index f5b458e..bd49605 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json index 3056518..2b6ab32 100644 --- a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json +++ b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json @@ -43,19 +43,19 @@ }, "total_small_contributions": 5597.0, "expenditures_by_type": { - "Not Stated": 19750.55, - "Office Expenses": 920.95, - "Fundraising Events": 1952.4, - "Campaign Consultants": 22085.96, - "Petition Circulating": 795.47, - "Meetings and Appearances": 1205.64, - "Campaign Workers' Salaries": 3600.0, - "Campaign Paraphernalia/Misc.": 23736.21, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 114.18, - "Candidate Travel, Lodging, and Meals": 1000.0, - "Postage, Delivery and Messenger Services": 98.0, - "Professional Services (Legal, Accounting)": 2588.19 + "": 19750.55, + "CMP": 23736.21, + "CNS": 22085.96, + "FIL": 300.0, + "FND": 1952.4, + "LIT": 114.18, + "MTG": 1205.64, + "OFC": 920.95, + "PET": 795.47, + "POS": 98.0, + "PRO": 2588.19, + "SAL": 3600.0, + "TRC": 1000.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/len-raphael.json b/build/_data/candidates/oakland/2014-11-04/len-raphael.json index 536c8f8..08fcbfe 100644 --- a/build/_data/candidates/oakland/2014-11-04/len-raphael.json +++ b/build/_data/candidates/oakland/2014-11-04/len-raphael.json @@ -41,14 +41,14 @@ }, "total_small_contributions": 345.58, "expenditures_by_type": { - "Office Expenses": 1106.52, - "Meetings and Appearances": 100.0, - "Campaign Paraphernalia/Misc.": 2036.53, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 32854.91, - "Candidate Travel, Lodging, and Meals": 478.21, - "Staff/Spouse Travel, Lodging, and Meals": 400.56, - "Information Technology Costs (Internet, E-mail)": 3177.99 + "CMP": 2036.53, + "FIL": 300.0, + "LIT": 32854.91, + "MTG": 100.0, + "OFC": 1106.52, + "TRC": 478.21, + "TRS": 400.56, + "WEB": 3177.99 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json index 159d41b..7301498 100644 --- a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json +++ b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1362261, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1362261, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -53,29 +55,26 @@ }, "total_small_contributions": 15141.66, "expenditures_by_type": { - "Print Ads": 4900.0, - "Not Stated": 26687.73, - "Phone Banks": 5361.23, - "Contribution": 9400.0, - "Civic Donations": 14389.46, - "Office Expenses": 47081.01, - "Fundraising Events": 12043.26, - "Campaign Consultants": 193021.15, - "Returned Contributions": 2295.0, - "Meetings and Appearances": 53167.82, - "Polling and Survey Research": 9000.0, - "Campaign Paraphernalia/Misc.": 5387.66, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 43791.4, - "Postage, Delivery and Messenger Services": 46317.46, - "Professional Services (Legal, Accounting)": 33164.83, - "T.V. or Cable Airtime and Production Costs": 63432.0, - "Information Technology Costs (Internet, E-mail)": 11499.42 + "": 26687.73, + "CMP": 5387.66, + "CNS": 193021.15, + "CTB": 9400.0, + "CVC": 14389.46, + "FIL": 300.0, + "FND": 12043.26, + "LIT": 43791.4, + "MTG": 53167.82, + "OFC": 47081.01, + "PHO": 5361.23, + "POL": 9000.0, + "POS": 46317.46, + "PRO": 33164.83, + "PRT": 4900.0, + "RFD": 2295.0, + "TEL": 63432.0, + "WEB": 11499.42 }, "supporting_by_type": { - "MON": 5700.0, - "BILLBOARDS 10/18 - 11/6": 7672.0, - "Independent Expenditure Supporting/Opposing Others": 9824.45 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json index 43fc85d..3cc3576 100644 --- a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json +++ b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json @@ -42,14 +42,14 @@ }, "total_small_contributions": 6539.0, "expenditures_by_type": { - "Not Stated": 18947.11, - "Office Expenses": 991.96, - "Meetings and Appearances": 1291.03, - "Campaign Paraphernalia/Misc.": 422.25, - "Candidate Filing/Ballot Fees": 119.0, - "Campaign Literature and Mailings": 10293.5, - "Candidate Travel, Lodging, and Meals": 228.87, - "Information Technology Costs (Internet, E-mail)": 1300.0 + "": 18947.11, + "CMP": 422.25, + "FIL": 119.0, + "LIT": 10293.5, + "MTG": 1291.03, + "OFC": 991.96, + "TRC": 228.87, + "WEB": 1300.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json index 81d68a4..0a08384 100644 --- a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json +++ b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/nina-senn.json b/build/_data/candidates/oakland/2014-11-04/nina-senn.json index 47c479e..e28bbe0 100644 --- a/build/_data/candidates/oakland/2014-11-04/nina-senn.json +++ b/build/_data/candidates/oakland/2014-11-04/nina-senn.json @@ -31,7 +31,8 @@ "Total": 34118.55, "Cand_ID": 1368416, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -48,21 +49,19 @@ }, "total_small_contributions": 1483.82, "expenditures_by_type": { - "Not Stated": 2705.87, - "Contribution": 118.48, - "Fundraising Events": 320.0, - "Campaign Consultants": 8000.0, - "Polling and Survey Research": 1592.8, - "Campaign Paraphernalia/Misc.": 1751.75, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 6344.47, - "Postage, Delivery and Messenger Services": 1538.95, - "T.V. or Cable Airtime and Production Costs": 830.0, - "Information Technology Costs (Internet, E-mail)": 57.0 + "": 2705.87, + "CMP": 1751.75, + "CNS": 8000.0, + "CTB": 118.48, + "FIL": 300.0, + "FND": 320.0, + "LIT": 6344.47, + "POL": 1592.8, + "POS": 1538.95, + "TEL": 830.0, + "WEB": 57.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34118.55 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json index dcbb384..1289df4 100644 --- a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json +++ b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/paul-lim.json b/build/_data/candidates/oakland/2014-11-04/paul-lim.json index 15665bb..86d91d9 100644 --- a/build/_data/candidates/oakland/2014-11-04/paul-lim.json +++ b/build/_data/candidates/oakland/2014-11-04/paul-lim.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/peter-liu.json b/build/_data/candidates/oakland/2014-11-04/peter-liu.json index 0ae6378..abdec16 100644 --- a/build/_data/candidates/oakland/2014-11-04/peter-liu.json +++ b/build/_data/candidates/oakland/2014-11-04/peter-liu.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json index 5da7a23..dcf7d34 100644 --- a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json @@ -31,13 +31,15 @@ "Total": 10000.0, "Cand_ID": 1367270, "Filer_ID": "COAK-1538", - "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014" + "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1367270, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,45 +56,39 @@ }, "total_small_contributions": 18274.0, "expenditures_by_type": { - "Print Ads": 763.04, - "Phone Banks": 13919.92, - "Legal Defense": 4430.25, - "Office Expenses": 23828.46, - "Fundraising Events": 3648.97, - "Campaign Consultants": 122092.03, - "Returned Contributions": 4995.0, - "Meetings and Appearances": 2606.94, - "Campaign Paraphernalia/Misc.": 11065.73, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 93872.21, - "Radio Airtime and Production Costs": 4085.0, - "Candidate Travel, Lodging, and Meals": 115.19, - "Staff/Spouse Travel, Lodging, and Meals": 224.42, - "Postage, Delivery and Messenger Services": 2704.45, - "Professional Services (Legal, Accounting)": 1200.0, - "T.V. or Cable Airtime and Production Costs": 39327.6, - "Information Technology Costs (Internet, E-mail)": 19393.37 + "CMP": 11065.73, + "CNS": 122092.03, + "FIL": 300.0, + "FND": 3648.97, + "LEG": 4430.25, + "LIT": 93872.21, + "MTG": 2606.94, + "OFC": 23828.46, + "PHO": 13919.92, + "POS": 2704.45, + "PRO": 1200.0, + "PRT": 763.04, + "RAD": 4085.0, + "RFD": 4995.0, + "TEL": 39327.6, + "TRC": 115.19, + "TRS": 224.42, + "WEB": 19393.37 }, "supporting_by_type": { - "IKD": 3676.7, - "MON": 20493.0, - "Independent Expenditure Supporting/Opposing Others": 245153.1 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "MON": 1500.0, - "Cable ads": 150000.0, - "Estimated cost of media production": 24766.0, - "Independent Expenditure Supporting/Opposing Others": 43450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1367270, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, diff --git a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json index f9216be..4ecf4e4 100644 --- a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json +++ b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json @@ -31,7 +31,8 @@ "Total": 63894.42, "Cand_ID": 1365454, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -46,18 +47,16 @@ }, "total_small_contributions": 2943.0, "expenditures_by_type": { - "Campaign Consultants": 4750.0, - "Meetings and Appearances": 55.86, - "Polling and Survey Research": 449.0, - "Campaign Paraphernalia/Misc.": 1217.88, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3383.36, - "Professional Services (Legal, Accounting)": 160.0, - "Information Technology Costs (Internet, E-mail)": 29.0 + "CMP": 1217.88, + "CNS": 4750.0, + "FIL": 300.0, + "LIT": 3383.36, + "MTG": 55.86, + "POL": 449.0, + "PRO": 160.0, + "WEB": 29.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 63894.42 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json index 3196d99..1a043d5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json +++ b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json @@ -38,9 +38,9 @@ }, "total_small_contributions": 0.0, "expenditures_by_type": { - "Print Ads": 1500.0, - "Candidate Filing/Ballot Fees": 300.0, - "Information Technology Costs (Internet, E-mail)": 507.0 + "FIL": 300.0, + "PRT": 1500.0, + "WEB": 507.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json index 80f4cc8..13a23b5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json +++ b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json @@ -31,7 +31,8 @@ "Total": 34066.01, "Cand_ID": 1365733, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,17 +48,15 @@ }, "total_small_contributions": 2324.0, "expenditures_by_type": { - "Phone Banks": 75.0, - "Office Expenses": 802.93, - "Fundraising Events": 508.0, - "Campaign Consultants": 8940.11, - "Meetings and Appearances": 58.0, - "Campaign Literature and Mailings": 6349.45, - "Information Technology Costs (Internet, E-mail)": 656.0 + "CNS": 8940.11, + "FND": 508.0, + "LIT": 6349.45, + "MTG": 58.0, + "OFC": 802.93, + "PHO": 75.0, + "WEB": 656.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34066.01 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json index 2a5a03a..ba6b8bd 100644 --- a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json @@ -43,20 +43,19 @@ }, "total_small_contributions": 8602.01, "expenditures_by_type": { - "Not Stated": 16872.35, - "Contribution": 1400.0, - "Office Expenses": 589.25, - "Fundraising Events": 1618.95, - "Polling and Survey Research": 3137.48, - "Campaign Paraphernalia/Misc.": 14274.08, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 21352.34, - "Staff/Spouse Travel, Lodging, and Meals": 248.06, - "Postage, Delivery and Messenger Services": 4662.11, - "Professional Services (Legal, Accounting)": 6361.08 + "": 16872.35, + "CMP": 14274.08, + "CTB": 1400.0, + "FIL": 300.0, + "FND": 1618.95, + "LIT": 21352.34, + "OFC": 589.25, + "POL": 3137.48, + "POS": 4662.11, + "PRO": 6361.08, + "TRS": 248.06 }, "supporting_by_type": { - "MON": 250.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json index b529488..4865c99 100644 --- a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json +++ b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json @@ -41,16 +41,16 @@ }, "total_small_contributions": 7175.0, "expenditures_by_type": { - "Print Ads": 6958.74, - "Office Expenses": 255.8, - "Fundraising Events": 100.0, - "Voter Registration": 250.0, - "Campaign Consultants": 32018.84, - "Campaign Workers' Salaries": 2768.0, - "Campaign Paraphernalia/Misc.": 20724.62, - "Campaign Literature and Mailings": 531.7, - "Professional Services (Legal, Accounting)": 500.0, - "Information Technology Costs (Internet, E-mail)": 500.0 + "CMP": 20724.62, + "CNS": 32018.84, + "FND": 100.0, + "LIT": 531.7, + "OFC": 255.8, + "PRO": 500.0, + "PRT": 6958.74, + "SAL": 2768.0, + "VOT": 250.0, + "WEB": 500.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json index a0ff9b7..520a2a4 100644 --- a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json index f7323d5..4cb1310 100644 --- a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json +++ b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json index 4fe9136..bb78f71 100644 --- a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json +++ b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json index 5b9dca2..c537ffb 100644 --- a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json +++ b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json @@ -41,17 +41,16 @@ }, "total_small_contributions": 393.0, "expenditures_by_type": { - "Not Stated": 500.0, - "Contribution": 26626.59, - "Fundraising Events": 3450.0, - "Campaign Consultants": 32098.97, - "Campaign Paraphernalia/Misc.": 820.44, - "Candidate Filing/Ballot Fees": 1727.0, - "Campaign Literature and Mailings": 1559.56, - "Independent Expenditure Supporting/Opposing Others": 1250.0 + "": 500.0, + "CMP": 820.44, + "CNS": 32098.97, + "CTB": 26626.59, + "FIL": 1727.0, + "FND": 3450.0, + "IND": 1250.0, + "LIT": 1559.56 }, "supporting_by_type": { - "MON": 700.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json index 81ac63a..6b44f8d 100644 --- a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json +++ b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json index b8a06d2..d248212 100644 --- a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json +++ b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json @@ -43,13 +43,13 @@ }, "total_small_contributions": 1707.0, "expenditures_by_type": { - "Office Expenses": 7808.74, - "Campaign Consultants": 52134.75, - "Meetings and Appearances": 835.15, - "Campaign Paraphernalia/Misc.": 6133.94, - "Campaign Literature and Mailings": 1056.73, - "Professional Services (Legal, Accounting)": 5575.0, - "Information Technology Costs (Internet, E-mail)": 1997.97 + "CMP": 6133.94, + "CNS": 52134.75, + "LIT": 1056.73, + "MTG": 835.15, + "OFC": 7808.74, + "PRO": 5575.0, + "WEB": 1997.97 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json index f86aca6..59de439 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -41,29 +41,27 @@ }, "total_small_contributions": 2987.0, "expenditures_by_type": { - "Not Stated": 2033.0, - "Office Expenses": 1900.34, - "Campaign Consultants": 5150.0, - "Campaign Paraphernalia/Misc.": 1167.25, - "Campaign Literature and Mailings": 1054.74, - "Professional Services (Legal, Accounting)": 3057.23 + "": 2033.0, + "CMP": 1167.25, + "CNS": 5150.0, + "LIT": 1054.74, + "OFC": 1900.34, + "PRO": 3057.23 }, "supporting_by_type": { - "IKD": 5924.0, - "MON": 1500.0 } }, "opposing_money": { "opposing_expenditures": 6987.5, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 6987.5 }, "opposition_list": [ { "Total": 6987.5, "Cand_ID": 1384926, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2016" } ] }, diff --git a/build/_data/candidates/oakland/2016-11-08/dan-kalb.json b/build/_data/candidates/oakland/2016-11-08/dan-kalb.json index c200f77..42600bd 100644 --- a/build/_data/candidates/oakland/2016-11-08/dan-kalb.json +++ b/build/_data/candidates/oakland/2016-11-08/dan-kalb.json @@ -43,46 +43,43 @@ }, "total_small_contributions": 12667.66, "expenditures_by_type": { - "Print Ads": 655.0, - "Not Stated": 2696.93, - "Contribution": 1035.0, - "Civic Donations": 2200.0, - "Fundraising Events": 12301.23, - "Campaign Consultants": 37769.07, - "Meetings and Appearances": 150.0, - "Campaign Workers' Salaries": 3500.0, - "Campaign Paraphernalia/Misc.": 22654.34, - "Candidate Filing/Ballot Fees": 50.0, - "Campaign Literature and Mailings": 36770.03, - "Professional Services (Legal, Accounting)": 11882.76, - "Information Technology Costs (Internet, E-mail)": 4275.01, - "Independent Expenditure Supporting/Opposing Others": 400.0, - "Transfer Between Committees of the Same Candidate/sponsor": 13900.0 + "": 2696.93, + "CMP": 22654.34, + "CNS": 37769.07, + "CTB": 1035.0, + "CVC": 2200.0, + "FIL": 50.0, + "FND": 12301.23, + "IND": 400.0, + "LIT": 36770.03, + "MTG": 150.0, + "PRO": 11882.76, + "PRT": 655.0, + "SAL": 3500.0, + "TSF": 13900.0, + "WEB": 4275.01 }, "supporting_by_type": { - "IKD": 300.0, - "MON": 6200.0, - "Mailer": 32697.0, - "Independent Expenditure Supporting/Opposing Others": 2810.32 } }, "opposing_money": { "opposing_expenditures": 13241.65, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 13241.65 }, "opposition_list": [ { "Total": 148.12, "Cand_ID": 1382408, "Filer_ID": "1342695", - "Filer_NamL": "East Bay Rental Housing Association PAC" + "Filer_NamL": "East Bay Rental Housing Association PAC", + "election_name": "oakland-2016" }, { "Total": 13093.53, "Cand_ID": 1382408, "Filer_ID": "943526", - "Filer_NamL": "Oakland Police Officer’s Association - Political Action Committee" + "Filer_NamL": "Oakland Police Officer’s Association - Political Action Committee", + "election_name": "oakland-2016" } ] }, diff --git a/build/_data/candidates/oakland/2016-11-08/donald-macleay.json b/build/_data/candidates/oakland/2016-11-08/donald-macleay.json index decf8f8..80d9b4f 100644 --- a/build/_data/candidates/oakland/2016-11-08/donald-macleay.json +++ b/build/_data/candidates/oakland/2016-11-08/donald-macleay.json @@ -41,19 +41,19 @@ }, "total_small_contributions": 839.5, "expenditures_by_type": { - "Not Stated": 809.02, - "Civic Donations": 261.86, - "Office Expenses": 1981.28, - "Fundraising Events": 147.81, - "Voter Registration": 156.15, - "Petition Circulating": 29.28, - "Meetings and Appearances": 24.86, - "Campaign Paraphernalia/Misc.": 1629.6, - "Candidate Filing/Ballot Fees": 440.0, - "Campaign Literature and Mailings": 541.33, - "Staff/Spouse Travel, Lodging, and Meals": 320.14, - "Professional Services (Legal, Accounting)": 372.42, - "Information Technology Costs (Internet, E-mail)": 100.0 + "": 809.02, + "CMP": 1629.6, + "CVC": 261.86, + "FIL": 440.0, + "FND": 147.81, + "LIT": 541.33, + "MTG": 24.86, + "OFC": 1981.28, + "PET": 29.28, + "PRO": 372.42, + "TRS": 320.14, + "VOT": 156.15, + "WEB": 100.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json b/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json index 727df5d..dccf218 100644 --- a/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json +++ b/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json @@ -38,11 +38,11 @@ }, "total_small_contributions": 0.0, "expenditures_by_type": { - "Print Ads": 500.0, - "Campaign Consultants": 1000.0, - "Campaign Workers' Salaries": 1000.0, - "Campaign Paraphernalia/Misc.": 1612.37, - "Campaign Literature and Mailings": 300.0 + "CMP": 1612.37, + "CNS": 1000.0, + "LIT": 300.0, + "PRT": 500.0, + "SAL": 1000.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2016-11-08/huber-trenado.json b/build/_data/candidates/oakland/2016-11-08/huber-trenado.json index 251c44b..ff0e264 100644 --- a/build/_data/candidates/oakland/2016-11-08/huber-trenado.json +++ b/build/_data/candidates/oakland/2016-11-08/huber-trenado.json @@ -31,7 +31,8 @@ "Total": 170197.74, "Cand_ID": 1386749, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2016" } ], "contributions_by_type": { @@ -47,19 +48,17 @@ }, "total_small_contributions": 1798.0, "expenditures_by_type": { - "Office Expenses": 123.83, - "Fundraising Events": 126.9, - "Voter Registration": 1600.0, - "Campaign Consultants": 1500.0, - "Campaign Paraphernalia/Misc.": 4633.94, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 10825.06, - "Professional Services (Legal, Accounting)": 2500.0, - "Information Technology Costs (Internet, E-mail)": 833.57 + "CMP": 4633.94, + "CNS": 1500.0, + "FIL": 300.0, + "FND": 126.9, + "LIT": 10825.06, + "OFC": 123.83, + "PRO": 2500.0, + "VOT": 1600.0, + "WEB": 833.57 }, "supporting_by_type": { - "MON": 1500.0, - "Independent Expenditure Supporting/Opposing Others": 175327.52 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2016-11-08/james-harris.json b/build/_data/candidates/oakland/2016-11-08/james-harris.json index 6337210..15b1cee 100644 --- a/build/_data/candidates/oakland/2016-11-08/james-harris.json +++ b/build/_data/candidates/oakland/2016-11-08/james-harris.json @@ -31,7 +31,8 @@ "Total": 193788.73, "Cand_ID": 1387803, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2016" } ], "contributions_by_type": { @@ -47 ```
mikeubell commented 9 months ago
Build diff from Commit c1990cd337fde1f46df806442e755adb3031014c: ```diff diff --git a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json index 74b122b..7a0a6f3 100644 --- a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json +++ b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json @@ -42,18 +42,18 @@ }, "total_small_contributions": 15898.0, "expenditures_by_type": { - "Print Ads": 250.0, - "Not Stated": 43849.56, - "Contribution": 4031.0, - "Civic Donations": 3600.0, - "Office Expenses": 19388.42, - "Fundraising Events": 3950.0, - "Campaign Consultants": 48600.0, - "Campaign Paraphernalia/Misc.": 2934.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 28569.2, - "Postage, Delivery and Messenger Services": 14435.8, - "Professional Services (Legal, Accounting)": 25847.23 + "": 43849.56, + "CMP": 2934.54, + "CNS": 48600.0, + "CTB": 4031.0, + "CVC": 3600.0, + "FIL": 300.0, + "FND": 3950.0, + "LIT": 28569.2, + "OFC": 19388.42, + "POS": 14435.8, + "PRO": 25847.23, + "PRT": 250.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json index 9080bb6..65711b6 100644 --- a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json +++ b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json @@ -21,51 +21,49 @@ "is_winner": null, "filer_id": 1368984, "supporting_money": { - "contributions_received": 30829.65, - "total_contributions": 30829.65, - "total_expenditures": 31569.65, - "total_loans_received": 0.0, + "contributions_received": 33744.95, + "total_contributions": 33744.95, + "total_expenditures": 29369.65, + "total_loans_received": 3500.0, "total_supporting_independent": 50.63, "support_list": [ { "Total": 50.63, "Cand_ID": 1368984, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { "Committee": 3500.0, - "Individual": 22167.4, - "Unitemized": 2042.97, - "Self Funding": 438.56, + "Individual": 21924.95, + "Unitemized": 1920.0, "Other (includes Businesses)": 2900.0 }, "contributions_by_origin": { "Out of State": 3349.95, - "Within Oakland": 7869.28, - "Within California": 17567.45 + "Within Oakland": 7650.0, + "Within California": 17325.0 }, - "total_small_contributions": 2142.97, + "total_small_contributions": 2020.0, "expenditures_by_type": { - "Print Ads": 1617.66, - "Not Stated": 876.49, - "Phone Banks": 356.52, - "Contribution": 2175.0, - "Office Expenses": 100.0, - "Fundraising Events": 158.49, - "Campaign Consultants": 5000.0, - "Campaign Workers' Salaries": 4197.84, - "Polling and Survey Research": 926.42, - "Campaign Paraphernalia/Misc.": 1736.64, - "Candidate Filing/Ballot Fees": 1640.0, - "Campaign Literature and Mailings": 5928.4, - "Postage, Delivery and Messenger Services": 5674.56, - "Professional Services (Legal, Accounting)": 150.0 + "": 876.49, + "CMP": 1736.64, + "CNS": 5000.0, + "CTB": 1175.0, + "FIL": 640.0, + "FND": 158.49, + "LIT": 5928.4, + "OFC": 100.0, + "PHO": 356.52, + "POL": 926.42, + "POS": 5674.56, + "PRO": 150.0, + "PRT": 1617.66, + "SAL": 4197.84 }, "supporting_by_type": { - "MON": 1000.0, - "Independent Expenditure Supporting/Opposing Others": 101.26 } }, "opposing_money": { @@ -76,7 +74,7 @@ ] }, - "total_contributions": 30829.65, - "total_expenditures": 31569.65, - "total_loans_received": 0.0 + "total_contributions": 33744.95, + "total_expenditures": 29369.65, + "total_loans_received": 3500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/andrew-park.json b/build/_data/candidates/oakland/2014-11-04/andrew-park.json index 50ee4d0..41ced30 100644 --- a/build/_data/candidates/oakland/2014-11-04/andrew-park.json +++ b/build/_data/candidates/oakland/2014-11-04/andrew-park.json @@ -43,18 +43,18 @@ }, "total_small_contributions": 9413.86, "expenditures_by_type": { - "Not Stated": 3746.73, - "Phone Banks": 4981.94, - "Civic Donations": 100.0, - "Office Expenses": 9271.69, - "Fundraising Events": 2226.94, - "Campaign Consultants": 15700.0, - "Meetings and Appearances": 247.82, - "Campaign Workers' Salaries": 1600.0, - "Polling and Survey Research": 2885.0, - "Campaign Paraphernalia/Misc.": 8241.76, - "Campaign Literature and Mailings": 32920.9, - "Information Technology Costs (Internet, E-mail)": 2646.38 + "": 3746.73, + "CMP": 8241.76, + "CNS": 15700.0, + "CVC": 100.0, + "FND": 2226.94, + "LIT": 32920.9, + "MTG": 247.82, + "OFC": 9271.69, + "PHO": 4981.94, + "POL": 2885.0, + "SAL": 1600.0, + "WEB": 2646.38 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json index efbd686..ae66d75 100644 --- a/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json @@ -31,7 +31,8 @@ "Total": 89243.48, "Cand_ID": 1365610, "Filer_ID": "1294190", - "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO" + "Filer_NamL": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,27 +48,25 @@ }, "total_small_contributions": 6664.0, "expenditures_by_type": { - "Print Ads": 100.0, - "Not Stated": 5900.0, - "Phone Banks": 478.16, - "Contribution": 500.0, - "Civic Donations": 4300.0, - "Office Expenses": 8204.11, - "Fundraising Events": 2930.15, - "Campaign Consultants": 20000.0, - "Meetings and Appearances": 220.0, - "Campaign Workers' Salaries": 9750.0, - "Campaign Paraphernalia/Misc.": 5194.28, - "Candidate Filing/Ballot Fees": 600.0, - "Campaign Literature and Mailings": 62478.8, - "Staff/Spouse Travel, Lodging, and Meals": 928.62, - "Postage, Delivery and Messenger Services": 147.0, - "Professional Services (Legal, Accounting)": 6049.1, - "Information Technology Costs (Internet, E-mail)": 5853.67 + "": 5900.0, + "CMP": 5194.28, + "CNS": 20000.0, + "CTB": 500.0, + "CVC": 4300.0, + "FIL": 600.0, + "FND": 2930.15, + "LIT": 62478.8, + "MTG": 220.0, + "OFC": 8204.11, + "PHO": 478.16, + "POS": 147.0, + "PRO": 6049.1, + "PRT": 100.0, + "SAL": 9750.0, + "TRS": 928.62, + "WEB": 5853.67 }, "supporting_by_type": { - "MON": 700.0, - "Independent Expenditure Supporting/Opposing Others": 89243.48 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json index 7a56e35..238d1d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -42,19 +42,18 @@ }, "total_small_contributions": 275.0, "expenditures_by_type": { - "Print Ads": 9483.0, - "Phone Banks": 1625.47, - "Office Expenses": 589.98, - "Campaign Consultants": 11447.9, - "Meetings and Appearances": 150.0, - "Campaign Paraphernalia/Misc.": 2520.62, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 37284.94, - "Professional Services (Legal, Accounting)": 1880.0, - "Information Technology Costs (Internet, E-mail)": 3500.0 + "CMP": 2520.62, + "CNS": 11447.9, + "FIL": 500.0, + "LIT": 37284.94, + "MTG": 150.0, + "OFC": 589.98, + "PHO": 1625.47, + "PRO": 1880.0, + "PRT": 9483.0, + "WEB": 3500.0 }, "supporting_by_type": { - "MON": 3800.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json index 719aeb8..b0695d3 100644 --- a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json +++ b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1357609, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 10446.26, "Cand_ID": 1357609, "Filer_ID": "983545", - "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce" + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,28 +56,26 @@ }, "total_small_contributions": 7354.23, "expenditures_by_type": { - "Print Ads": 1500.0, - "Not Stated": 73215.79, - "Phone Banks": 8729.67, - "Civic Donations": 800.0, - "Office Expenses": 24408.3, - "Fundraising Events": 12249.2, - "Campaign Consultants": 30000.0, - "Meetings and Appearances": 6512.87, - "Polling and Survey Research": 20000.0, - "Campaign Paraphernalia/Misc.": 62144.3, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 78185.99, - "Candidate Travel, Lodging, and Meals": 7.99, - "Staff/Spouse Travel, Lodging, and Meals": 2620.56, - "Postage, Delivery and Messenger Services": 12617.84, - "Professional Services (Legal, Accounting)": 21832.53, - "T.V. or Cable Airtime and Production Costs": 11520.9, - "Information Technology Costs (Internet, E-mail)": 15968.27 + "": 73215.79, + "CMP": 62144.3, + "CNS": 30000.0, + "CVC": 800.0, + "FIL": 300.0, + "FND": 12249.2, + "LIT": 78185.99, + "MTG": 6512.87, + "OFC": 24408.3, + "PHO": 8729.67, + "POL": 20000.0, + "POS": 12617.84, + "PRO": 21832.53, + "PRT": 1500.0, + "TEL": 11520.9, + "TRC": 7.99, + "TRS": 2620.56, + "WEB": 15968.27 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 18896.26 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/charles-williams.json b/build/_data/candidates/oakland/2014-11-04/charles-williams.json index 0610dc9..b94cacf 100644 --- a/build/_data/candidates/oakland/2014-11-04/charles-williams.json +++ b/build/_data/candidates/oakland/2014-11-04/charles-williams.json @@ -42,15 +42,15 @@ }, "total_small_contributions": 35.0, "expenditures_by_type": { - "Print Ads": 960.0, - "Not Stated": 1050.0, - "Meetings and Appearances": 2651.0, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3946.0, - "Radio Airtime and Production Costs": 1860.0, - "Staff/Spouse Travel, Lodging, and Meals": 500.0, - "Postage, Delivery and Messenger Services": 1200.0, - "T.V. or Cable Airtime and Production Costs": 3750.0 + "": 1050.0, + "FIL": 300.0, + "LIT": 3946.0, + "MTG": 2651.0, + "POS": 1200.0, + "PRT": 960.0, + "RAD": 1860.0, + "TEL": 3750.0, + "TRS": 500.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json index 080c389..f178710 100644 --- a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json +++ b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json @@ -42,16 +42,16 @@ }, "total_small_contributions": 2998.9, "expenditures_by_type": { - "Not Stated": 1365.45, - "Phone Banks": 1238.56, - "Office Expenses": 190.0, - "Fundraising Events": 914.07, - "Campaign Paraphernalia/Misc.": 3543.88, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 9703.58, - "Postage, Delivery and Messenger Services": 182.5, - "Professional Services (Legal, Accounting)": 1116.07, - "Information Technology Costs (Internet, E-mail)": 145.0 + "": 1365.45, + "CMP": 3543.88, + "FIL": 250.0, + "FND": 914.07, + "LIT": 9703.58, + "OFC": 190.0, + "PHO": 1238.56, + "POS": 182.5, + "PRO": 1116.07, + "WEB": 145.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json index 0084445..94f90a3 100644 --- a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json +++ b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json @@ -43,22 +43,21 @@ }, "total_small_contributions": 12393.89, "expenditures_by_type": { - "Print Ads": 1452.5, - "Office Expenses": 14228.94, - "Campaign Consultants": 24000.0, - "Meetings and Appearances": 1231.63, - "Campaign Workers' Salaries": 53774.57, - "Polling and Survey Research": 28000.0, - "Campaign Paraphernalia/Misc.": 2364.69, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12067.08, - "Staff/Spouse Travel, Lodging, and Meals": 2236.23, - "Postage, Delivery and Messenger Services": 2986.53, - "Professional Services (Legal, Accounting)": 9488.12, - "Information Technology Costs (Internet, E-mail)": 11086.68 + "CMP": 2364.69, + "CNS": 24000.0, + "FIL": 300.0, + "LIT": 12067.08, + "MTG": 1231.63, + "OFC": 14228.94, + "POL": 28000.0, + "POS": 2986.53, + "PRO": 9488.12, + "PRT": 1452.5, + "SAL": 53774.57, + "TRS": 2236.23, + "WEB": 11086.68 }, "supporting_by_type": { - "MON": 2200.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json index 29f3e0a..7334c54 100644 --- a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json +++ b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json @@ -42,22 +42,22 @@ }, "total_small_contributions": 7607.23, "expenditures_by_type": { - "Print Ads": 6205.0, - "Not Stated": 2090.45, - "Phone Banks": 1247.0, - "Office Expenses": 8348.23, - "Fundraising Events": 7746.0, - "Campaign Consultants": 154399.76, - "Meetings and Appearances": 394.0, - "Campaign Workers' Salaries": 60300.0, - "Polling and Survey Research": 11187.47, - "Campaign Paraphernalia/Misc.": 15144.71, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 934.73, - "Staff/Spouse Travel, Lodging, and Meals": 2659.35, - "Postage, Delivery and Messenger Services": 5964.21, - "Information Technology Costs (Internet, E-mail)": 1699.05, - "Transfer Between Committees of the Same Candidate/sponsor": 2.99 + "": 2090.45, + "CMP": 15144.71, + "CNS": 154399.76, + "FIL": 300.0, + "FND": 7746.0, + "LIT": 934.73, + "MTG": 394.0, + "OFC": 8348.23, + "PHO": 1247.0, + "POL": 11187.47, + "POS": 5964.21, + "PRT": 6205.0, + "SAL": 60300.0, + "TRS": 2659.35, + "TSF": 2.99, + "WEB": 1699.05 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/dana-king.json b/build/_data/candidates/oakland/2014-11-04/dana-king.json index fbdd7ce..c2c3d68 100644 --- a/build/_data/candidates/oakland/2014-11-04/dana-king.json +++ b/build/_data/candidates/oakland/2014-11-04/dana-king.json @@ -31,7 +31,8 @@ "Total": 429.45, "Cand_ID": 1364029, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,21 +48,19 @@ }, "total_small_contributions": 5651.98, "expenditures_by_type": { - "Not Stated": 22060.79, - "Civic Donations": 8726.94, - "Office Expenses": 5951.14, - "Fundraising Events": 148.98, - "Campaign Consultants": 29282.98, - "Campaign Workers' Salaries": 6550.0, - "Campaign Paraphernalia/Misc.": 12098.77, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 20507.12, - "Candidate Travel, Lodging, and Meals": 1423.03, - "Postage, Delivery and Messenger Services": 2040.85 + "": 22060.79, + "CMP": 12098.77, + "CNS": 29282.98, + "CVC": 8726.94, + "FIL": 250.0, + "FND": 148.98, + "LIT": 20507.12, + "OFC": 5951.14, + "POS": 2040.85, + "SAL": 6550.0, + "TRC": 1423.03 }, "supporting_by_type": { - "MON": 4200.0, - "Independent Expenditure Supporting/Opposing Others": 744.45 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json index ea62373..de0c2f2 100644 --- a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json +++ b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json @@ -21,96 +21,60 @@ "is_winner": null, "filer_id": 1236617, "supporting_money": { - "contributions_received": 144254.0, - "total_contributions": 144254.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0, - "total_supporting_independent": 23600.06, + "contributions_received": 38429.0, + "total_contributions": 38429.0, + "total_expenditures": 62449.07, + "total_loans_received": -2500.0, + "total_supporting_independent": 429.45, "support_list": [ - { - "Total": 22999.0, - "Cand_ID": 1236617, - "Filer_ID": "1390351", - "Filer_NamL": "East Bay Working Families" - }, { "Total": 429.45, "Cand_ID": 1236617, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" - }, - { - "Total": 171.61, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { - "Committee": 10650.0, - "Individual": 125733.0, - "Unitemized": 2221.0, - "Other (includes Businesses)": 8050.0 + "Committee": 2400.0, + "Individual": 37620.0, + "Unitemized": 409.0, + "Other (includes Businesses)": 500.0 }, "contributions_by_origin": { - "Out of State": 2300.0, - "Within Oakland": 79674.0, - "Within California": 62459.0 + "Within Oakland": 22920.0, + "Within California": 17600.0 }, - "total_small_contributions": 3144.0, + "total_small_contributions": 1332.0, "expenditures_by_type": { - "Print Ads": 1600.0, - "Not Stated": 9088.93, - "Phone Banks": 6950.0, - "Contribution": 1400.0, - "Legal Defense": 1000.0, - "Civic Donations": 8241.74, - "Office Expenses": 17027.58, - "Fundraising Events": 5327.38, - "Campaign Consultants": 40300.0, - "Member Communications": 658.19, - "Meetings and Appearances": 2307.7, - "Campaign Workers' Salaries": 6300.0, - "Campaign Paraphernalia/Misc.": 6590.63, - "Candidate Filing/Ballot Fees": 1250.0, - "Campaign Literature and Mailings": 44808.23, - "Candidate Travel, Lodging, and Meals": 2462.04, - "Postage, Delivery and Messenger Services": 16472.78, - "Professional Services (Legal, Accounting)": 6888.01, - "T.V. or Cable Airtime and Production Costs": 1000.0, - "Information Technology Costs (Internet, E-mail)": 7366.31 + "": 7453.93, + "CMP": 1608.42, + "CNS": 6000.0, + "CTB": 1400.0, + "CVC": 2200.0, + "FIL": 250.0, + "FND": 4045.45, + "LEG": 1000.0, + "LIT": 22934.34, + "MBR": 658.19, + "OFC": 4451.4, + "POS": 102.0, + "PRT": 1600.0, + "SAL": 6300.0, + "TRC": 1182.61 }, "supporting_by_type": { - "MON": 10800.0, - "Mailer": 14542.0, - "Doorhanger": 17656.0, - "Phone Banking & Field Campaign": 13800.0, - "Independent Expenditure Supporting/Opposing Others": 1832.12 } }, "opposing_money": { - "opposing_expenditures": 160145.67, + "opposing_expenditures": 0.0, "opposing_by_type": { - "IKD": 14908.0, - "MON": 193000.0, - "Independent Expenditure Supporting/Opposing Others": 320291.34 }, "opposition_list": [ - { - "Total": 31230.49, - "Cand_ID": 1236617, - "Filer_ID": "1413388", - "Filer_NamL": "Citizens for a United Oakland, Opposing Desley Brooks for City Council" - }, - { - "Total": 128915.18, - "Cand_ID": 1236617, - "Filer_ID": "1410279", - "Filer_NamL": "Oaklanders for Responsible Leadership, Opposing Desley Brooks for Oakland City Council 2018" - } + ] }, - "total_contributions": 144254.0, - "total_expenditures": 190851.14, - "total_loans_received": -2400.0 + "total_contributions": 38429.0, + "total_expenditures": 62449.07, + "total_loans_received": -2500.0 } diff --git a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json index 78b428f..a510214 100644 --- a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json +++ b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/james-moore.json b/build/_data/candidates/oakland/2014-11-04/james-moore.json index 8573e03..b3926d0 100644 --- a/build/_data/candidates/oakland/2014-11-04/james-moore.json +++ b/build/_data/candidates/oakland/2014-11-04/james-moore.json @@ -41,11 +41,11 @@ }, "total_small_contributions": 1366.0, "expenditures_by_type": { - "Office Expenses": 800.0, - "Fundraising Events": 250.0, - "Campaign Paraphernalia/Misc.": 746.33, - "Candidate Filing/Ballot Fees": 250.0, - "Campaign Literature and Mailings": 5799.0 + "CMP": 746.33, + "FIL": 250.0, + "FND": 250.0, + "LIT": 5799.0, + "OFC": 800.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json index 582f7ac..d7db0ee 100644 --- a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json +++ b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/jean-quan.json b/build/_data/candidates/oakland/2014-11-04/jean-quan.json index dad15c2..9f9d78f 100644 --- a/build/_data/candidates/oakland/2014-11-04/jean-quan.json +++ b/build/_data/candidates/oakland/2014-11-04/jean-quan.json @@ -42,30 +42,29 @@ }, "total_small_contributions": 16686.8, "expenditures_by_type": { - "Not Stated": 22401.95, - "Office Expenses": 1500.0, - "Fundraising Events": 5738.75, - "Campaign Consultants": 56229.72, - "Polling and Survey Research": 23286.0, - "Campaign Paraphernalia/Misc.": 9373.41, - "Campaign Literature and Mailings": 237328.31, - "Information Technology Costs (Internet, E-mail)": 3400.0 + "": 22401.95, + "CMP": 9373.41, + "CNS": 56229.72, + "FND": 5738.75, + "LIT": 237328.31, + "OFC": 1500.0, + "POL": 23286.0, + "WEB": 3400.0 }, "supporting_by_type": { - "MON": 1400.0 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 8450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1354678, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, diff --git a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json index b77a84b..4e48c36 100644 --- a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json +++ b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json @@ -42,20 +42,19 @@ }, "total_small_contributions": 2041.0, "expenditures_by_type": { - "Print Ads": 5670.0, - "Not Stated": 2312.19, - "Civic Donations": 500.0, - "Campaign Consultants": 16225.78, - "Campaign Paraphernalia/Misc.": 29757.02, - "Candidate Filing/Ballot Fees": 650.0, - "Campaign Literature and Mailings": 64678.24, - "Candidate Travel, Lodging, and Meals": 374.19, - "Postage, Delivery and Messenger Services": 364.28, - "Professional Services (Legal, Accounting)": 1500.0, - "Information Technology Costs (Internet, E-mail)": 1302.07 + "": 2312.19, + "CMP": 29757.02, + "CNS": 16225.78, + "CVC": 500.0, + "FIL": 650.0, + "LIT": 64678.24, + "POS": 364.28, + "PRO": 1500.0, + "PRT": 5670.0, + "TRC": 374.19, + "WEB": 1302.07 }, "supporting_by_type": { - "MON": 2800.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json index 336a697..6b76fe6 100644 --- a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json +++ b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json @@ -31,7 +31,8 @@ "Total": 8450.0, "Cand_ID": 1359017, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,25 +48,23 @@ }, "total_small_contributions": 10042.0, "expenditures_by_type": { - "Print Ads": 420.0, - "Not Stated": 1143.76, - "Phone Banks": 1086.75, - "Civic Donations": 726.75, - "Office Expenses": 18758.01, - "Fundraising Events": 589.63, - "Campaign Consultants": 84120.0, - "Meetings and Appearances": 105.0, - "Campaign Paraphernalia/Misc.": 6305.45, - "Candidate Filing/Ballot Fees": 500.0, - "Campaign Literature and Mailings": 59144.47, - "Postage, Delivery and Messenger Services": 34371.2, - "Professional Services (Legal, Accounting)": 3382.76, - "T.V. or Cable Airtime and Production Costs": 28884.7, - "Information Technology Costs (Internet, E-mail)": 5850.13 + "": 1143.76, + "CMP": 6305.45, + "CNS": 84120.0, + "CVC": 726.75, + "FIL": 500.0, + "FND": 589.63, + "LIT": 59144.47, + "MTG": 105.0, + "OFC": 18758.01, + "PHO": 1086.75, + "POS": 34371.2, + "PRO": 3382.76, + "PRT": 420.0, + "TEL": 28884.7, + "WEB": 5850.13 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 8450.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/karl-debro.json b/build/_data/candidates/oakland/2014-11-04/karl-debro.json index 38290ed..8447b4c 100644 --- a/build/_data/candidates/oakland/2014-11-04/karl-debro.json +++ b/build/_data/candidates/oakland/2014-11-04/karl-debro.json @@ -42,11 +42,11 @@ }, "total_small_contributions": 974.0, "expenditures_by_type": { - "Not Stated": 80.0, - "Campaign Consultants": 2685.0, - "Campaign Paraphernalia/Misc.": 488.54, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 12063.65 + "": 80.0, + "CMP": 488.54, + "CNS": 2685.0, + "FIL": 300.0, + "LIT": 12063.65 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/ken-houston.json b/build/_data/candidates/oakland/2014-11-04/ken-houston.json index c26deea..d61c865 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-houston.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-houston.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json index f5b458e..bd49605 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json index 3056518..2b6ab32 100644 --- a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json +++ b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json @@ -43,19 +43,19 @@ }, "total_small_contributions": 5597.0, "expenditures_by_type": { - "Not Stated": 19750.55, - "Office Expenses": 920.95, - "Fundraising Events": 1952.4, - "Campaign Consultants": 22085.96, - "Petition Circulating": 795.47, - "Meetings and Appearances": 1205.64, - "Campaign Workers' Salaries": 3600.0, - "Campaign Paraphernalia/Misc.": 23736.21, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 114.18, - "Candidate Travel, Lodging, and Meals": 1000.0, - "Postage, Delivery and Messenger Services": 98.0, - "Professional Services (Legal, Accounting)": 2588.19 + "": 19750.55, + "CMP": 23736.21, + "CNS": 22085.96, + "FIL": 300.0, + "FND": 1952.4, + "LIT": 114.18, + "MTG": 1205.64, + "OFC": 920.95, + "PET": 795.47, + "POS": 98.0, + "PRO": 2588.19, + "SAL": 3600.0, + "TRC": 1000.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/len-raphael.json b/build/_data/candidates/oakland/2014-11-04/len-raphael.json index 536c8f8..08fcbfe 100644 --- a/build/_data/candidates/oakland/2014-11-04/len-raphael.json +++ b/build/_data/candidates/oakland/2014-11-04/len-raphael.json @@ -41,14 +41,14 @@ }, "total_small_contributions": 345.58, "expenditures_by_type": { - "Office Expenses": 1106.52, - "Meetings and Appearances": 100.0, - "Campaign Paraphernalia/Misc.": 2036.53, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 32854.91, - "Candidate Travel, Lodging, and Meals": 478.21, - "Staff/Spouse Travel, Lodging, and Meals": 400.56, - "Information Technology Costs (Internet, E-mail)": 3177.99 + "CMP": 2036.53, + "FIL": 300.0, + "LIT": 32854.91, + "MTG": 100.0, + "OFC": 1106.52, + "TRC": 478.21, + "TRS": 400.56, + "WEB": 3177.99 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json index 159d41b..7301498 100644 --- a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json +++ b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json @@ -31,13 +31,15 @@ "Total": 8450.0, "Cand_ID": 1362261, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1362261, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -53,29 +55,26 @@ }, "total_small_contributions": 15141.66, "expenditures_by_type": { - "Print Ads": 4900.0, - "Not Stated": 26687.73, - "Phone Banks": 5361.23, - "Contribution": 9400.0, - "Civic Donations": 14389.46, - "Office Expenses": 47081.01, - "Fundraising Events": 12043.26, - "Campaign Consultants": 193021.15, - "Returned Contributions": 2295.0, - "Meetings and Appearances": 53167.82, - "Polling and Survey Research": 9000.0, - "Campaign Paraphernalia/Misc.": 5387.66, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 43791.4, - "Postage, Delivery and Messenger Services": 46317.46, - "Professional Services (Legal, Accounting)": 33164.83, - "T.V. or Cable Airtime and Production Costs": 63432.0, - "Information Technology Costs (Internet, E-mail)": 11499.42 + "": 26687.73, + "CMP": 5387.66, + "CNS": 193021.15, + "CTB": 9400.0, + "CVC": 14389.46, + "FIL": 300.0, + "FND": 12043.26, + "LIT": 43791.4, + "MTG": 53167.82, + "OFC": 47081.01, + "PHO": 5361.23, + "POL": 9000.0, + "POS": 46317.46, + "PRO": 33164.83, + "PRT": 4900.0, + "RFD": 2295.0, + "TEL": 63432.0, + "WEB": 11499.42 }, "supporting_by_type": { - "MON": 5700.0, - "BILLBOARDS 10/18 - 11/6": 7672.0, - "Independent Expenditure Supporting/Opposing Others": 9824.45 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json index 43fc85d..3cc3576 100644 --- a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json +++ b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json @@ -42,14 +42,14 @@ }, "total_small_contributions": 6539.0, "expenditures_by_type": { - "Not Stated": 18947.11, - "Office Expenses": 991.96, - "Meetings and Appearances": 1291.03, - "Campaign Paraphernalia/Misc.": 422.25, - "Candidate Filing/Ballot Fees": 119.0, - "Campaign Literature and Mailings": 10293.5, - "Candidate Travel, Lodging, and Meals": 228.87, - "Information Technology Costs (Internet, E-mail)": 1300.0 + "": 18947.11, + "CMP": 422.25, + "FIL": 119.0, + "LIT": 10293.5, + "MTG": 1291.03, + "OFC": 991.96, + "TRC": 228.87, + "WEB": 1300.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json index 81d68a4..0a08384 100644 --- a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json +++ b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/nina-senn.json b/build/_data/candidates/oakland/2014-11-04/nina-senn.json index 47c479e..e28bbe0 100644 --- a/build/_data/candidates/oakland/2014-11-04/nina-senn.json +++ b/build/_data/candidates/oakland/2014-11-04/nina-senn.json @@ -31,7 +31,8 @@ "Total": 34118.55, "Cand_ID": 1368416, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -48,21 +49,19 @@ }, "total_small_contributions": 1483.82, "expenditures_by_type": { - "Not Stated": 2705.87, - "Contribution": 118.48, - "Fundraising Events": 320.0, - "Campaign Consultants": 8000.0, - "Polling and Survey Research": 1592.8, - "Campaign Paraphernalia/Misc.": 1751.75, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 6344.47, - "Postage, Delivery and Messenger Services": 1538.95, - "T.V. or Cable Airtime and Production Costs": 830.0, - "Information Technology Costs (Internet, E-mail)": 57.0 + "": 2705.87, + "CMP": 1751.75, + "CNS": 8000.0, + "CTB": 118.48, + "FIL": 300.0, + "FND": 320.0, + "LIT": 6344.47, + "POL": 1592.8, + "POS": 1538.95, + "TEL": 830.0, + "WEB": 57.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34118.55 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json index dcbb384..1289df4 100644 --- a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json +++ b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/paul-lim.json b/build/_data/candidates/oakland/2014-11-04/paul-lim.json index 15665bb..86d91d9 100644 --- a/build/_data/candidates/oakland/2014-11-04/paul-lim.json +++ b/build/_data/candidates/oakland/2014-11-04/paul-lim.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/peter-liu.json b/build/_data/candidates/oakland/2014-11-04/peter-liu.json index 0ae6378..abdec16 100644 --- a/build/_data/candidates/oakland/2014-11-04/peter-liu.json +++ b/build/_data/candidates/oakland/2014-11-04/peter-liu.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json index 5da7a23..dcf7d34 100644 --- a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json @@ -31,13 +31,15 @@ "Total": 10000.0, "Cand_ID": 1367270, "Filer_ID": "COAK-1538", - "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014" + "Filer_NamL": "Gay and Lesbian Victory Fund Committee To Support Rebecca Kaplan for City of Oakland Mayor 2014", + "election_name": "oakland-2014" }, { "Total": 744.45, "Cand_ID": 1367270, "Filer_ID": "1372459", - "Filer_NamL": "Oakland Civil Liberties Alliance" + "Filer_NamL": "Oakland Civil Liberties Alliance", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -54,45 +56,39 @@ }, "total_small_contributions": 18274.0, "expenditures_by_type": { - "Print Ads": 763.04, - "Phone Banks": 13919.92, - "Legal Defense": 4430.25, - "Office Expenses": 23828.46, - "Fundraising Events": 3648.97, - "Campaign Consultants": 122092.03, - "Returned Contributions": 4995.0, - "Meetings and Appearances": 2606.94, - "Campaign Paraphernalia/Misc.": 11065.73, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 93872.21, - "Radio Airtime and Production Costs": 4085.0, - "Candidate Travel, Lodging, and Meals": 115.19, - "Staff/Spouse Travel, Lodging, and Meals": 224.42, - "Postage, Delivery and Messenger Services": 2704.45, - "Professional Services (Legal, Accounting)": 1200.0, - "T.V. or Cable Airtime and Production Costs": 39327.6, - "Information Technology Costs (Internet, E-mail)": 19393.37 + "CMP": 11065.73, + "CNS": 122092.03, + "FIL": 300.0, + "FND": 3648.97, + "LEG": 4430.25, + "LIT": 93872.21, + "MTG": 2606.94, + "OFC": 23828.46, + "PHO": 13919.92, + "POS": 2704.45, + "PRO": 1200.0, + "PRT": 763.04, + "RAD": 4085.0, + "RFD": 4995.0, + "TEL": 39327.6, + "TRC": 115.19, + "TRS": 224.42, + "WEB": 19393.37 }, "supporting_by_type": { - "IKD": 3676.7, - "MON": 20493.0, - "Independent Expenditure Supporting/Opposing Others": 245153.1 } }, "opposing_money": { "opposing_expenditures": 8450.0, "opposing_by_type": { - "MON": 1500.0, - "Cable ads": 150000.0, - "Estimated cost of media production": 24766.0, - "Independent Expenditure Supporting/Opposing Others": 43450.0 }, "opposition_list": [ { "Total": 8450.0, "Cand_ID": 1367270, "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland" + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" } ] }, diff --git a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json index f9216be..4ecf4e4 100644 --- a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json +++ b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json @@ -31,7 +31,8 @@ "Total": 63894.42, "Cand_ID": 1365454, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -46,18 +47,16 @@ }, "total_small_contributions": 2943.0, "expenditures_by_type": { - "Campaign Consultants": 4750.0, - "Meetings and Appearances": 55.86, - "Polling and Survey Research": 449.0, - "Campaign Paraphernalia/Misc.": 1217.88, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 3383.36, - "Professional Services (Legal, Accounting)": 160.0, - "Information Technology Costs (Internet, E-mail)": 29.0 + "CMP": 1217.88, + "CNS": 4750.0, + "FIL": 300.0, + "LIT": 3383.36, + "MTG": 55.86, + "POL": 449.0, + "PRO": 160.0, + "WEB": 29.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 63894.42 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json index 3196d99..1a043d5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json +++ b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json @@ -38,9 +38,9 @@ }, "total_small_contributions": 0.0, "expenditures_by_type": { - "Print Ads": 1500.0, - "Candidate Filing/Ballot Fees": 300.0, - "Information Technology Costs (Internet, E-mail)": 507.0 + "FIL": 300.0, + "PRT": 1500.0, + "WEB": 507.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json index 80f4cc8..13a23b5 100644 --- a/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json +++ b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json @@ -31,7 +31,8 @@ "Total": 34066.01, "Cand_ID": 1365733, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2014" } ], "contributions_by_type": { @@ -47,17 +48,15 @@ }, "total_small_contributions": 2324.0, "expenditures_by_type": { - "Phone Banks": 75.0, - "Office Expenses": 802.93, - "Fundraising Events": 508.0, - "Campaign Consultants": 8940.11, - "Meetings and Appearances": 58.0, - "Campaign Literature and Mailings": 6349.45, - "Information Technology Costs (Internet, E-mail)": 656.0 + "CNS": 8940.11, + "FND": 508.0, + "LIT": 6349.45, + "MTG": 58.0, + "OFC": 802.93, + "PHO": 75.0, + "WEB": 656.0 }, "supporting_by_type": { - "MON": 1400.0, - "Independent Expenditure Supporting/Opposing Others": 34066.01 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json index 2a5a03a..ba6b8bd 100644 --- a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json @@ -43,20 +43,19 @@ }, "total_small_contributions": 8602.01, "expenditures_by_type": { - "Not Stated": 16872.35, - "Contribution": 1400.0, - "Office Expenses": 589.25, - "Fundraising Events": 1618.95, - "Polling and Survey Research": 3137.48, - "Campaign Paraphernalia/Misc.": 14274.08, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 21352.34, - "Staff/Spouse Travel, Lodging, and Meals": 248.06, - "Postage, Delivery and Messenger Services": 4662.11, - "Professional Services (Legal, Accounting)": 6361.08 + "": 16872.35, + "CMP": 14274.08, + "CTB": 1400.0, + "FIL": 300.0, + "FND": 1618.95, + "LIT": 21352.34, + "OFC": 589.25, + "POL": 3137.48, + "POS": 4662.11, + "PRO": 6361.08, + "TRS": 248.06 }, "supporting_by_type": { - "MON": 250.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json index b529488..4865c99 100644 --- a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json +++ b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json @@ -41,16 +41,16 @@ }, "total_small_contributions": 7175.0, "expenditures_by_type": { - "Print Ads": 6958.74, - "Office Expenses": 255.8, - "Fundraising Events": 100.0, - "Voter Registration": 250.0, - "Campaign Consultants": 32018.84, - "Campaign Workers' Salaries": 2768.0, - "Campaign Paraphernalia/Misc.": 20724.62, - "Campaign Literature and Mailings": 531.7, - "Professional Services (Legal, Accounting)": 500.0, - "Information Technology Costs (Internet, E-mail)": 500.0 + "CMP": 20724.62, + "CNS": 32018.84, + "FND": 100.0, + "LIT": 531.7, + "OFC": 255.8, + "PRO": 500.0, + "PRT": 6958.74, + "SAL": 2768.0, + "VOT": 250.0, + "WEB": 500.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json index a0ff9b7..520a2a4 100644 --- a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json index f7323d5..4cb1310 100644 --- a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json +++ b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json index 4fe9136..bb78f71 100644 --- a/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json +++ b/build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json index 5b9dca2..c537ffb 100644 --- a/build/_data/candidates/oakland/2016-11-08/barbara-parker.json +++ b/build/_data/candidates/oakland/2016-11-08/barbara-parker.json @@ -41,17 +41,16 @@ }, "total_small_contributions": 393.0, "expenditures_by_type": { - "Not Stated": 500.0, - "Contribution": 26626.59, - "Fundraising Events": 3450.0, - "Campaign Consultants": 32098.97, - "Campaign Paraphernalia/Misc.": 820.44, - "Candidate Filing/Ballot Fees": 1727.0, - "Campaign Literature and Mailings": 1559.56, - "Independent Expenditure Supporting/Opposing Others": 1250.0 + "": 500.0, + "CMP": 820.44, + "CNS": 32098.97, + "CTB": 26626.59, + "FIL": 1727.0, + "FND": 3450.0, + "IND": 1250.0, + "LIT": 1559.56 }, "supporting_by_type": { - "MON": 700.0 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json index 81ac63a..6b44f8d 100644 --- a/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json +++ b/build/_data/candidates/oakland/2016-11-08/benjamin-lang.json @@ -25,7 +25,7 @@ "total_contributions": 0.0, "total_expenditures": null, "total_loans_received": null, - "total_supporting_independent": 0.0, + "total_supporting_independent": null, "support_list": [ ], @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": 0.0, + "opposing_expenditures": null, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json index b8a06d2..d248212 100644 --- a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json +++ b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json @@ -43,13 +43,13 @@ }, "total_small_contributions": 1707.0, "expenditures_by_type": { - "Office Expenses": 7808.74, - "Campaign Consultants": 52134.75, - "Meetings and Appearances": 835.15, - "Campaign Paraphernalia/Misc.": 6133.94, - "Campaign Literature and Mailings": 1056.73, - "Professional Services (Legal, Accounting)": 5575.0, - "Information Technology Costs (Internet, E-mail)": 1997.97 + "CMP": 6133.94, + "CNS": 52134.75, + "LIT": 1056.73, + "MTG": 835.15, + "OFC": 7808.74, + "PRO": 5575.0, + "WEB": 1997.97 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json index f86aca6..59de439 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -41,29 +41,27 @@ }, "total_small_contributions": 2987.0, "expenditures_by_type": { - "Not Stated": 2033.0, - "Office Expenses": 1900.34, - "Campaign Consultants": 5150.0, - "Campaign Paraphernalia/Misc.": 1167.25, - "Campaign Literature and Mailings": 1054.74, - "Professional Services (Legal, Accounting)": 3057.23 + "": 2033.0, + "CMP": 1167.25, + "CNS": 5150.0, + "LIT": 1054.74, + "OFC": 1900.34, + "PRO": 3057.23 }, "supporting_by_type": { - "IKD": 5924.0, - "MON": 1500.0 } }, "opposing_money": { "opposing_expenditures": 6987.5, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 6987.5 }, "opposition_list": [ { "Total": 6987.5, "Cand_ID": 1384926, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2016" } ] }, diff --git a/build/_data/candidates/oakland/2016-11-08/dan-kalb.json b/build/_data/candidates/oakland/2016-11-08/dan-kalb.json index c200f77..42600bd 100644 --- a/build/_data/candidates/oakland/2016-11-08/dan-kalb.json +++ b/build/_data/candidates/oakland/2016-11-08/dan-kalb.json @@ -43,46 +43,43 @@ }, "total_small_contributions": 12667.66, "expenditures_by_type": { - "Print Ads": 655.0, - "Not Stated": 2696.93, - "Contribution": 1035.0, - "Civic Donations": 2200.0, - "Fundraising Events": 12301.23, - "Campaign Consultants": 37769.07, - "Meetings and Appearances": 150.0, - "Campaign Workers' Salaries": 3500.0, - "Campaign Paraphernalia/Misc.": 22654.34, - "Candidate Filing/Ballot Fees": 50.0, - "Campaign Literature and Mailings": 36770.03, - "Professional Services (Legal, Accounting)": 11882.76, - "Information Technology Costs (Internet, E-mail)": 4275.01, - "Independent Expenditure Supporting/Opposing Others": 400.0, - "Transfer Between Committees of the Same Candidate/sponsor": 13900.0 + "": 2696.93, + "CMP": 22654.34, + "CNS": 37769.07, + "CTB": 1035.0, + "CVC": 2200.0, + "FIL": 50.0, + "FND": 12301.23, + "IND": 400.0, + "LIT": 36770.03, + "MTG": 150.0, + "PRO": 11882.76, + "PRT": 655.0, + "SAL": 3500.0, + "TSF": 13900.0, + "WEB": 4275.01 }, "supporting_by_type": { - "IKD": 300.0, - "MON": 6200.0, - "Mailer": 32697.0, - "Independent Expenditure Supporting/Opposing Others": 2810.32 } }, "opposing_money": { "opposing_expenditures": 13241.65, "opposing_by_type": { - "Independent Expenditure Supporting/Opposing Others": 13241.65 }, "opposition_list": [ { "Total": 148.12, "Cand_ID": 1382408, "Filer_ID": "1342695", - "Filer_NamL": "East Bay Rental Housing Association PAC" + "Filer_NamL": "East Bay Rental Housing Association PAC", + "election_name": "oakland-2016" }, { "Total": 13093.53, "Cand_ID": 1382408, "Filer_ID": "943526", - "Filer_NamL": "Oakland Police Officer’s Association - Political Action Committee" + "Filer_NamL": "Oakland Police Officer’s Association - Political Action Committee", + "election_name": "oakland-2016" } ] }, diff --git a/build/_data/candidates/oakland/2016-11-08/donald-macleay.json b/build/_data/candidates/oakland/2016-11-08/donald-macleay.json index decf8f8..80d9b4f 100644 --- a/build/_data/candidates/oakland/2016-11-08/donald-macleay.json +++ b/build/_data/candidates/oakland/2016-11-08/donald-macleay.json @@ -41,19 +41,19 @@ }, "total_small_contributions": 839.5, "expenditures_by_type": { - "Not Stated": 809.02, - "Civic Donations": 261.86, - "Office Expenses": 1981.28, - "Fundraising Events": 147.81, - "Voter Registration": 156.15, - "Petition Circulating": 29.28, - "Meetings and Appearances": 24.86, - "Campaign Paraphernalia/Misc.": 1629.6, - "Candidate Filing/Ballot Fees": 440.0, - "Campaign Literature and Mailings": 541.33, - "Staff/Spouse Travel, Lodging, and Meals": 320.14, - "Professional Services (Legal, Accounting)": 372.42, - "Information Technology Costs (Internet, E-mail)": 100.0 + "": 809.02, + "CMP": 1629.6, + "CVC": 261.86, + "FIL": 440.0, + "FND": 147.81, + "LIT": 541.33, + "MTG": 24.86, + "OFC": 1981.28, + "PET": 29.28, + "PRO": 372.42, + "TRS": 320.14, + "VOT": 156.15, + "WEB": 100.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json b/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json index 727df5d..dccf218 100644 --- a/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json +++ b/build/_data/candidates/oakland/2016-11-08/francis-matt-hummel.json @@ -38,11 +38,11 @@ }, "total_small_contributions": 0.0, "expenditures_by_type": { - "Print Ads": 500.0, - "Campaign Consultants": 1000.0, - "Campaign Workers' Salaries": 1000.0, - "Campaign Paraphernalia/Misc.": 1612.37, - "Campaign Literature and Mailings": 300.0 + "CMP": 1612.37, + "CNS": 1000.0, + "LIT": 300.0, + "PRT": 500.0, + "SAL": 1000.0 }, "supporting_by_type": { } diff --git a/build/_data/candidates/oakland/2016-11-08/huber-trenado.json b/build/_data/candidates/oakland/2016-11-08/huber-trenado.json index 251c44b..ff0e264 100644 --- a/build/_data/candidates/oakland/2016-11-08/huber-trenado.json +++ b/build/_data/candidates/oakland/2016-11-08/huber-trenado.json @@ -31,7 +31,8 @@ "Total": 170197.74, "Cand_ID": 1386749, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2016" } ], "contributions_by_type": { @@ -47,19 +48,17 @@ }, "total_small_contributions": 1798.0, "expenditures_by_type": { - "Office Expenses": 123.83, - "Fundraising Events": 126.9, - "Voter Registration": 1600.0, - "Campaign Consultants": 1500.0, - "Campaign Paraphernalia/Misc.": 4633.94, - "Candidate Filing/Ballot Fees": 300.0, - "Campaign Literature and Mailings": 10825.06, - "Professional Services (Legal, Accounting)": 2500.0, - "Information Technology Costs (Internet, E-mail)": 833.57 + "CMP": 4633.94, + "CNS": 1500.0, + "FIL": 300.0, + "FND": 126.9, + "LIT": 10825.06, + "OFC": 123.83, + "PRO": 2500.0, + "VOT": 1600.0, + "WEB": 833.57 }, "supporting_by_type": { - "MON": 1500.0, - "Independent Expenditure Supporting/Opposing Others": 175327.52 } }, "opposing_money": { diff --git a/build/_data/candidates/oakland/2016-11-08/james-harris.json b/build/_data/candidates/oakland/2016-11-08/james-harris.json index 6337210..15b1cee 100644 --- a/build/_data/candidates/oakland/2016-11-08/james-harris.json +++ b/build/_data/candidates/oakland/2016-11-08/james-harris.json @@ -31,7 +31,8 @@ "Total": 193788.73, "Cand_ID": 1387803, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates" + "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "election_name": "oakland-2016" } ], "contributions_by_type": { @@ -47 ```
mikeubell commented 9 months ago
Build diff from Commit 692b6ea510eb7dcda513b55f49b82007d25de31d: ```diff diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index dcaec44..20223e0 100644 --- a/build/_data/committees/1342695.json +++ b/build/_data/committees/1342695.json @@ -42,7 +42,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -52,10 +52,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -65,10 +65,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -78,10 +78,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -91,7 +91,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -107,7 +107,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -117,10 +117,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -130,7 +130,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -146,7 +146,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -156,10 +156,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -169,10 +169,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -182,7 +182,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -198,7 +198,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -208,10 +208,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -221,7 +221,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -237,7 +237,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -247,10 +247,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -260,7 +260,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -276,7 +276,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -286,7 +286,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -302,7 +302,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -312,7 +312,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -354,7 +354,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -364,10 +364,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -377,7 +377,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -393,7 +393,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -403,10 +403,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -416,10 +416,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -429,10 +429,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -442,10 +442,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -455,10 +455,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -468,7 +468,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -510,7 +510,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -520,10 +520,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -533,7 +533,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -562,7 +562,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -572,10 +572,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -585,10 +585,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -598,10 +598,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -611,10 +611,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -624,10 +624,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -637,10 +637,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -650,7 +650,7 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -718,7 +718,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -728,10 +728,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -741,10 +741,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -754,10 +754,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -767,10 +767,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -780,10 +780,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -793,7 +793,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -809,7 +809,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -819,10 +819,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -832,10 +832,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -845,10 +845,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -858,7 +858,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -900,7 +900,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -910,7 +910,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -926,7 +926,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -936,7 +936,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -978,7 +978,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -988,10 +988,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1001,10 +1001,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1014,7 +1014,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1030,7 +1030,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1040,10 +1040,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1053,10 +1053,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1066,10 +1066,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1079,7 +1079,7 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1095,7 +1095,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1105,10 +1105,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1118,7 +1118,7 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1173,7 +1173,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1183,7 +1183,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1199,7 +1199,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1209,10 +1209,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1222,10 +1222,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1235,7 +1235,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1264,7 +1264,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1274,10 +1274,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1287,10 +1287,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1300,10 +1300,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1313,10 +1313,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1326,10 +1326,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1339,10 +1339,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1352,10 +1352,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1365,7 +1365,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1407,7 +1407,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1417,10 +1417,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1430,10 +1430,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1443,7 +1443,7 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1459,7 +1459,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1469,10 +1469,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1482,10 +1482,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1495,10 +1495,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1508,10 +1508,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1521,10 +1521,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1534,10 +1534,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1547,10 +1547,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1560,10 +1560,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1573,10 +1573,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1586,10 +1586,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1599,7 +1599,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1615,7 +1615,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1625,10 +1625,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1638,10 +1638,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1651,7 +1651,7 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -1667,7 +1667,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1677,7 +1677,7 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1732,7 +1732,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1742,10 +1742,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1755,10 +1755,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1768,10 +1768,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1781,7 +1781,7 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1810,7 +1810,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1820,10 +1820,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1833,7 +1833,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1849,7 +1849,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1859,10 +1859,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1872,10 +1872,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1885,10 +1885,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1898,10 +1898,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1911,7 +1911,7 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2044,7 +2044,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2054,10 +2054,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2067,7 +2067,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2083,7 +2083,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2093,10 +2093,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2106,7 +2106,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2187,7 +2187,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2197,10 +2197,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2210,10 +2210,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2223,7 +2223,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2239,7 +2239,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2249,10 +2249,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2262,10 +2262,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2275,10 +2275,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2288,10 +2288,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2301,10 +2301,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2314,7 +2314,7 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -2330,7 +2330,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2340,10 +2340,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2353,10 +2353,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2366,10 +2366,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2379,10 +2379,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2392,7 +2392,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2408,7 +2408,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2418,10 +2418,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2431,7 +2431,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2447,7 +2447,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2457,10 +2457,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2470,10 +2470,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2483,10 +2483,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2496,10 +2496,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2509,7 +2509,7 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2525,7 +2525,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2535,10 +2535,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2548,10 +2548,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2561,10 +2561,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2574,7 +2574,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2616,7 +2616,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", @@ -2626,10 +2626,10 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", @@ -2639,7 +2639,7 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2694,7 +2694,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2704,10 +2704,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2717,10 +2717,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2730,10 +2730,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2743,7 +2743,7 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2759,7 +2759,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2769,7 +2769,7 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2784,19 +2784,6 @@ "Tran_Zip4": "94703-1830", "election_name": "oakland-2020" }, - { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Aplia", - "Tran_Occ": "Biology Editor", - "Entity_Cd": "Individual", - "Tran_Amt1": 30.0, - "Tran_Date": "2014-12-05", - "Tran_NamF": "Louise", - "Tran_NamL": "Parker", - "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" - }, { "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", @@ -2811,17 +2798,17 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", "Entity_Cd": "Individual", - "Tran_Amt1": 95.0, + "Tran_Amt1": 30.0, "Tran_Date": "2014-12-05", "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2016 Election", @@ -2852,6 +2839,19 @@ { "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", + "Tran_Emp": "Aplia", + "Tran_Occ": "Biology Editor", + "Entity_Cd": "Individual", + "Tran_Amt1": 95.0, + "Tran_Date": "2014-12-05", + "Tran_NamF": "Louise", + "Tran_NamL": "Parker", + "Tran_Zip4": "94703-1830", + "election_name": "oakland-2022" + }, + { + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, "Entity_Cd": "Other (includes Businesses)", @@ -2860,7 +2860,7 @@ "Tran_NamF": null, "Tran_NamL": "Fran Slate Property Management", "Tran_Zip4": "94526", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2876,7 +2876,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2886,10 +2886,10 @@ "Tran_NamF": null, "Tran_NamL": "Fran Slate Property Management", "Tran_Zip4": "94526", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2899,10 +2899,10 @@ "Tran_NamF": null, "Tran_NamL": "Fran Slate Property Management", "Tran_Zip4": "94526", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": ```
mikeubell commented 9 months ago

The existing code in /total_{contributions,expenditures}_calculator.rb should be using the From_Date and Thru_Date. The Rpt_Date is when the data was filed and not when the money was collected/spent.

mikeubell commented 9 months ago
Build diff from Commit 1cfbab60d469e483125e1814feea94f6c4e23af5: ```diff diff --git a/build/_candidates/oakland/2014-11-04/abel-guillen.md b/build/_candidates/oakland/2014-11-04/abel-guillen.md new file mode 100644 index 0000000..82e4e14 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/abel-guillen.md @@ -0,0 +1,8 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Abel Guillen for Oakland City Council 2014 +filer_id: '1365384' +is_incumbent: true +name: Abel Guillén +public_funding_received: "$17,921" +--- diff --git a/build/_candidates/oakland/2014-11-04/aimee-eng.md b/build/_candidates/oakland/2014-11-04/aimee-eng.md new file mode 100644 index 0000000..73b4537 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/aimee-eng.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Aimee Eng for School Board 2018 +filer_id: '1368984' +name: Aimee Eng +--- diff --git a/build/_candidates/oakland/2014-11-04/andrew-park.md b/build/_candidates/oakland/2014-11-04/andrew-park.md new file mode 100644 index 0000000..3ae6a6f --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/andrew-park.md @@ -0,0 +1,8 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Andrew Park for City Council 2014 +filer_id: '1364308' +is_incumbent: false +name: Andrew Park +public_funding_received: "$17,921" +--- diff --git a/build/_candidates/oakland/2014-11-04/annie-campbell-washington.md b/build/_candidates/oakland/2014-11-04/annie-campbell-washington.md new file mode 100644 index 0000000..934f03b --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/annie-campbell-washington.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Annie Campbell Washington 2014 +filer_id: '1365610' +name: Annie Campbell Washington +public_funding_received: "$17,921" +--- diff --git a/build/_candidates/oakland/2014-11-04/brenda-roberts.md b/build/_candidates/oakland/2014-11-04/brenda-roberts.md new file mode 100644 index 0000000..a8dc40c --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/brenda-roberts.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Brenda Roberts for Oakland City Auditor 2014 +filer_id: '136810' +is_incumbent: false +name: Brenda Roberts +--- diff --git a/build/_candidates/oakland/2014-11-04/bryan-parker.md b/build/_candidates/oakland/2014-11-04/bryan-parker.md new file mode 100644 index 0000000..a80c1a3 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/bryan-parker.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Parker for Oakland Mayor 2014 +filer_id: '1357609' +is_incumbent: false +name: Bryan Parker +--- diff --git a/build/_candidates/oakland/2014-11-04/charles-williams.md b/build/_candidates/oakland/2014-11-04/charles-williams.md new file mode 100644 index 0000000..a2970ea --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/charles-williams.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Charles R. Williams for Mayor of Oakland 2014 +filer_id: '1367207' +is_incumbent: false +name: Charles Williams +--- diff --git a/build/_candidates/oakland/2014-11-04/cheri-spigner.md b/build/_candidates/oakland/2014-11-04/cheri-spigner.md new file mode 100644 index 0000000..828889b --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/cheri-spigner.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Cheri Spigner for School Board 2014 +filer_id: '1367083' +name: Cheri Spigner +--- diff --git a/build/_candidates/oakland/2014-11-04/christopher-dobbins.md b/build/_candidates/oakland/2014-11-04/christopher-dobbins.md new file mode 100644 index 0000000..23f26f0 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/christopher-dobbins.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Committee to Elect Chris Dobbins to Oakland School Board District + 6 +filer_id: '1277578' +name: Christopher Dobbins +--- diff --git a/build/_candidates/oakland/2014-11-04/courtney-ruby.md b/build/_candidates/oakland/2014-11-04/courtney-ruby.md new file mode 100644 index 0000000..42156b3 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/courtney-ruby.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Courtney Ruby for Oakland Mayor 2014 +filer_id: '1364278' +is_incumbent: false +name: Courtney Ruby +--- diff --git a/build/_candidates/oakland/2014-11-04/dan-siegel.md b/build/_candidates/oakland/2014-11-04/dan-siegel.md new file mode 100644 index 0000000..a0078c0 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/dan-siegel.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Dan Siegel for Mayor 2014 +filer_id: '1362877' +is_incumbent: false +name: Dan Siegel +--- diff --git a/build/_candidates/oakland/2014-11-04/dana-king.md b/build/_candidates/oakland/2014-11-04/dana-king.md new file mode 100644 index 0000000..abf2ed4 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/dana-king.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '1364029' +is_incumbent: false +name: Dana King +public_funding_received: "$17,921" +--- diff --git a/build/_candidates/oakland/2014-11-04/desley-brooks.md b/build/_candidates/oakland/2014-11-04/desley-brooks.md new file mode 100644 index 0000000..44128ae --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/desley-brooks.md @@ -0,0 +1,8 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Desley Brooks for City Council 2014 +filer_id: '1236617' +is_incumbent: true +name: Desley Brooks +public_funding_received: "$17,921" +--- diff --git a/build/_candidates/oakland/2014-11-04/eric-wilson.md b/build/_candidates/oakland/2014-11-04/eric-wilson.md new file mode 100644 index 0000000..acad4cb --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/eric-wilson.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Eric Wilson +--- diff --git a/build/_candidates/oakland/2014-11-04/james-moore.md b/build/_candidates/oakland/2014-11-04/james-moore.md new file mode 100644 index 0000000..0ad12a8 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/james-moore.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: James Moore for Oakland City Council 2014 +filer_id: '1367463' +is_incumbent: false +name: James Moore +--- diff --git a/build/_candidates/oakland/2014-11-04/jason-anderson.md b/build/_candidates/oakland/2014-11-04/jason-anderson.md new file mode 100644 index 0000000..2de9741 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/jason-anderson.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Jason Anderson +--- diff --git a/build/_candidates/oakland/2014-11-04/jean-quan.md b/build/_candidates/oakland/2014-11-04/jean-quan.md new file mode 100644 index 0000000..561ea4f --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/jean-quan.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Re-Elect Mayor Quan 201 +filer_id: '1354678' +is_incumbent: true +name: Jean Quan +--- diff --git a/build/_candidates/oakland/2014-11-04/jill-broadhurst.md b/build/_candidates/oakland/2014-11-04/jill-broadhurst.md new file mode 100644 index 0000000..2398804 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/jill-broadhurst.md @@ -0,0 +1,8 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Jill Broadhurst for Council 2014 +filer_id: '1362843' +is_incumbent: false +name: Jill Broadhurst +public_funding_received: "$17,921" +--- diff --git a/build/_candidates/oakland/2014-11-04/joe-tuman.md b/build/_candidates/oakland/2014-11-04/joe-tuman.md new file mode 100644 index 0000000..e29c017 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/joe-tuman.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Joe Tuman for Mayor 2014 +filer_id: '1359017' +is_incumbent: false +name: Joe Tuman +--- diff --git a/build/_candidates/oakland/2014-11-04/karl-debro.md b/build/_candidates/oakland/2014-11-04/karl-debro.md new file mode 100644 index 0000000..7a9a3dc --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/karl-debro.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Karl Debro for School Board 2014 +filer_id: '1366842' +name: Karl Debro +--- diff --git a/build/_candidates/oakland/2014-11-04/ken-houston.md b/build/_candidates/oakland/2014-11-04/ken-houston.md new file mode 100644 index 0000000..9884e63 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/ken-houston.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Ken Houston +--- diff --git a/build/_candidates/oakland/2014-11-04/ken-maxey.md b/build/_candidates/oakland/2014-11-04/ken-maxey.md new file mode 100644 index 0000000..11a88f4 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/ken-maxey.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Ken Maxey +--- diff --git a/build/_candidates/oakland/2014-11-04/kevin-blackburn.md b/build/_candidates/oakland/2014-11-04/kevin-blackburn.md new file mode 100644 index 0000000..61e32ac --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/kevin-blackburn.md @@ -0,0 +1,8 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Kevin Blackburn for Oakland City Council 2014 +filer_id: '1366244' +is_incumbent: false +name: Kevin Blackburn +public_funding_received: "$17,921" +--- diff --git a/build/_candidates/oakland/2014-11-04/len-raphael.md b/build/_candidates/oakland/2014-11-04/len-raphael.md new file mode 100644 index 0000000..116d965 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/len-raphael.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Len Raphael for Oakland City Auditor 2014 +filer_id: '1369263' +is_incumbent: false +name: Len Raphael +--- diff --git a/build/_candidates/oakland/2014-11-04/libby-schaaf.md b/build/_candidates/oakland/2014-11-04/libby-schaaf.md new file mode 100644 index 0000000..7b6a5c5 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/libby-schaaf.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Mayor Libby Schaaf 2014 +filer_id: '1362261' +is_incumbent: false +name: Libby Schaaf +--- diff --git a/build/_candidates/oakland/2014-11-04/michael-johnson.md b/build/_candidates/oakland/2014-11-04/michael-johnson.md new file mode 100644 index 0000000..05b8dff --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/michael-johnson.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Committee to Elect Michael V. Johnson +filer_id: '1360826' +is_incumbent: false +name: Michael Johnson +--- diff --git a/build/_candidates/oakland/2014-11-04/nancy-sidebotham.md b/build/_candidates/oakland/2014-11-04/nancy-sidebotham.md new file mode 100644 index 0000000..3eca6b1 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/nancy-sidebotham.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Nancy Sidebotham +--- diff --git a/build/_candidates/oakland/2014-11-04/nicolas-heidorn.md b/build/_candidates/oakland/2014-11-04/nicolas-heidorn.md new file mode 100644 index 0000000..da967c8 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/nicolas-heidorn.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Nicolas Heidorn for City Council 2014 +filer_id: '1363584' +is_incumbent: false +name: Nicolas Heidorn +--- diff --git a/build/_candidates/oakland/2014-11-04/nina-senn.md b/build/_candidates/oakland/2014-11-04/nina-senn.md new file mode 100644 index 0000000..d1a339f --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/nina-senn.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Nina Senn for Oakland School Board 2014 +filer_id: '1368416' +name: Nina Senn +--- diff --git a/build/_candidates/oakland/2014-11-04/pat-mccullough.md b/build/_candidates/oakland/2014-11-04/pat-mccullough.md new file mode 100644 index 0000000..5165dd9 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/pat-mccullough.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Pat Mccullough +--- diff --git a/build/_candidates/oakland/2014-11-04/paul-lim.md b/build/_candidates/oakland/2014-11-04/paul-lim.md new file mode 100644 index 0000000..4e0e0e6 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/paul-lim.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Paul Lim +--- diff --git a/build/_candidates/oakland/2014-11-04/peter-liu.md b/build/_candidates/oakland/2014-11-04/peter-liu.md new file mode 100644 index 0000000..691df78 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/peter-liu.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Peter Liu +--- diff --git a/build/_candidates/oakland/2014-11-04/rebecca-kaplan.md b/build/_candidates/oakland/2014-11-04/rebecca-kaplan.md new file mode 100644 index 0000000..093e5bc --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/rebecca-kaplan.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '1367270' +is_incumbent: false +name: Rebecca Kaplan +--- diff --git a/build/_candidates/oakland/2014-11-04/renato-almanzor.md b/build/_candidates/oakland/2014-11-04/renato-almanzor.md new file mode 100644 index 0000000..90d10e1 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/renato-almanzor.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Committee to Elect Renato Almanzor to the School Board in 2014 +filer_id: '1365454' +is_incumbent: false +name: Renato Almanzor +--- diff --git a/build/_candidates/oakland/2014-11-04/saied-karamooz.md b/build/_candidates/oakland/2014-11-04/saied-karamooz.md new file mode 100644 index 0000000..5ede4fc --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/saied-karamooz.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Saied Karamooz For Oakland Mayor Movement 2014 +filer_id: '1369536' +is_incumbent: false +name: Saied Karamooz +--- diff --git a/build/_candidates/oakland/2014-11-04/saleem-shakir-gilmore.md b/build/_candidates/oakland/2014-11-04/saleem-shakir-gilmore.md new file mode 100644 index 0000000..34f30c5 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/saleem-shakir-gilmore.md @@ -0,0 +1,7 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Shakir-Gilmore for Oakland School Board 2014 +filer_id: '1365733' +is_incumbent: false +name: Saleem Shakir-Gilmore +--- diff --git a/build/_candidates/oakland/2014-11-04/shanthi-gonzales.md b/build/_candidates/oakland/2014-11-04/shanthi-gonzales.md new file mode 100644 index 0000000..1ce75c8 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/shanthi-gonzales.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Shanthi Gonzales School Board 2014 +filer_id: '1364457' +name: Shanthi Gonzales +--- diff --git a/build/_candidates/oakland/2014-11-04/shereda-nosakhare.md b/build/_candidates/oakland/2014-11-04/shereda-nosakhare.md new file mode 100644 index 0000000..5c3bab4 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/shereda-nosakhare.md @@ -0,0 +1,8 @@ +--- +election: _elections/oakland/2014-11-04.md +committee_name: Shereda Nosakhare for City Council 2014 +filer_id: '1365766' +is_incumbent: false +name: Shereda Nosakhare +public_funding_received: "$17,921" +--- diff --git a/build/_candidates/oakland/2014-11-04/summuel-washington.md b/build/_candidates/oakland/2014-11-04/summuel-washington.md new file mode 100644 index 0000000..9b4cb35 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/summuel-washington.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Summuel Washington +--- diff --git a/build/_candidates/oakland/2014-11-04/vicente-cruz.md b/build/_candidates/oakland/2014-11-04/vicente-cruz.md new file mode 100644 index 0000000..fd282af --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/vicente-cruz.md @@ -0,0 +1,6 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +is_incumbent: false +name: Vicente Cruz +--- diff --git a/build/_candidates/oakland/2014-11-04/william-bo-ghirardelli.md b/build/_candidates/oakland/2014-11-04/william-bo-ghirardelli.md new file mode 100644 index 0000000..f1d8a21 --- /dev/null +++ b/build/_candidates/oakland/2014-11-04/william-bo-ghirardelli.md @@ -0,0 +1,5 @@ +--- +election: _elections/oakland/2014-11-04.md +filer_id: '' +name: William "Bo" Ghirardelli +--- diff --git a/build/_candidates/oakland/2016-11-08/barbara-parker.md b/build/_candidates/oakland/2016-11-08/barbara-parker.md new file mode 100644 index 0000000..5e67c01 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/barbara-parker.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Re-elect City Attorney Barbara Parker 2016 +filer_id: '1382679' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Barbara Parker +occupation: City Attorney +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Barbara-Parker.png +twitter_url: barbarajparker1 +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13239/candidate/130764?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.cityattorneyparker.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/benjamin-lang.md b/build/_candidates/oakland/2016-11-08/benjamin-lang.md new file mode 100644 index 0000000..9bfc87a --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/benjamin-lang.md @@ -0,0 +1,12 @@ +--- +election: _elections/oakland/2016-11-08.md +filer_id: '' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Benjamin Lang +occupation: Retired Teacher and Administrator +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Ben-Lang.png +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13217/candidate/130696?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.benlang.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/bruce-quan.md b/build/_candidates/oakland/2016-11-08/bruce-quan.md new file mode 100644 index 0000000..137cda3 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/bruce-quan.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Bruce Quan for City Council 2016 +filer_id: '1387267' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Bruce Quan +occupation: Real Estate Attorney +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Bruce_Quan.png +twitter_url: BruceforOakland +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13234/candidate/130753?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.bruceforoakland.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/chris-jackson.md b/build/_candidates/oakland/2016-11-08/chris-jackson.md new file mode 100644 index 0000000..7ddec29 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/chris-jackson.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Chris Jackson for School Board 2016 +filer_id: '1384926' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Chris Jackson +occupation: Social Worker +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/chris-jackson.png +twitter_url: cj4oakland +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13219/candidate/130704?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.chrisjacksonforoakland.org/ +--- diff --git a/build/_candidates/oakland/2016-11-08/dan-kalb.md b/build/_candidates/oakland/2016-11-08/dan-kalb.md new file mode 100644 index 0000000..b64b0f1 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/dan-kalb.md @@ -0,0 +1,15 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Re-Elect Dan Kalb Oakland City Council 2016 +filer_id: '1382408' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Dan Kalb +occupation: City Council member +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/dan-kalb2.png +public_funding_received: "$35,843.75" +twitter_url: dankalb +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13235/candidate/130756?&county=Alameda%20County&election_authority_id=1 +website_url: https://dankalb.net +--- diff --git a/build/_candidates/oakland/2016-11-08/donald-macleay.md b/build/_candidates/oakland/2016-11-08/donald-macleay.md new file mode 100644 index 0000000..27e9211 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/donald-macleay.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Macleay for Oakland School Board, District 1, 2016 +filer_id: '1384267' +is_incumbent: false +name: Donald Macleay +occupation: Small business owner +party_affiliation: Green Party +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Donald-Macleay1.png +twitter_url: donmacleay +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13216/candidate/130694?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.don4ousd.org/ +--- diff --git a/build/_candidates/oakland/2016-11-08/francis-matt-hummel.md b/build/_candidates/oakland/2016-11-08/francis-matt-hummel.md new file mode 100644 index 0000000..7b07ab5 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/francis-matt-hummel.md @@ -0,0 +1,11 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Matt Hummel 4 the People +filer_id: '1389717' +is_incumbent: false +name: Francis Matt Hummel +occupation: Chair, Cannabis Regulatory Commission +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/F-Matt-Hummell.png +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13234/candidate/130750?&county=Alameda%20County&election_authority_id=1 +website_url: http://matt4thepeople.nationbuilder.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/huber-trenado.md b/build/_candidates/oakland/2016-11-08/huber-trenado.md new file mode 100644 index 0000000..bc0641f --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/huber-trenado.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Huber Trenado for OUSD School Board 2016 +filer_id: '1386749' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Huber Trenado +occupation: Teacher +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Huber-Trenado.png +twitter_url: hubertrenado +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13218/candidate/130702?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.votetrenadoousd.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/james-harris.md b/build/_candidates/oakland/2016-11-08/james-harris.md new file mode 100644 index 0000000..24b6b5d --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/james-harris.md @@ -0,0 +1,11 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Re-Elect James Harris for School Board +filer_id: '1387803' +is_incumbent: true +name: James Harris +occupation: Board of Education President; owns and operates media company in San Francisco +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/james-harris.png +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13219/candidate/130703?&county=Alameda%20County&election_authority_id=1 +website_url: http://harrisforeastoakland.com/about-james/ +--- diff --git a/build/_candidates/oakland/2016-11-08/jody-london.md b/build/_candidates/oakland/2016-11-08/jody-london.md new file mode 100644 index 0000000..5cf1dfb --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/jody-london.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Friends of Jody London for Oakland School Board 2016 +filer_id: '1303019' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Jody London +occupation: School Board Director, and Sustainability Coordinator +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Jody-London2.jpg.png +twitter_url: votejodylondon +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13216/candidate/130693?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.votejody.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/jumoke-hinton-hodge.md b/build/_candidates/oakland/2016-11-08/jumoke-hinton-hodge.md new file mode 100644 index 0000000..1f57d1c --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/jumoke-hinton-hodge.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Re-Elect Jumoke Hinton Hodge for Oakland School Board 2016 +filer_id: '1386416' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Jumoke Hinton Hodge +occupation: OUSD Councilmember +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Hinton-Hodge.png +twitter_url: hintonhodge4oak +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13217/candidate/130695?&county=Alameda%20County&election_authority_id=1 +website_url: https://hintonhodge.nationbuilder.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/kevin-corbett.md b/build/_candidates/oakland/2016-11-08/kevin-corbett.md new file mode 100644 index 0000000..704380b --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/kevin-corbett.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Kevin Corbett for Oakland City Council 2016, District 1 +filer_id: '1386081' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Kevin Corbett +occupation: Probate Attorney, Business Person and Community Volunteer +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Kevin-Corbett.png +public_funding_received: "$34,644.88" +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13235/candidate/130755?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.corbett4oakland.com/meet-kevin/ +--- diff --git a/build/_candidates/oakland/2016-11-08/kharyshi-wiginton.md b/build/_candidates/oakland/2016-11-08/kharyshi-wiginton.md new file mode 100644 index 0000000..770569c --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/kharyshi-wiginton.md @@ -0,0 +1,12 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Kharyshi Wiginton for School Board 2016 +filer_id: '1386929' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Kharyshi Wiginton +occupation: Youth Leadership Coordinator +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Kharyshi-Wiginton.png +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13217/candidate/130698?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.mskfordistrict3sb.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/larry-reid.md b/build/_candidates/oakland/2016-11-08/larry-reid.md new file mode 100644 index 0000000..f4af85b --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/larry-reid.md @@ -0,0 +1,12 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Re-Elect Larry Reid for Council 2016 +filer_id: '1387905' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Larry Reid +occupation: Councilmember for District 7 +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/larry-reid.png +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13238/candidate/130763?&county=Alameda%20County&election_authority_id=1 +website_url: https://www.facebook.com/LarryReid4District7/ +--- diff --git a/build/_candidates/oakland/2016-11-08/lucky-narain.md b/build/_candidates/oakland/2016-11-08/lucky-narain.md new file mode 100644 index 0000000..dffdcf3 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/lucky-narain.md @@ -0,0 +1,9 @@ +--- +election: _elections/oakland/2016-11-08.md +filer_id: '' +is_incumbent: false +name: Lucky Narain +occupation: Associate Regional Public Affairs Director +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Lucky-Narain.png +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13217/candidate/130697?&county=Alameda%20County&election_authority_id=1 +--- diff --git a/build/_candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.md b/build/_candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.md new file mode 100644 index 0000000..47cf660 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/lynette-gibson-mcelhaney.md @@ -0,0 +1,15 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Re-Elect McElhaney for City Council 2016 +filer_id: '1375179' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Lynette Gibson McElhaney +occupation: City Council member +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Lynette-Gibson-McElhaney.png +public_funding_received: "$6,807.33" +twitter_url: lynettegm +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13236/candidate/130757?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.lynettemcelhaney.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/marcie-hodge.md b/build/_candidates/oakland/2016-11-08/marcie-hodge.md new file mode 100644 index 0000000..7529dbc --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/marcie-hodge.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Hodge 4 Oakland City Council 2016 +filer_id: '1388731' +is_accepted_expenditure_ceiling: false +is_incumbent: false +name: Marcie Hodge +occupation: Non-profit Executive Director +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Marcie-Hodge.png +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13238/candidate/130761?&county=Alameda%20County&election_authority_id=1 +website_url: http://hodge4oaklandcitycouncil.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/michael-hassid.md b/build/_candidates/oakland/2016-11-08/michael-hassid.md new file mode 100644 index 0000000..aa038a8 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/michael-hassid.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Friends of Hassid for School Board Director 2016 +filer_id: '1388133' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Michael Hassid +occupation: VP of Finance and Operations at Nonprofit Organization +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Michael-Hassid.png +twitter_url: michaelhassid +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13218/candidate/130699?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.mikehassidforschoolboard.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/michael-hutchinson.md b/build/_candidates/oakland/2016-11-08/michael-hutchinson.md new file mode 100644 index 0000000..eb6df46 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/michael-hutchinson.md @@ -0,0 +1,11 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Mike Hutchinson for School Board 2016 +filer_id: '134896' +is_incumbent: false +name: Michael Hutchinson +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Mike-Hutchinson.png +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13218/candidate/130700?&county=Alameda%20County&election_authority_id=1 +website_url: https://mikehutchinsonforschoolboard.wordpress.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/nancy-sidebotham.md b/build/_candidates/oakland/2016-11-08/nancy-sidebotham.md new file mode 100644 index 0000000..5cb5e3e --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/nancy-sidebotham.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Committee to Elect Nancy Sidebotham, Councilmember At Large, 2016 +filer_id: '1386741' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Nancy Sidebotham +occupation: Tax Preparer +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/nancy-sidebotham2.png +twitter_url: nancy6368 +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13234/candidate/130754?&county=Alameda%20County&election_authority_id=1 +website_url: http://nancysidebotham.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/nehanda-imara.md b/build/_candidates/oakland/2016-11-08/nehanda-imara.md new file mode 100644 index 0000000..c730e06 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/nehanda-imara.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Nehanda Imara for City Council 2016 +filer_id: '1386932' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Nehanda Imara +occupation: East Oakland Community Organizer +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Nehanda_Imara.png +twitter_url: NehandaForD7 +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13238/candidate/130762?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.nehandafordistrict7.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/noel-gallo.md b/build/_candidates/oakland/2016-11-08/noel-gallo.md new file mode 100644 index 0000000..759d3f8 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/noel-gallo.md @@ -0,0 +1,15 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: ReElect Noel Gallo for Oakland City Council 2016 +filer_id: '1388641' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Noel Gallo +occupation: City Council member +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Noel-Gallo.png +public_funding_received: "$35,843.75" +twitter_url: noelgallo5 +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13237/candidate/130759?&county=Alameda%20County&election_authority_id=1 +website_url: http://galloforoakland.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/noni-session.md b/build/_candidates/oakland/2016-11-08/noni-session.md new file mode 100644 index 0000000..59ea0ae --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/noni-session.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Noni D. Session for City Council 2016 +filer_id: '1386922' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Noni Session +occupation: Assistant Librarian +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Noni-Session2.png +twitter_url: NoniSession +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13236/candidate/130758?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.nonifordistrict3.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/peggy-moore.md b/build/_candidates/oakland/2016-11-08/peggy-moore.md new file mode 100644 index 0000000..0bb0281 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/peggy-moore.md @@ -0,0 +1,15 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Moore for Oakland City Council At-Large 2016 +data_warning: Filer error is impacting the data accuracy for this candidate and causing + 2016 contributions to be over-counted. When the filer corrects the campaign statement, + this warning will be removed. +filer_id: '1388168' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Peggy Moore +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Margaret-Moore.png +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13234/candidate/130752?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.mooreforoakland.com/ +--- diff --git a/build/_candidates/oakland/2016-11-08/rebecca-kaplan.md b/build/_candidates/oakland/2016-11-08/rebecca-kaplan.md new file mode 100644 index 0000000..661cab6 --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/rebecca-kaplan.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Kaplan for Oakland City Council 2016 +filer_id: '1381183' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Rebecca Kaplan +occupation: City Council member At-Large +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/rebecca-kaplan.png +twitter_url: kaplan4oakland +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13234/candidate/130751?&county=Alameda%20County&election_authority_id=1 +website_url: http://kaplanforoakland.org/ +--- diff --git a/build/_candidates/oakland/2016-11-08/roseann-torres.md b/build/_candidates/oakland/2016-11-08/roseann-torres.md new file mode 100644 index 0000000..1bd893f --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/roseann-torres.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Roseann Torres for Oakland School Board 2016 +filer_id: '1379121' +is_incumbent: true +name: Roseann Torres +occupation: School Board Member +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Roseann-Torres.png +twitter_url: roseann_torres +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13218/candidate/130701?&county=Alameda%20County&election_authority_id=1 +website_url: https://www.facebook.com/torresforschoolboard/home?ref=page_internal +--- diff --git a/build/_candidates/oakland/2016-11-08/viola-gonzales.md b/build/_candidates/oakland/2016-11-08/viola-gonzales.md new file mode 100644 index 0000000..ac400ef --- /dev/null +++ b/build/_candidates/oakland/2016-11-08/viola-gonzales.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2016-11-08.md +committee_name: Viola Gonzales for City Council 2016 +filer_id: '1387192' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Viola Gonzales +occupation: Nonprofit Executive +party_affiliation: Democrat +photo_url: https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Viola-Gonzales.png +twitter_url: voteviola +votersedge_url: http://votersedge.org/ca/en/ballot/election/area/42/contests/contest/13237/candidate/130760?&county=Alameda%20County&election_authority_id=1 +website_url: http://www.voteviola.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/abel-guillen.md b/build/_candidates/oakland/2018-11-06/abel-guillen.md new file mode 100644 index 0000000..92f9b81 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/abel-guillen.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Abel Guillen for City Council 2018 +filer_id: '1395580' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Abel Guillén +occupation: Councilmember +photo_url: abel_guillen.png +public_funding_received: "$18,345" +twitter_url: abelguillen +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17339/candidate/139754?&county=alameda%20county&election_authority_id=1 +website_url: http://www.voteabelguillen.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/aimee-eng.md b/build/_candidates/oakland/2018-11-06/aimee-eng.md new file mode 100644 index 0000000..05d6941 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/aimee-eng.md @@ -0,0 +1,11 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Aimee Eng for School Board 2018 +filer_id: '1368984' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Aimee Eng +occupation: School Board Director +photo_url: Aimee-Eng.png +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17849?&county=alameda%20county&election_authority_id=1 +--- diff --git a/build/_candidates/oakland/2018-11-06/anthony-wilson.md b/build/_candidates/oakland/2018-11-06/anthony-wilson.md new file mode 100644 index 0000000..c6bc786 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/anthony-wilson.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Anthony Wilson for School Board OUSD 2018 +data_warning: Missing information is preventing display of this candidate's data. + To view campaign statements or download raw data visit Oakland’s + public campaign finance portal. +filer_id: '1412686' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Anthony Wilson +photo_url: anthony-wilson.png +twitter_url: AnthonyForOakland +website_url: https://www.anthonyforoakland.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/brenda-roberts.md b/build/_candidates/oakland/2018-11-06/brenda-roberts.md new file mode 100644 index 0000000..f0233a7 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/brenda-roberts.md @@ -0,0 +1,12 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Brenda Roberts for Oakland City Auditor 2018 +filer_id: '1403762' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Brenda Roberts +occupation: City Auditor +photo_url: brenda_roberts.png +twitter_url: OaklandAuditor +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17338/candidate/139751?&county=alameda%20county&election_authority_id=1 +--- diff --git a/build/_candidates/oakland/2018-11-06/cat-brooks.md b/build/_candidates/oakland/2018-11-06/cat-brooks.md new file mode 100644 index 0000000..0a84a7c --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/cat-brooks.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Sheilagh Polk "Cat Brooks" for Mayor 2018 +filer_id: '1405474' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Cat Brooks +occupation: Executive/Community Organizer +photo_url: Cat-Brooks.png +twitter_url: CatsCommentary +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139768?&county=alameda%20county&election_authority_id=1 +website_url: https://www.catbrooksforoakland.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/cedric-anthony-troupe.md b/build/_candidates/oakland/2018-11-06/cedric-anthony-troupe.md new file mode 100644 index 0000000..cfd2531 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/cedric-anthony-troupe.md @@ -0,0 +1,11 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Troupe for Mayor 2018 +filer_id: '' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Cedric Anthony Troupe +occupation: Swim Coach/Technician +photo_url: Cedric-Anthony-Troupe.png +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139777?&county=alameda%20county&election_authority_id=1 +--- diff --git a/build/_candidates/oakland/2018-11-06/charlie-michelson.md b/build/_candidates/oakland/2018-11-06/charlie-michelson.md new file mode 100644 index 0000000..6829069 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/charlie-michelson.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Charlie Michelson for Oakland City Council 2018 +filer_id: '1406241' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Charlie Michelson +occupation: Local Business Owner +photo_url: Charlie-Michelson.png +public_funding_received: "$15,288" +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139759?&county=alameda%20county&election_authority_id=1 +website_url: https://www.charlie.vote/ +--- diff --git a/build/_candidates/oakland/2018-11-06/clarissa-doutherd.md b/build/_candidates/oakland/2018-11-06/clarissa-doutherd.md new file mode 100644 index 0000000..460b6ba --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/clarissa-doutherd.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Doutherd for School Board 2018 +filer_id: '1404085' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Clarissa Doutherd +occupation: Parent/Non-Profit Executive +photo_url: Clarissa-Doutherd.png +twitter_url: msclarissaellen +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17364/candidate/139862?&county=alameda%20county&election_authority_id=1 +website_url: https://www.clarissaforoaklandschools.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/courtney-ruby.md b/build/_candidates/oakland/2018-11-06/courtney-ruby.md new file mode 100644 index 0000000..62f5fc3 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/courtney-ruby.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Courtney Ruby for Oakland City Auditor 2018 +filer_id: '1408075' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Courtney Ruby +occupation: Chief Financial Officer +photo_url: courtney-ruby.png +twitter_url: CourtneyRuby +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17338/candidate/139752?&county=alameda%20county&election_authority_id=1 +website_url: https://courtneyruby.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/desley-brooks.md b/build/_candidates/oakland/2018-11-06/desley-brooks.md new file mode 100644 index 0000000..0cf6ec9 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/desley-brooks.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Desley Brooks for City Council 2018 +filer_id: '1236617' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Desley Brooks +occupation: Councilmember +photo_url: Desley-Brooks.png +twitter_url: desleyb +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17341/candidate/139763?&county=alameda%20county&election_authority_id=1 +website_url: https://www.desley4d6.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/donte-kenzie-smith.md b/build/_candidates/oakland/2018-11-06/donte-kenzie-smith.md new file mode 100644 index 0000000..68154e6 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/donte-kenzie-smith.md @@ -0,0 +1,10 @@ +--- +election: _elections/oakland/2018-11-06.md +filer_id: '' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Donte Kenzie Smith +occupation: Business Owner +photo_url: Carlos-'Kenzie'-Smith.png +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17339/candidate/139755?&county=alameda%20county&election_authority_id=1 +--- diff --git a/build/_candidates/oakland/2018-11-06/francis-hummel.md b/build/_candidates/oakland/2018-11-06/francis-hummel.md new file mode 100644 index 0000000..35bf1f0 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/francis-hummel.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Matt Hummel 4D4 City Council 2018 +filer_id: '1408016' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Francis Hummel +occupation: Carpenter +photo_url: Matt-Francis-Hummel.png +public_funding_received: "$14,771" +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139757?&county=alameda%20county&election_authority_id=1 +website_url: https://www.facebook.com/fmatt.hummel +--- diff --git a/build/_candidates/oakland/2018-11-06/gary-yee.md b/build/_candidates/oakland/2018-11-06/gary-yee.md new file mode 100644 index 0000000..d255c4c --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/gary-yee.md @@ -0,0 +1,12 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Gary Yee for Oakland School Board 2018 +filer_id: '1409088' +is_accepted_expenditure_ceiling: false +is_incumbent: false +name: Gary Yee +occupation: Oakland Educator +photo_url: gary-yee.png +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17364/candidate/139863?&county=alameda%20county&election_authority_id=1 +website_url: http://www.yee4schools.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md b/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md new file mode 100644 index 0000000..90c9eda --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md @@ -0,0 +1,12 @@ +--- +election: _elections/oakland/2018-11-06.md +filer_id: '' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Jesse A.J. Smith +occupation: Writer +photo_url: Jesse-Smith.png +twitter_url: OakSmith2018 +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139775?&county=alameda%20county&election_authority_id=1 +website_url: https://oaksmith2018.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/joseph-simmons.md b/build/_candidates/oakland/2018-11-06/joseph-simmons.md new file mode 100644 index 0000000..cfbf216 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/joseph-simmons.md @@ -0,0 +1,12 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Joseph Simmons for Oakland City Council (District 4) 2018 +filer_id: '1406398' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Joseph Simmons +occupation: Pastor/Non-Profit Leader +photo_url: Joseph-Simmons.png +twitter_url: joseph4oakland +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139760?&county=alameda%20county&election_authority_id=1 +--- diff --git a/build/_candidates/oakland/2018-11-06/joseph-tanios.md b/build/_candidates/oakland/2018-11-06/joseph-tanios.md new file mode 100644 index 0000000..e689918 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/joseph-tanios.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Joseph Tanios for Oakland City Council 2018 +filer_id: '1406153' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Joseph Tanios +occupation: Construction Inspection Supervisor +photo_url: Joseph-Tanios.png +public_funding_received: "$7,463" +twitter_url: taniosfor +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139761?&county=alameda%20county&election_authority_id=1 +website_url: https://www.joetanios.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/ken-houston.md b/build/_candidates/oakland/2018-11-06/ken-houston.md new file mode 100644 index 0000000..a572e67 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/ken-houston.md @@ -0,0 +1,12 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Ken Houston for Oakland Mayor 2018 +filer_id: '1408367' +is_accepted_expenditure_ceiling: false +is_incumbent: false +name: Ken Houston +photo_url: Ken-Houston.png +twitter_url: KHouston4Mayor +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139769?&county=alameda%20county&election_authority_id=1 +website_url: http://sonofoakland.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/libby-schaaf.md b/build/_candidates/oakland/2018-11-06/libby-schaaf.md new file mode 100644 index 0000000..9c7a883 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/libby-schaaf.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Libby Schaaf for Mayor 2018 +filer_id: '1395968' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Libby Schaaf +occupation: Mayor +photo_url: libby_schaaf.png +twitter_url: LibbySchaaf +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139773?&county=alameda%20county&election_authority_id=1 +website_url: https://libbyformayor.wordpress.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/loren-taylor.md b/build/_candidates/oakland/2018-11-06/loren-taylor.md new file mode 100644 index 0000000..72fa117 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/loren-taylor.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Loren Taylor for Oakland City Council 2018 +filer_id: '1401499' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Loren Taylor +occupation: Entrepreneur/Non-Profit Boardmember +photo_url: Loren_Taylor.png +public_funding_received: "$18,345" +twitter_url: lorenmtaylor +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17341/candidate/139766?&county=alameda%20county&election_authority_id=1 +website_url: https://www.lorentaylor.org/ +--- diff --git a/build/_candidates/oakland/2018-11-06/marchon-tatmon.md b/build/_candidates/oakland/2018-11-06/marchon-tatmon.md new file mode 100644 index 0000000..a44ed4b --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/marchon-tatmon.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Marchon Tatmon Mayor for Oakland 2018 +filer_id: '1403436' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Marchon Tatmon +occupation: Housing Professional +photo_url: marchon-tatmon.png +twitter_url: therealmtat1 +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139776?&county=alameda%20county&election_authority_id=1 +website_url: http://votemarchon.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/maria-marlo-rodriguez.md b/build/_candidates/oakland/2018-11-06/maria-marlo-rodriguez.md new file mode 100644 index 0000000..11e8ea0 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/maria-marlo-rodriguez.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Marlo Rodriguez for City Council 2018 +filer_id: '1404416' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Maria "Marlo" Rodriguez +occupation: Registered Nurse +photo_url: Marlo-Rodriguez.png +twitter_url: marlo4oakland +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17341/candidate/139765?&county=alameda%20county&election_authority_id=1 +website_url: https://www.marlo4oakland.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/mya-whitaker.md b/build/_candidates/oakland/2018-11-06/mya-whitaker.md new file mode 100644 index 0000000..6215ca0 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/mya-whitaker.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Whitaker for Oakland City Council 2018 +filer_id: '1405266' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Mya Whitaker +occupation: Nonprofit Program Director +photo_url: Mya-Whitaker.png +twitter_url: whitfordist6 +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17341/candidate/139767?&county=alameda%20county&election_authority_id=1 +website_url: https://whitakerforoakland.com +--- diff --git a/build/_candidates/oakland/2018-11-06/nancy-sidebotham.md b/build/_candidates/oakland/2018-11-06/nancy-sidebotham.md new file mode 100644 index 0000000..a35b4ab --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/nancy-sidebotham.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +filer_id: '' +is_accepted_expenditure_ceiling: false +is_incumbent: false +name: Nancy Sidebotham +occupation: Tax Preparer +party_affiliation: Democrat +photo_url: Nancy-Sidebotham.png +twitter_url: nancy6368 +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139774?&county=alameda%20county&election_authority_id=1 +website_url: http://nancysidebotham.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/natasha-middleton.md b/build/_candidates/oakland/2018-11-06/natasha-middleton.md new file mode 100644 index 0000000..c0be362 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/natasha-middleton.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Natasha Middleton for Oakland City Council 2018 +filer_id: '1403124' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Natasha Middleton +occupation: Management Analyst +photo_url: Natasha-Middleton.png +public_funding_received: "$18,345" +twitter_url: MiddletonNat +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17341/candidate/139764?&county=alameda%20county&election_authority_id=1 +website_url: https://www.natashaforoakland.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/nayeli-maxson.md b/build/_candidates/oakland/2018-11-06/nayeli-maxson.md new file mode 100644 index 0000000..b4ca769 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/nayeli-maxson.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Nayeli Maxson for Oakland City Council +filer_id: '1405187' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Nayeli Maxson +occupation: Executive Director/Attorney +photo_url: Nayeli-Maxson.png +public_funding_received: "$18,345" +twitter_url: nayelimax +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139758?&county=alameda%20county&election_authority_id=1 +website_url: https://nayeliforoakland.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/nikki-fortunato-bas.md b/build/_candidates/oakland/2018-11-06/nikki-fortunato-bas.md new file mode 100644 index 0000000..6cac2cd --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/nikki-fortunato-bas.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Nikki Fortunato Bas for Oakland City Council 2018 +filer_id: '1400325' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Nikki Fortunato Bas +occupation: Non-profit Executive/Mother +photo_url: nikki_fortunato_bas.png +public_funding_received: "$18,354" +twitter_url: Nikki4Oakland +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17339/candidate/139753?&county=alameda%20county&election_authority_id=1 +website_url: http://www.nikki4oakland.com +--- diff --git a/build/_candidates/oakland/2018-11-06/pamela-harris.md b/build/_candidates/oakland/2018-11-06/pamela-harris.md new file mode 100644 index 0000000..6585026 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/pamela-harris.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Pamela Harris for Oakland City Council 2018 +filer_id: '1405422' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Pamela Harris +occupation: Non-Profit Finance Professional +photo_url: Pamela-Harris.png +public_funding_received: "$18,345" +twitter_url: Pamharris +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139756?&county=alameda%20county&election_authority_id=1 +website_url: https://www.pamharris4oakland.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/pamela-price.md b/build/_candidates/oakland/2018-11-06/pamela-price.md new file mode 100644 index 0000000..42dc402 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/pamela-price.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Pamela Price for Mayor 2018 +filer_id: '1407729' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Pamela Price +occupation: Civil Rights Attorney +photo_url: Pamela-Price.png +twitter_url: PPriceCares +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139772?&county=alameda%20county&election_authority_id=1 +website_url: https://www.pamelaprice4mayor.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/peter-liu.md b/build/_candidates/oakland/2018-11-06/peter-liu.md new file mode 100644 index 0000000..ba06679 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/peter-liu.md @@ -0,0 +1,10 @@ +--- +election: _elections/oakland/2018-11-06.md +filer_id: '' +is_accepted_expenditure_ceiling: false +is_incumbent: false +name: Peter Liu +photo_url: Peter-Liu.png +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139771?&county=alameda%20county&election_authority_id=1 +website_url: https://localwiki.org/oakland/Peter_Y._Liu +--- diff --git a/build/_candidates/oakland/2018-11-06/saied-karamooz.md b/build/_candidates/oakland/2018-11-06/saied-karamooz.md new file mode 100644 index 0000000..6e92a16 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/saied-karamooz.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Saied Karamooz for Oakland Mayor 2018 +filer_id: '1401694' +is_accepted_expenditure_ceiling: false +is_incumbent: false +name: Saied Karamooz +occupation: Chief Operating Officer +photo_url: Saied-Karamooz.png +twitter_url: SAiED4Oakland +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17342/candidate/139770?&county=alameda%20county&election_authority_id=1 +website_url: https://everyonesmayor.org/ +--- diff --git a/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md b/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md new file mode 100644 index 0000000..256278e --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md @@ -0,0 +1,13 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Gonzales for School Board 2018 +filer_id: '1404347' +is_accepted_expenditure_ceiling: true +is_incumbent: true +name: Shanthi Gonzales +occupation: School Board Director +photo_url: Shanthi-Gonzales.png +twitter_url: ShanthiGonzales +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17850?&county=alameda%20county&election_authority_id=1 +website_url: http://gonzalesforschools.nationbuilder.com/ +--- diff --git a/build/_candidates/oakland/2018-11-06/sheng-thao.md b/build/_candidates/oakland/2018-11-06/sheng-thao.md new file mode 100644 index 0000000..71ce4a4 --- /dev/null +++ b/build/_candidates/oakland/2018-11-06/sheng-thao.md @@ -0,0 +1,14 @@ +--- +election: _elections/oakland/2018-11-06.md +committee_name: Sheng Thao for Oakland City Council 2018 +filer_id: '1405456' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: Sheng Thao +occupation: Chief of Staff +photo_url: Sheng-Thao.png +public_funding_received: "$18,345" +twitter_url: sheng_tha0 +votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139762?&c ```
mikeubell commented 9 months ago
Build diff from Commit 463a32d5cff60fb20eb7949280b16ffa6787b1a8: ```diff diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index dcaec44..20223e0 100644 --- a/build/_data/committees/1342695.json +++ b/build/_data/committees/1342695.json @@ -42,7 +42,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -52,10 +52,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -65,10 +65,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -78,10 +78,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -91,7 +91,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -107,7 +107,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -117,10 +117,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -130,7 +130,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -146,7 +146,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -156,10 +156,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -169,10 +169,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -182,7 +182,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -198,7 +198,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -208,10 +208,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -221,7 +221,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -237,7 +237,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -247,10 +247,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -260,7 +260,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -276,7 +276,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -286,7 +286,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -302,7 +302,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -312,7 +312,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -354,7 +354,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -364,10 +364,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -377,7 +377,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -393,7 +393,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -403,10 +403,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -416,10 +416,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -429,10 +429,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -442,10 +442,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -455,10 +455,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -468,7 +468,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -510,7 +510,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -520,10 +520,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -533,7 +533,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -562,7 +562,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -572,10 +572,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -585,10 +585,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -598,10 +598,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -611,10 +611,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -624,10 +624,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -637,10 +637,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -650,7 +650,7 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -718,7 +718,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -728,10 +728,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -741,10 +741,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -754,10 +754,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -767,10 +767,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -780,10 +780,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -793,7 +793,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -809,7 +809,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -819,10 +819,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -832,10 +832,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -845,10 +845,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -858,7 +858,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -900,7 +900,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -910,7 +910,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -926,7 +926,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -936,7 +936,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -978,7 +978,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -988,10 +988,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1001,10 +1001,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1014,7 +1014,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1030,7 +1030,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1040,10 +1040,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1053,10 +1053,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1066,10 +1066,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1079,7 +1079,7 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1095,7 +1095,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1105,10 +1105,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1118,7 +1118,7 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1173,7 +1173,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1183,7 +1183,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1199,7 +1199,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1209,10 +1209,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1222,10 +1222,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1235,7 +1235,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1264,7 +1264,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1274,10 +1274,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1287,10 +1287,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1300,10 +1300,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1313,10 +1313,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1326,10 +1326,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1339,10 +1339,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1352,10 +1352,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1365,7 +1365,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1407,7 +1407,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1417,10 +1417,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1430,10 +1430,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1443,7 +1443,7 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1459,7 +1459,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1469,10 +1469,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1482,10 +1482,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1495,10 +1495,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1508,10 +1508,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1521,10 +1521,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1534,10 +1534,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1547,10 +1547,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1560,10 +1560,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1573,10 +1573,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1586,10 +1586,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1599,7 +1599,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1615,7 +1615,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1625,10 +1625,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1638,10 +1638,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1651,7 +1651,7 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -1667,7 +1667,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1677,7 +1677,7 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1732,7 +1732,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1742,10 +1742,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1755,10 +1755,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1768,10 +1768,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1781,7 +1781,7 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1810,7 +1810,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1820,10 +1820,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1833,7 +1833,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1849,7 +1849,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1859,10 +1859,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1872,10 +1872,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1885,10 +1885,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1898,10 +1898,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1911,7 +1911,7 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2044,7 +2044,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2054,10 +2054,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2067,7 +2067,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2083,7 +2083,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2093,10 +2093,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2106,7 +2106,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2187,7 +2187,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2197,10 +2197,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2210,10 +2210,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2223,7 +2223,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2239,7 +2239,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2249,10 +2249,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2262,10 +2262,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2275,10 +2275,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2288,10 +2288,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2301,10 +2301,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2314,7 +2314,7 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -2330,7 +2330,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2340,10 +2340,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2353,10 +2353,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2366,10 +2366,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2379,10 +2379,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2392,7 +2392,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2408,7 +2408,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2418,10 +2418,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2431,7 +2431,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2447,7 +2447,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2457,10 +2457,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2470,10 +2470,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2483,10 +2483,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2496,10 +2496,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2509,7 +2509,7 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2525,7 +2525,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2535,10 +2535,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2548,10 +2548,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2561,10 +2561,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2574,7 +2574,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2616,7 +2616,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", @@ -2626,10 +2626,10 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", @@ -2639,7 +2639,7 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2694,7 +2694,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2704,10 +2704,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2717,10 +2717,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2730,10 +2730,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2743,7 +2743,7 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2759,7 +2759,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2769,7 +2769,7 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2784,19 +2784,6 @@ "Tran_Zip4": "94703-1830", "election_name": "oakland-2020" }, - { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Aplia", - "Tran_Occ": "Biology Editor", - "Entity_Cd": "Individual", - "Tran_Amt1": 30.0, - "Tran_Date": "2014-12-05", - "Tran_NamF": "Louise", - "Tran_NamL": "Parker", - "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" - }, { "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", @@ -2811,17 +2798,17 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", "Entity_Cd": "Individual", - "Tran_Amt1": 95.0, + "Tran_Amt1": 30.0, "Tran_Date": "2014-12-05", "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2016 Election", @@ -2852,6 +2839,19 @@ { "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", + "Tran_Emp": "Aplia", + "Tran_Occ": "Biology Editor", + "Entity_Cd": "Individual", + "Tran_Amt1": 95.0, + "Tran_Date": "2014-12-05", + "Tran_NamF": "Louise", + "Tran_NamL": "Parker", + "Tran_Zip4": "94703-1830", + "election_name": "oakland-2022" + }, + { + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, "Entity_Cd": "Other (includes Businesses)", @@ -2860,7 +2860,7 @@ "Tran_NamF": null, "Tran_NamL": "Fran Slate Property Management", "Tran_Zip4": "94526", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2876,7 +2876,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2886,10 +2886,10 @@ "Tran_NamF": null, "Tran_NamL": "Fran Slate Property Management", "Tran_Zip4": "94526", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2899,10 +2899,10 @@ "Tran_NamF": null, "Tran_NamL": "Fran Slate Property Management", "Tran_Zip4": "94526", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": ```
mikeubell commented 8 months ago
Build diff from Commit 40290cb24f2c48ef741426b409ae336595f02d0a: ```diff diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index dcaec44..71ac3d0 100644 --- a/build/_data/committees/1342695.json +++ b/build/_data/committees/1342695.json @@ -81,7 +81,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -91,7 +91,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -107,7 +107,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -117,7 +117,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -133,7 +133,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -143,10 +143,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -156,10 +156,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -169,10 +169,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -182,10 +182,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -195,7 +195,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -211,7 +211,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -221,10 +221,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -234,10 +234,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -247,7 +247,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -263,7 +263,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -273,10 +273,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -286,7 +286,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -302,7 +302,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -312,10 +312,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -325,10 +325,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -338,10 +338,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -351,10 +351,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -364,10 +364,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -377,10 +377,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -390,10 +390,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -403,10 +403,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -416,10 +416,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -429,10 +429,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -442,10 +442,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -455,7 +455,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -471,7 +471,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -481,10 +481,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -494,7 +494,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -510,7 +510,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -520,10 +520,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -533,10 +533,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -546,7 +546,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -562,7 +562,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -572,10 +572,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -585,10 +585,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -598,10 +598,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -611,7 +611,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -627,7 +627,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -637,10 +637,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -650,7 +650,7 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -666,7 +666,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -676,10 +676,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -689,10 +689,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -702,10 +702,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -715,10 +715,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -728,10 +728,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -741,10 +741,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -754,10 +754,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -767,10 +767,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -780,10 +780,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -793,7 +793,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -809,7 +809,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -819,10 +819,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -832,7 +832,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -848,7 +848,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -858,10 +858,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -871,10 +871,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -884,7 +884,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -900,7 +900,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -910,7 +910,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -926,7 +926,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -936,7 +936,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -952,7 +952,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -962,10 +962,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -975,10 +975,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -988,10 +988,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1001,10 +1001,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1014,10 +1014,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1027,7 +1027,7 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1043,7 +1043,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1053,7 +1053,7 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1095,7 +1095,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1105,10 +1105,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1118,10 +1118,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1131,10 +1131,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1144,7 +1144,7 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1160,7 +1160,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1170,10 +1170,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1183,7 +1183,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1199,7 +1199,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1209,7 +1209,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2016 Election", @@ -1251,7 +1251,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1261,10 +1261,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1274,10 +1274,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1287,7 +1287,7 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1329,7 +1329,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1339,10 +1339,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1352,7 +1352,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1368,7 +1368,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1378,7 +1378,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1394,7 +1394,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1404,7 +1404,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1485,7 +1485,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1495,7 +1495,7 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1511,7 +1511,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1521,10 +1521,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1534,7 +1534,7 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1550,7 +1550,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1560,10 +1560,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1573,10 +1573,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1586,10 +1586,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1599,10 +1599,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1612,10 +1612,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1625,7 +1625,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1641,7 +1641,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1651,7 +1651,7 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -1667,7 +1667,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1677,10 +1677,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1690,10 +1690,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1703,7 +1703,7 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1732,7 +1732,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1742,10 +1742,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1755,10 +1755,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1768,10 +1768,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1781,7 +1781,7 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1797,7 +1797,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1807,10 +1807,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1820,7 +1820,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -1875,7 +1875,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1885,7 +1885,7 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -1901,7 +1901,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1911,10 +1911,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1924,10 +1924,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1937,10 +1937,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1950,10 +1950,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1963,10 +1963,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1976,7 +1976,7 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1992,7 +1992,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2002,10 +2002,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2015,10 +2015,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2028,10 +2028,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2041,10 +2041,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2054,7 +2054,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2070,7 +2070,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2080,10 +2080,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2093,10 +2093,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2106,10 +2106,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2119,7 +2119,7 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2135,7 +2135,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2145,7 +2145,7 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2239,7 +2239,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2249,10 +2249,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2262,7 +2262,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -2304,7 +2304,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2314,7 +2314,7 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -2330,7 +2330,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2340,7 +2340,7 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2356,7 +2356,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2366,10 +2366,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2379,10 +2379,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2392,7 +2392,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2408,7 +2408,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2418,10 +2418,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2431,10 +2431,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2444,10 +2444,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2457,10 +2457,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2470,10 +2470,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2483,10 +2483,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2496,10 +2496,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2509,10 +2509,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2522,10 +2522,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2535,10 +2535,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2548,10 +2548,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2561,10 +2561,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2574,10 +2574,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2587,10 +2587,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2600,10 +2600,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2613,7 +2613,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2694,7 +2694,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2704,10 +2704,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2717,10 +2717,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2730,10 +2730,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2743,10 +2743,10 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2756,10 +2756,10 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": " ```
mikeubell commented 8 months ago
Build diff from Commit db38143ca8d425e429a3d32dec988de5f185a765: ```diff diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index dcaec44..b7d13a8 100644 --- a/build/_data/committees/1342695.json +++ b/build/_data/committees/1342695.json @@ -16,7 +16,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -26,10 +26,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -39,10 +39,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -52,10 +52,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -65,7 +65,7 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -81,7 +81,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -91,10 +91,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -104,10 +104,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -117,10 +117,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -130,10 +130,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -143,7 +143,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -159,7 +159,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -169,10 +169,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -182,10 +182,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -195,10 +195,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -208,10 +208,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -221,7 +221,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -237,7 +237,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -247,10 +247,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -260,7 +260,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -276,7 +276,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -286,10 +286,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -299,10 +299,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -312,10 +312,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -325,10 +325,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -338,7 +338,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -354,7 +354,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -364,10 +364,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -377,10 +377,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -390,10 +390,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -403,10 +403,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -416,10 +416,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -429,10 +429,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -442,7 +442,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -458,7 +458,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -468,10 +468,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -481,7 +481,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -497,7 +497,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -507,7 +507,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -523,7 +523,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -533,10 +533,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -546,10 +546,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -559,10 +559,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -572,10 +572,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -585,7 +585,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -640,7 +640,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -650,10 +650,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -663,7 +663,7 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -705,7 +705,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -715,10 +715,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -728,10 +728,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -741,7 +741,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -757,7 +757,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -767,10 +767,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -780,7 +780,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -796,7 +796,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -806,10 +806,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -819,7 +819,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -835,7 +835,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -845,10 +845,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -858,10 +858,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -871,10 +871,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -884,7 +884,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -900,7 +900,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -910,10 +910,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -923,10 +923,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -936,10 +936,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -949,7 +949,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -965,7 +965,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -975,10 +975,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -988,7 +988,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -1004,7 +1004,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1014,7 +1014,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1056,7 +1056,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1066,10 +1066,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1079,7 +1079,7 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1095,7 +1095,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1105,10 +1105,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1118,7 +1118,7 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1173,7 +1173,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1183,10 +1183,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1196,10 +1196,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1209,10 +1209,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1222,7 +1222,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1238,7 +1238,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1248,7 +1248,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2016 Election", @@ -1264,7 +1264,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1274,10 +1274,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1287,7 +1287,7 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1329,7 +1329,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1339,10 +1339,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1352,10 +1352,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1365,10 +1365,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1378,10 +1378,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1391,10 +1391,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1404,10 +1404,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1417,10 +1417,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1430,10 +1430,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1443,7 +1443,7 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1485,7 +1485,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1495,10 +1495,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1508,10 +1508,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1521,10 +1521,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1534,10 +1534,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1547,10 +1547,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1560,7 +1560,7 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1576,7 +1576,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1586,10 +1586,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1599,10 +1599,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1612,7 +1612,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1628,7 +1628,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1638,10 +1638,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1651,10 +1651,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1664,10 +1664,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1677,10 +1677,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1690,10 +1690,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1703,10 +1703,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1716,10 +1716,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1729,10 +1729,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1742,10 +1742,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1755,10 +1755,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1768,10 +1768,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1781,10 +1781,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1794,10 +1794,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1807,7 +1807,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1823,7 +1823,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1833,10 +1833,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1846,7 +1846,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1862,7 +1862,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1872,10 +1872,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1885,10 +1885,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1898,10 +1898,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1911,10 +1911,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1924,10 +1924,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1937,10 +1937,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1950,10 +1950,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1963,10 +1963,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1976,7 +1976,7 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1992,7 +1992,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2002,7 +2002,7 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2018,7 +2018,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2028,10 +2028,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2041,10 +2041,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2054,7 +2054,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2070,7 +2070,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2080,10 +2080,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2093,10 +2093,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2106,7 +2106,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2226,7 +2226,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2236,10 +2236,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2249,7 +2249,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2265,7 +2265,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2275,10 +2275,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2288,10 +2288,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2301,10 +2301,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2314,10 +2314,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2327,10 +2327,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2340,7 +2340,7 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2382,7 +2382,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2392,10 +2392,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2405,7 +2405,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2421,7 +2421,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2431,7 +2431,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2447,7 +2447,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2457,7 +2457,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2512,7 +2512,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2522,10 +2522,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2535,34 +2535,8 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" - }, - { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Merker Realty Group", - "Tran_Occ": "Realtor", - "Entity_Cd": "Individual", - "Tran_Amt1": 20.0, - "Tran_Date": "2014-11-14", - "Tran_NamF": "Rob", - "Tran_NamL": "Merker", - "Tran_Zip4": "94611", "election_name": "oakland-2016" }, - { - "title": "Oakland November 8th, 2022 General Election", - "Filer_ID": "1342695", - "Tran_Emp": "Merker Realty Group", - "Tran_Occ": "Realtor", - "Entity_Cd": "Individual", - "Tran_Amt1": 20.0, - "Tran_Date": "2014-11-14", - "Tran_NamF": "Rob", - "Tran_NamL": "Merker", - "Tran_Zip4": "94611", - "election_name": "oakland-2022" - }, { "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", @@ -2582,7 +2556,7 @@ "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", "Entity_Cd": "Individual", - "Tran_Amt1": 95.0, + "Tran_Amt1": 20.0, "Tran_Date": "2014-11-14", "Tran_NamF": "Rob", "Tran_NamL": "Merker", @@ -2590,7 +2564,20 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", + "Tran_Emp": "Merker Realty Group", + "Tran_Occ": "Realtor", + "Entity_Cd": "Individual", + "Tran_Amt1": 20.0, + "Tran_Date": "2014-11-14", + "Tran_NamF": "Rob", + "Tran_NamL": "Merker", + "Tran_Zip4": "94611", + "election_name": "oakland-2016" + }, + { + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2600,7 +2587,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2616,7 +2603,20 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", + "Filer_ID": "1342695", + "Tran_Emp": "Merker Realty Group", + "Tran_Occ": "Realtor", + "Entity_Cd": "Individual", + "Tran_Amt1": 95.0, + "Tran_Date": "2014-11-14", + "Tran_NamF": "Rob", + "Tran_NamL": "Merker", + "Tran_Zip4": "94611", + "election_name": "oakland-2020" + }, + { + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", @@ -2626,10 +2626,10 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", @@ -2639,10 +2639,10 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland Nove ```
mikeubell commented 8 months ago
Build diff from Commit 201a18cc3c0e91299d2e6593ce76eb60ff42840d: ```diff diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index dcaec44..b7d13a8 100644 --- a/build/_data/committees/1342695.json +++ b/build/_data/committees/1342695.json @@ -16,7 +16,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -26,10 +26,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -39,10 +39,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -52,10 +52,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -65,7 +65,7 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -81,7 +81,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -91,10 +91,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -104,10 +104,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -117,10 +117,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -130,10 +130,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -143,7 +143,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -159,7 +159,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -169,10 +169,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -182,10 +182,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -195,10 +195,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -208,10 +208,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -221,7 +221,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -237,7 +237,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -247,10 +247,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -260,7 +260,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -276,7 +276,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -286,10 +286,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -299,10 +299,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -312,10 +312,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -325,10 +325,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -338,7 +338,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -354,7 +354,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -364,10 +364,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -377,10 +377,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -390,10 +390,10 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -403,10 +403,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -416,10 +416,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -429,10 +429,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -442,7 +442,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -458,7 +458,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -468,10 +468,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -481,7 +481,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -497,7 +497,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -507,7 +507,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -523,7 +523,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -533,10 +533,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -546,10 +546,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -559,10 +559,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -572,10 +572,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -585,7 +585,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -640,7 +640,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -650,10 +650,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -663,7 +663,7 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -705,7 +705,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -715,10 +715,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -728,10 +728,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -741,7 +741,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -757,7 +757,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -767,10 +767,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -780,7 +780,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -796,7 +796,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -806,10 +806,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -819,7 +819,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -835,7 +835,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -845,10 +845,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -858,10 +858,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -871,10 +871,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -884,7 +884,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -900,7 +900,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -910,10 +910,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -923,10 +923,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -936,10 +936,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -949,7 +949,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -965,7 +965,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -975,10 +975,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -988,7 +988,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -1004,7 +1004,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1014,7 +1014,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1056,7 +1056,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1066,10 +1066,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1079,7 +1079,7 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1095,7 +1095,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1105,10 +1105,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1118,7 +1118,7 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1173,7 +1173,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1183,10 +1183,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1196,10 +1196,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1209,10 +1209,10 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1222,7 +1222,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1238,7 +1238,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1248,7 +1248,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2016 Election", @@ -1264,7 +1264,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1274,10 +1274,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1287,7 +1287,7 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1329,7 +1329,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1339,10 +1339,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1352,10 +1352,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1365,10 +1365,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1378,10 +1378,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1391,10 +1391,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1404,10 +1404,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1417,10 +1417,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1430,10 +1430,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1443,7 +1443,7 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1485,7 +1485,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1495,10 +1495,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1508,10 +1508,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1521,10 +1521,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1534,10 +1534,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1547,10 +1547,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1560,7 +1560,7 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1576,7 +1576,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1586,10 +1586,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1599,10 +1599,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1612,7 +1612,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1628,7 +1628,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1638,10 +1638,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1651,10 +1651,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1664,10 +1664,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1677,10 +1677,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1690,10 +1690,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1703,10 +1703,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1716,10 +1716,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1729,10 +1729,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1742,10 +1742,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1755,10 +1755,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1768,10 +1768,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1781,10 +1781,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1794,10 +1794,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1807,7 +1807,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1823,7 +1823,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1833,10 +1833,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1846,7 +1846,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1862,7 +1862,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1872,10 +1872,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1885,10 +1885,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1898,10 +1898,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1911,10 +1911,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1924,10 +1924,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1937,10 +1937,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1950,10 +1950,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1963,10 +1963,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1976,7 +1976,7 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1992,7 +1992,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2002,7 +2002,7 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2018,7 +2018,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2028,10 +2028,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2041,10 +2041,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2054,7 +2054,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2070,7 +2070,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2080,10 +2080,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2093,10 +2093,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2106,7 +2106,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2226,7 +2226,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2236,10 +2236,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2249,7 +2249,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2265,7 +2265,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2275,10 +2275,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2288,10 +2288,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2301,10 +2301,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2314,10 +2314,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2327,10 +2327,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2340,7 +2340,7 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2382,7 +2382,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2392,10 +2392,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2405,7 +2405,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2421,7 +2421,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2431,7 +2431,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2447,7 +2447,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2457,7 +2457,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2512,7 +2512,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2522,10 +2522,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2535,34 +2535,8 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" - }, - { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Merker Realty Group", - "Tran_Occ": "Realtor", - "Entity_Cd": "Individual", - "Tran_Amt1": 20.0, - "Tran_Date": "2014-11-14", - "Tran_NamF": "Rob", - "Tran_NamL": "Merker", - "Tran_Zip4": "94611", "election_name": "oakland-2016" }, - { - "title": "Oakland November 8th, 2022 General Election", - "Filer_ID": "1342695", - "Tran_Emp": "Merker Realty Group", - "Tran_Occ": "Realtor", - "Entity_Cd": "Individual", - "Tran_Amt1": 20.0, - "Tran_Date": "2014-11-14", - "Tran_NamF": "Rob", - "Tran_NamL": "Merker", - "Tran_Zip4": "94611", - "election_name": "oakland-2022" - }, { "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", @@ -2582,7 +2556,7 @@ "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", "Entity_Cd": "Individual", - "Tran_Amt1": 95.0, + "Tran_Amt1": 20.0, "Tran_Date": "2014-11-14", "Tran_NamF": "Rob", "Tran_NamL": "Merker", @@ -2590,7 +2564,20 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", + "Tran_Emp": "Merker Realty Group", + "Tran_Occ": "Realtor", + "Entity_Cd": "Individual", + "Tran_Amt1": 20.0, + "Tran_Date": "2014-11-14", + "Tran_NamF": "Rob", + "Tran_NamL": "Merker", + "Tran_Zip4": "94611", + "election_name": "oakland-2016" + }, + { + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2600,7 +2587,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2616,7 +2603,20 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", + "Filer_ID": "1342695", + "Tran_Emp": "Merker Realty Group", + "Tran_Occ": "Realtor", + "Entity_Cd": "Individual", + "Tran_Amt1": 95.0, + "Tran_Date": "2014-11-14", + "Tran_NamF": "Rob", + "Tran_NamL": "Merker", + "Tran_Zip4": "94611", + "election_name": "oakland-2020" + }, + { + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", @@ -2626,10 +2626,10 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", @@ -2639,10 +2639,10 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland Nove ```
ChenglimEar commented 8 months ago

@mikeubell I've made the requested changes and found some additional problems to clean up. Please review the recent changes. Hopefully this is now clean and ready to merge after the travis build is fixed.

mikeubell commented 7 months ago
Build diff from Commit 83000e446f185e28e8cd29c741b93b8e14cdccd9: ```diff diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index ca3ecbe..c297435 100644 --- a/build/_data/committees/1342695.json +++ b/build/_data/committees/1342695.json @@ -3,7 +3,7 @@ "total_contributions": 345748.59, "contributions": [ { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -13,10 +13,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -26,10 +26,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -39,10 +39,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -52,10 +52,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -65,10 +65,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -78,10 +78,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -91,10 +91,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -104,7 +104,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -120,7 +120,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -130,10 +130,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -143,7 +143,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -159,7 +159,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -169,10 +169,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -182,10 +182,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -195,7 +195,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -211,7 +211,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -221,10 +221,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -234,10 +234,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -247,7 +247,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -263,7 +263,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -273,10 +273,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -286,10 +286,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -299,10 +299,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -312,10 +312,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -325,7 +325,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -341,7 +341,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -351,7 +351,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -393,7 +393,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -403,10 +403,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -416,10 +416,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -429,10 +429,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -442,7 +442,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -458,7 +458,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -468,10 +468,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -481,10 +481,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -494,10 +494,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -507,7 +507,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -523,7 +523,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -533,10 +533,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -546,10 +546,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -559,7 +559,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -575,7 +575,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -585,10 +585,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -598,10 +598,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -611,10 +611,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -624,7 +624,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -640,7 +640,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -650,10 +650,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -663,10 +663,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -676,10 +676,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -689,10 +689,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -702,10 +702,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -715,10 +715,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -728,7 +728,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -757,7 +757,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -767,10 +767,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -780,10 +780,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -793,7 +793,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -809,7 +809,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -819,10 +819,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -832,7 +832,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -848,7 +848,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -858,7 +858,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -900,7 +900,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -910,7 +910,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -926,7 +926,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -936,10 +936,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -949,10 +949,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -962,10 +962,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -975,10 +975,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -988,10 +988,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1001,10 +1001,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1014,10 +1014,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1027,10 +1027,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1040,10 +1040,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1053,10 +1053,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1066,10 +1066,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1079,10 +1079,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1092,7 +1092,7 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1134,7 +1134,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1144,10 +1144,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1157,7 +1157,7 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1172,6 +1172,19 @@ "Tran_Zip4": "94501", "election_name": "oakland-2020" }, + { + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", + "Tran_Emp": "Self - Husain", + "Tran_Occ": "Remodeling Contractor", + "Entity_Cd": "Individual", + "Tran_Amt1": 30.0, + "Tran_Date": "2014-05-28", + "Tran_NamF": "Munawar", + "Tran_NamL": "Husain", + "Tran_Zip4": "94610-4638", + "election_name": "oakland-2016" + }, { "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", @@ -1199,20 +1212,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Self - Husain", - "Tran_Occ": "Remodeling Contractor", - "Entity_Cd": "Individual", - "Tran_Amt1": 30.0, - "Tran_Date": "2014-05-28", - "Tran_NamF": "Munawar", - "Tran_NamL": "Husain", - "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" - }, - { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1222,7 +1222,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1238,7 +1238,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1248,7 +1248,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1290,7 +1290,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1300,7 +1300,7 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1316,7 +1316,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1326,10 +1326,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1339,10 +1339,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1352,7 +1352,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1381,7 +1381,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1391,10 +1391,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1404,10 +1404,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1417,10 +1417,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1430,10 +1430,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1443,7 +1443,7 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1485,7 +1485,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1495,10 +1495,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1508,10 +1508,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1521,7 +1521,7 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1563,7 +1563,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1573,7 +1573,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1589,7 +1589,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1599,10 +1599,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1612,10 +1612,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1625,10 +1625,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1638,7 +1638,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1680,7 +1680,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1690,10 +1690,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1703,7 +1703,7 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1732,7 +1732,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1742,10 +1742,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1755,7 +1755,7 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1797,7 +1797,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1807,7 +1807,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1823,7 +1823,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1833,7 +1833,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1927,7 +1927,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1937,10 +1937,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1950,10 +1950,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1963,10 +1963,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1976,10 +1976,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1989,10 +1989,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2002,10 +2002,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2015,10 +2015,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2028,7 +2028,7 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2070,7 +2070,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2080,10 +2080,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2093,7 +2093,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2122,7 +2122,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2132,10 +2132,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2145,7 +2145,7 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2161,7 +2161,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2171,10 +2171,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2184,10 +2184,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2197,10 +2197,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2210,10 +2210,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2223,10 +2223,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2236,10 +2236,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2249,10 +2249,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2262,10 +2262,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2275,7 +2275,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2291,7 +2291,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2301,7 +2301,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2343,7 +2343,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2353,7 +2353,7 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2369,7 +2369,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2379,10 +2379,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2392,10 +2392,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2405,7 +2405,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2434,7 +2434,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2444,10 +2444,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2457,10 +2457,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2470,10 +2470,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2483,7 +2483,7 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2499,7 +2499,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2509,7 +2509,7 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2525,7 +2525,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2535,10 +2535,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2548,10 +2548,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2561,10 +2561,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2574,10 +2574,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2587,7 +2587,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2603,7 +2603,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2613,20 +2613,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" - }, - { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Self - Cox", - "Tran_Occ": "Property Owner", - "Entity_Cd": "Individual", - "Tran_Amt1": 30.0, - "Tran_Date": "2014-11-25", - "Tran_NamF": "Dennis", - "Tran_NamL": "Cox", - "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2660,7 +2647,7 @@ "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", "Entity_Cd": "Individual", - "Tran_Amt1": 95.0, + "Tran_Amt1": 30.0, "Tran_Date": "2014-11-25", "Tran_NamF": "Dennis", "Tran_NamL": "Cox", @@ -2694,7 +2681,20 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", + "Tran_Emp": "Self - Cox", + "Tran_Occ": "Property Owner", + "Entity_Cd": "Individual", + "Tran_Amt1": 95.0, + "Tran_Date": "2014-11-25", + "Tran_NamF": "Dennis", + "Tran_NamL": "Cox", + "Tran_Zip4": "94606", + "election_name": "oakland-2016" + }, + { + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2704,10 +2704,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2717,7 +2717,7 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2733,7 +2733,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2743,10 +2743,10 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2756,7 +2756,7 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -27 ```
mikeubell commented 7 months ago
Build diff from Commit fed726bb2aaac51b833cb065a4221cef8afc2bcc: ```diff diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index ca3ecbe..ab8ebee 100644 --- a/build/_data/committees/1342695.json +++ b/build/_data/committees/1342695.json @@ -3,7 +3,7 @@ "total_contributions": 345748.59, "contributions": [ { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -13,10 +13,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -26,10 +26,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -39,10 +39,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -52,10 +52,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -65,10 +65,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -78,10 +78,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -91,10 +91,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -104,7 +104,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -120,7 +120,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -130,10 +130,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -143,7 +143,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -159,7 +159,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -169,10 +169,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -182,10 +182,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -195,7 +195,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -211,7 +211,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -221,10 +221,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -234,10 +234,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -247,7 +247,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -263,7 +263,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -273,10 +273,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -286,10 +286,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -299,10 +299,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -312,10 +312,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -325,7 +325,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -341,7 +341,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -351,7 +351,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -393,7 +393,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -403,10 +403,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -416,10 +416,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -429,10 +429,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -442,7 +442,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -458,7 +458,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -468,10 +468,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -481,10 +481,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -494,10 +494,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -507,7 +507,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -523,7 +523,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -533,10 +533,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -546,10 +546,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -559,7 +559,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -575,7 +575,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -585,10 +585,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -598,10 +598,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -611,10 +611,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -624,7 +624,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -640,7 +640,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -650,10 +650,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -663,10 +663,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -676,10 +676,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -689,10 +689,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -702,10 +702,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -715,10 +715,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -728,7 +728,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -757,7 +757,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -767,10 +767,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -780,10 +780,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -793,7 +793,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -809,7 +809,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -819,10 +819,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -832,7 +832,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -848,7 +848,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -858,7 +858,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -900,7 +900,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -910,7 +910,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -926,7 +926,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -936,10 +936,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -949,10 +949,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -962,10 +962,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -975,10 +975,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -988,10 +988,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1001,10 +1001,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1014,10 +1014,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1027,10 +1027,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1040,10 +1040,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1053,10 +1053,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1066,10 +1066,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1079,10 +1079,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1092,7 +1092,7 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1134,7 +1134,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1144,10 +1144,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1157,7 +1157,7 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1172,6 +1172,19 @@ "Tran_Zip4": "94501", "election_name": "oakland-2020" }, + { + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", + "Tran_Emp": "Self - Husain", + "Tran_Occ": "Remodeling Contractor", + "Entity_Cd": "Individual", + "Tran_Amt1": 30.0, + "Tran_Date": "2014-05-28", + "Tran_NamF": "Munawar", + "Tran_NamL": "Husain", + "Tran_Zip4": "94610-4638", + "election_name": "oakland-2016" + }, { "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", @@ -1199,20 +1212,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Self - Husain", - "Tran_Occ": "Remodeling Contractor", - "Entity_Cd": "Individual", - "Tran_Amt1": 30.0, - "Tran_Date": "2014-05-28", - "Tran_NamF": "Munawar", - "Tran_NamL": "Husain", - "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" - }, - { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1222,7 +1222,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1238,7 +1238,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1248,7 +1248,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1290,7 +1290,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1300,7 +1300,7 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1316,7 +1316,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1326,10 +1326,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1339,10 +1339,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1352,7 +1352,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1381,7 +1381,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1391,10 +1391,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1404,10 +1404,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1417,10 +1417,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1430,10 +1430,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1443,7 +1443,7 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1485,7 +1485,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1495,10 +1495,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1508,10 +1508,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1521,7 +1521,7 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1563,7 +1563,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1573,7 +1573,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1589,7 +1589,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1599,10 +1599,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1612,10 +1612,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1625,10 +1625,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1638,7 +1638,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1680,7 +1680,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1690,10 +1690,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1703,7 +1703,7 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1732,7 +1732,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1742,10 +1742,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1755,7 +1755,7 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1797,7 +1797,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1807,7 +1807,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1823,7 +1823,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1833,7 +1833,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1927,7 +1927,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1937,10 +1937,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1950,10 +1950,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1963,10 +1963,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1976,10 +1976,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1989,10 +1989,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2002,10 +2002,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2015,10 +2015,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2028,7 +2028,7 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2070,7 +2070,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2080,10 +2080,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2093,7 +2093,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2122,7 +2122,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2132,10 +2132,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2145,7 +2145,7 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2161,7 +2161,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2171,10 +2171,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2184,10 +2184,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2197,10 +2197,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2210,10 +2210,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2223,10 +2223,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2236,10 +2236,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2249,10 +2249,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2262,10 +2262,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2275,7 +2275,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2291,7 +2291,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2301,7 +2301,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2343,7 +2343,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2353,7 +2353,7 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2369,7 +2369,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2379,10 +2379,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2392,10 +2392,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2405,7 +2405,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2434,7 +2434,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2444,10 +2444,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2457,10 +2457,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2470,10 +2470,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2483,7 +2483,7 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2499,7 +2499,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2509,7 +2509,7 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2525,7 +2525,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2535,10 +2535,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2548,10 +2548,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2561,10 +2561,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2574,10 +2574,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2587,7 +2587,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2603,7 +2603,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2613,20 +2613,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" - }, - { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Self - Cox", - "Tran_Occ": "Property Owner", - "Entity_Cd": "Individual", - "Tran_Amt1": 30.0, - "Tran_Date": "2014-11-25", - "Tran_NamF": "Dennis", - "Tran_NamL": "Cox", - "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2660,7 +2647,7 @@ "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", "Entity_Cd": "Individual", - "Tran_Amt1": 95.0, + "Tran_Amt1": 30.0, "Tran_Date": "2014-11-25", "Tran_NamF": "Dennis", "Tran_NamL": "Cox", @@ -2694,7 +2681,20 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", + "Tran_Emp": "Self - Cox", + "Tran_Occ": "Property Owner", + "Entity_Cd": "Individual", + "Tran_Amt1": 95.0, + "Tran_Date": "2014-11-25", + "Tran_NamF": "Dennis", + "Tran_NamL": "Cox", + "Tran_Zip4": "94606", + "election_name": "oakland-2016" + }, + { + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2704,10 +2704,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2717,7 +2717,7 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2733,7 +2733,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2743,10 +2743,10 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2756,7 +2756,7 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -27 ```
mikeubell commented 7 months ago
Build diff from Commit 06ae9251ed51c1b0721621722d4fe77440984fb3: ```diff diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index ca3ecbe..ab8ebee 100644 --- a/build/_data/committees/1342695.json +++ b/build/_data/committees/1342695.json @@ -3,7 +3,7 @@ "total_contributions": 345748.59, "contributions": [ { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -13,10 +13,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -26,10 +26,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -39,10 +39,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -52,10 +52,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -65,10 +65,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -78,10 +78,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -91,10 +91,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -104,7 +104,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -120,7 +120,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -130,10 +130,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Aplia", "Tran_Occ": "Biology Editor", @@ -143,7 +143,7 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -159,7 +159,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -169,10 +169,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -182,10 +182,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -195,7 +195,7 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -211,7 +211,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -221,10 +221,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -234,10 +234,10 @@ "Tran_NamF": null, "Tran_NamL": "Bouzos Properties", "Tran_Zip4": "95687", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -247,7 +247,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -263,7 +263,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -273,10 +273,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -286,10 +286,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -299,10 +299,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -312,10 +312,10 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -325,7 +325,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -341,7 +341,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -351,7 +351,7 @@ "Tran_NamF": null, "Tran_NamL": "Stamm Theatres, Inc.", "Tran_Zip4": "94509-0063", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -393,7 +393,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -403,10 +403,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -416,10 +416,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -429,10 +429,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -442,7 +442,7 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -458,7 +458,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -468,10 +468,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -481,10 +481,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -494,10 +494,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -507,7 +507,7 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -523,7 +523,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -533,10 +533,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -546,10 +546,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -559,7 +559,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -575,7 +575,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -585,10 +585,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -598,10 +598,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -611,10 +611,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -624,7 +624,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -640,7 +640,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -650,10 +650,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -663,10 +663,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -676,10 +676,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -689,10 +689,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -702,10 +702,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -715,10 +715,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -728,7 +728,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -757,7 +757,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -767,10 +767,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -780,10 +780,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -793,7 +793,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -809,7 +809,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -819,10 +819,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -832,7 +832,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -848,7 +848,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -858,7 +858,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -900,7 +900,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -910,7 +910,7 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -926,7 +926,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -936,10 +936,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -949,10 +949,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -962,10 +962,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -975,10 +975,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -988,10 +988,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1001,10 +1001,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1014,10 +1014,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1027,10 +1027,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1040,10 +1040,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1053,10 +1053,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1066,10 +1066,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1079,10 +1079,10 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1092,7 +1092,7 @@ "Tran_NamF": null, "Tran_NamL": "Landmark Place Apartments", "Tran_Zip4": "94501-3935", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1134,7 +1134,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1144,10 +1144,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1157,7 +1157,7 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1172,6 +1172,19 @@ "Tran_Zip4": "94501", "election_name": "oakland-2020" }, + { + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", + "Tran_Emp": "Self - Husain", + "Tran_Occ": "Remodeling Contractor", + "Entity_Cd": "Individual", + "Tran_Amt1": 30.0, + "Tran_Date": "2014-05-28", + "Tran_NamF": "Munawar", + "Tran_NamL": "Husain", + "Tran_Zip4": "94610-4638", + "election_name": "oakland-2016" + }, { "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", @@ -1199,20 +1212,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Self - Husain", - "Tran_Occ": "Remodeling Contractor", - "Entity_Cd": "Individual", - "Tran_Amt1": 30.0, - "Tran_Date": "2014-05-28", - "Tran_NamF": "Munawar", - "Tran_NamL": "Husain", - "Tran_Zip4": "94610-4638", - "election_name": "oakland-2016" - }, - { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1222,7 +1222,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1238,7 +1238,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Husain", "Tran_Occ": "Remodeling Contractor", @@ -1248,7 +1248,7 @@ "Tran_NamF": "Munawar", "Tran_NamL": "Husain", "Tran_Zip4": "94610-4638", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1290,7 +1290,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1300,7 +1300,7 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1316,7 +1316,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -1326,10 +1326,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1339,10 +1339,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1352,7 +1352,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1381,7 +1381,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1391,10 +1391,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1404,10 +1404,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1417,10 +1417,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1430,10 +1430,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1443,7 +1443,7 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1485,7 +1485,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1495,10 +1495,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1508,10 +1508,10 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1521,7 +1521,7 @@ "Tran_NamF": null, "Tran_NamL": "Drifftwood Apartments", "Tran_Zip4": "94107", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1563,7 +1563,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1573,7 +1573,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1589,7 +1589,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1599,10 +1599,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1612,10 +1612,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1625,10 +1625,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1638,7 +1638,7 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1680,7 +1680,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1690,10 +1690,10 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Burke", "Tran_Occ": "Property Manager", @@ -1703,7 +1703,7 @@ "Tran_NamF": null, "Tran_NamL": "Burke, Laurie", "Tran_Zip4": "94618", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1732,7 +1732,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1742,10 +1742,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1755,7 +1755,7 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1797,7 +1797,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1807,7 +1807,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1823,7 +1823,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1833,7 +1833,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1927,7 +1927,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1937,10 +1937,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1950,10 +1950,10 @@ "Tran_NamF": null, "Tran_NamL": "Moyer Realty Company", "Tran_Zip4": "94501", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1963,10 +1963,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1976,10 +1976,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1989,10 +1989,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2002,10 +2002,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2015,10 +2015,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2028,7 +2028,7 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2070,7 +2070,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2080,10 +2080,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2093,7 +2093,7 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2122,7 +2122,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2132,10 +2132,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2145,7 +2145,7 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2161,7 +2161,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2171,10 +2171,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2184,10 +2184,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2197,10 +2197,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2210,10 +2210,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2223,10 +2223,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2236,10 +2236,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2249,10 +2249,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Kaiser Permante", "Tran_Occ": "Registered Nurse", @@ -2262,10 +2262,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Bevis", "Tran_Zip4": "94556", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2275,7 +2275,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2291,7 +2291,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2301,7 +2301,7 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2343,7 +2343,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2353,7 +2353,7 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2369,7 +2369,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2379,10 +2379,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2392,10 +2392,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2405,7 +2405,7 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2434,7 +2434,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2444,10 +2444,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Selby", "Tran_Occ": "Property Manager", @@ -2457,10 +2457,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2470,10 +2470,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2483,7 +2483,7 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2499,7 +2499,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2509,7 +2509,7 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2525,7 +2525,7 @@ "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2535,10 +2535,10 @@ "Tran_NamF": null, "Tran_NamL": "Waverly Properties, LLC", "Tran_Zip4": "94612-3821", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2548,10 +2548,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2561,10 +2561,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2574,10 +2574,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2587,7 +2587,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2603,7 +2603,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2613,20 +2613,7 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "election_name": "oakland-2016" - }, - { - "title": "Oakland November 8th, 2016 Election", - "Filer_ID": "1342695", - "Tran_Emp": "Self - Cox", - "Tran_Occ": "Property Owner", - "Entity_Cd": "Individual", - "Tran_Amt1": 30.0, - "Tran_Date": "2014-11-25", - "Tran_NamF": "Dennis", - "Tran_NamL": "Cox", - "Tran_Zip4": "94606", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2022 General Election", @@ -2660,7 +2647,7 @@ "Tran_Emp": "Self - Cox", "Tran_Occ": "Property Owner", "Entity_Cd": "Individual", - "Tran_Amt1": 95.0, + "Tran_Amt1": 30.0, "Tran_Date": "2014-11-25", "Tran_NamF": "Dennis", "Tran_NamL": "Cox", @@ -2694,7 +2681,20 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", + "Filer_ID": "1342695", + "Tran_Emp": "Self - Cox", + "Tran_Occ": "Property Owner", + "Entity_Cd": "Individual", + "Tran_Amt1": 95.0, + "Tran_Date": "2014-11-25", + "Tran_NamF": "Dennis", + "Tran_NamL": "Cox", + "Tran_Zip4": "94606", + "election_name": "oakland-2016" + }, + { + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2704,10 +2704,10 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": "East Bay Rental Housing Association", "Tran_Occ": "Executive Director", @@ -2717,7 +2717,7 @@ "Tran_NamF": "Jill", "Tran_NamL": "Broadhurst", "Tran_Zip4": "94611", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2733,7 +2733,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2743,10 +2743,10 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Retired", @@ -2756,7 +2756,7 @@ "Tran_NamF": "Dwight", "Tran_NamL": "Johnson", "Tran_Zip4": "94563-3406", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -27 ```