caciviclab / disclosure-backend-static

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

upgrade csvkit #330

Closed ChenglimEar closed 4 months ago

ChenglimEar commented 10 months ago

It looks like csvkit is a beta version (0.9.0). It needs to be upgraded to a released version to ensure that we aren't stuck with an unsupported outdated package. We need a pull request just to upgrade csvkit because the beta version has some behaviors that were changed for 1.0.0 and beyond. One big one is that tables will not be created for empty csv files. In 0.9.0, the table is created with default varchar types. There's code that seems tied to this default behavior, so we will have to carefully make sure that the code surrounding the data are also upgraded to work with the released behaviors of csvkit.

Looks like version 0.9.0 has a bug where the Form_Type column of the A-Contributions table is getting populated with 00:00:00 instead of the original value of A. We'll be fixing this in this pull request.

Since this change touches the core of the code that transforms the data, we need to verify that the resulting data matches the data produced by the master branch before we approve the changes. In additional to code review, the data has to be reviewed somehow. From some initial review, it looks like the old csvkit handled data cleanup better. In the case of the candidate Derrick Soo, there was a newline in the name of the candidate when reading the downloaded candidates.csv file. The newline did not get imported into postgres for the old csvkit, but it did get imported for the new one. This becomes problematic downstream, so it needs to be addressed.

This change will require that we adopt an explicit schema instead of an auto-detected schema. The explicit schema will be set to the current auto-detected schema except for the following corrections:

Table Old Column New Column
public."A-Contributions" "Form_Type" time without time zone NOT NULL "Form_Type" VARCHAR(1) NOT NULL
public.committees "Filer_NamL" character varying(173) NOT NULL, "Filer_NamL" VARCHAR(255) NOT NULL
public."H-Loans" "Loan_Rate" integer "Loan_Rate" FLOAT
mikeubell commented 10 months ago
Build diff from Commit db8c5045dbdf0b7f93691712c0437c32d7ad8333: ```diff ```
mikeubell commented 10 months ago
Build diff from Commit c33d74362666cbaef34daafaba65c7184a1e26b2: ```diff diff --git a/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json b/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json index 677347f..c42fe7d 100644 --- a/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json +++ b/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json @@ -25,16 +25,16 @@ "total_contributions": 17530.0, "total_expenditures": 9718.34, "total_loans_received": 0.0, - "total_supporting_independent": 50172.51, + "total_supporting_independent": 71066.51, "support_list": [ { - "Total": 15800.0, + "Total": 23700.0, "Cand_ID": 1460829, "Filer_ID": "1433122", "Filer_NamL": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021" }, { - "Total": 30192.57, + "Total": 43186.57, "Cand_ID": 1460829, "Filer_ID": "1345259", "Filer_NamL": "Oakland Education Association Political Action Committee" diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index f22bc36..a5efb57 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -40,12 +40,12 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 30192.57 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", "election_name": "oakland-2023", - "total_spending": 15800.0 + "total_spending": 23700.0 }, { "name": "Oakland Rising Committee sponsored by Center for Empowered Politics", diff --git a/build/_data/stats.json b/build/_data/stats.json index ed4ccf7..3964732 100644 --- a/build/_data/stats.json +++ b/build/_data/stats.json @@ -1,3 +1,3 @@ { - "date_processed": "2023-11-01 00:07:25 -0700" + "date_processed": "2023-11-02 00:07:30 -0700" } diff --git a/build/_data/totals.json b/build/_data/totals.json index 8055f08..fa7c509 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -1353,12 +1353,12 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 30192.57 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", "election_name": "oakland-2023", - "total_spending": 15800.0 + "total_spending": 23700.0 }, { "name": "Oakland Rising Committee sponsored by Center for Empowered Politics", ```
mikeubell commented 10 months ago
Build diff from Commit f9f26549d831e5969d2db7ec1587c24b6a0d5ed4: ```diff diff --git a/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json b/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json index 677347f..c42fe7d 100644 --- a/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json +++ b/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json @@ -25,16 +25,16 @@ "total_contributions": 17530.0, "total_expenditures": 9718.34, "total_loans_received": 0.0, - "total_supporting_independent": 50172.51, + "total_supporting_independent": 71066.51, "support_list": [ { - "Total": 15800.0, + "Total": 23700.0, "Cand_ID": 1460829, "Filer_ID": "1433122", "Filer_NamL": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021" }, { - "Total": 30192.57, + "Total": 43186.57, "Cand_ID": 1460829, "Filer_ID": "1345259", "Filer_NamL": "Oakland Education Association Political Action Committee" diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index f22bc36..a5efb57 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -40,12 +40,12 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 30192.57 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", "election_name": "oakland-2023", - "total_spending": 15800.0 + "total_spending": 23700.0 }, { "name": "Oakland Rising Committee sponsored by Center for Empowered Politics", diff --git a/build/_data/stats.json b/build/_data/stats.json index ed4ccf7..3964732 100644 --- a/build/_data/stats.json +++ b/build/_data/stats.json @@ -1,3 +1,3 @@ { - "date_processed": "2023-11-01 00:07:25 -0700" + "date_processed": "2023-11-02 00:07:30 -0700" } diff --git a/build/_data/totals.json b/build/_data/totals.json index 8055f08..fa7c509 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -1353,12 +1353,12 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 30192.57 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", "election_name": "oakland-2023", - "total_spending": 15800.0 + "total_spending": 23700.0 }, { "name": "Oakland Rising Committee sponsored by Center for Empowered Politics", ```
mikeubell commented 10 months ago
Build diff from Commit 84c3a26689031f6a62c1517adf6faeff0785ad1d: ```diff diff --git a/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json b/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json index 677347f..c42fe7d 100644 --- a/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json +++ b/build/_data/candidates/oakland/2023-11-07/alexandra-ritzie-hernandez.json @@ -25,16 +25,16 @@ "total_contributions": 17530.0, "total_expenditures": 9718.34, "total_loans_received": 0.0, - "total_supporting_independent": 50172.51, + "total_supporting_independent": 71066.51, "support_list": [ { - "Total": 15800.0, + "Total": 23700.0, "Cand_ID": 1460829, "Filer_ID": "1433122", "Filer_NamL": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021" }, { - "Total": 30192.57, + "Total": 43186.57, "Cand_ID": 1460829, "Filer_ID": "1345259", "Filer_NamL": "Oakland Education Association Political Action Committee" diff --git a/build/_data/committees/1410941.json b/build/_data/committees/1410941.json index dacda45..fcb85cd 100644 --- a/build/_data/committees/1410941.json +++ b/build/_data/committees/1410941.json @@ -153,7 +153,7 @@ "Tran_Date": "2018-09-24", "Tran_NamF": null, "Tran_NamL": "Morse Management, Inc.", - "Tran_Zip4": "10022" + "Tran_Zip4": "94661" }, { "Filer_ID": "1410941", @@ -164,7 +164,7 @@ "Tran_Date": "2018-09-24", "Tran_NamF": null, "Tran_NamL": "Morse Management, Inc.", - "Tran_Zip4": "94661" + "Tran_Zip4": "10022" }, { "Filer_ID": "1410941", diff --git a/build/_data/committees/1421001.json b/build/_data/committees/1421001.json index 09cc4a0..ff4043a 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": "94602" + "Tran_Zip4": "94603" }, { "Filer_ID": "1421001", @@ -1209,7 +1209,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94603" + "Tran_Zip4": "94602" }, { "Filer_ID": "1421001", diff --git a/build/_data/elections/oakland/2018-06-05.json b/build/_data/elections/oakland/2018-06-05.json index b39b338..140316d 100644 --- a/build/_data/elections/oakland/2018-06-05.json +++ b/build/_data/elections/oakland/2018-06-05.json @@ -57,7 +57,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_contributions": 10000.0 diff --git a/build/_data/elections/oakland/2022-11-08.json b/build/_data/elections/oakland/2022-11-08.json index f716008..d436f62 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.1800000006, + "Within Oakland": 2632398.1799999997, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.870000002, + "Individual": 2507910.869999998, "Unitemized": 135828.3, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -107,7 +107,7 @@ "total_contributions": 6300.0 }, { - "name": "Russ Taplin", + "name": "John Protopappas", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index f22bc36..0389cae 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -40,12 +40,12 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 30192.57 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", "election_name": "oakland-2023", - "total_spending": 15800.0 + "total_spending": 23700.0 }, { "name": "Oakland Rising Committee sponsored by Center for Empowered Politics", @@ -72,19 +72,19 @@ ], "top_contributors_for_offices": [ { - "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 }, { - "name": "Laborers Local 304", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 diff --git a/build/_data/elections/oakland/2024-11-05.json b/build/_data/elections/oakland/2024-11-05.json index 129d546..adbcd09 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": "Weylin White", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Todd Scanlin", + "name": "Dow Terry", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Jacob Zonn", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 diff --git a/build/_data/stats.json b/build/_data/stats.json index ed4ccf7..3964732 100644 --- a/build/_data/stats.json +++ b/build/_data/stats.json @@ -1,3 +1,3 @@ { - "date_processed": "2023-11-01 00:07:25 -0700" + "date_processed": "2023-11-02 00:07:30 -0700" } diff --git a/build/_data/totals.json b/build/_data/totals.json index 8055f08..6635460 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -782,13 +782,13 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.1800000006, + "Within Oakland": 2632398.1799999997, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.870000002, + "Individual": 2507910.869999998, "Unitemized": 135828.3, "Self Funding": 2711.0, "Other (includes Businesses)": 2638453.6399999997 @@ -887,7 +887,7 @@ "total_contributions": 6300.0 }, { - "name": "Russ Taplin", + "name": "John Protopappas", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 @@ -1033,7 +1033,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_contributions": 10000.0 @@ -1353,12 +1353,12 @@ { "name": "Oakland Education Association Political Action Committee", "election_name": "oakland-2023", - "total_spending": 30192.57 + "total_spending": 43186.57 }, { "name": "California Workers' Justice Coalition sponsored by Service Employees International Union Local 1021", "election_name": "oakland-2023", - "total_spending": 15800.0 + "total_spending": 23700.0 }, { "name": "Oakland Rising Committee sponsored by Center for Empowered Politics", @@ -1385,19 +1385,19 @@ ], "top_contributors_for_offices": [ { - "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 }, { - "name": "Laborers Local 304", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -1501,19 +1501,19 @@ ], "top_contributors_for_offices": [ { - "name": "Weylin White", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Todd Scanlin", + "name": "Dow Terry", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Jacob Zonn", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 ```
mikeubell commented 10 months ago
Build diff from Commit 929372af6d0e06fbdfb6897129b49cabd6c1a92b: ```diff diff --git a/build/_candidates/oakland/2014-11-04/brenda-roberts.md b/build/_candidates/oakland/2014-11-04/brenda-roberts.md index a8dc40c..8308b89 100644 --- a/build/_candidates/oakland/2014-11-04/brenda-roberts.md +++ b/build/_candidates/oakland/2014-11-04/brenda-roberts.md @@ -1,6 +1,6 @@ --- election: _elections/oakland/2014-11-04.md -committee_name: Brenda Roberts for Oakland City Auditor 2014 +committee_name: 'Brenda Roberts for Oakland City Auditor 2014 ' filer_id: '136810' is_incumbent: false name: Brenda Roberts diff --git a/build/_candidates/oakland/2016-11-08/james-harris.md b/build/_candidates/oakland/2016-11-08/james-harris.md index 24b6b5d..de83c01 100644 --- a/build/_candidates/oakland/2016-11-08/james-harris.md +++ b/build/_candidates/oakland/2016-11-08/james-harris.md @@ -1,6 +1,6 @@ --- election: _elections/oakland/2016-11-08.md -committee_name: Re-Elect James Harris for School Board +committee_name: 'Re-Elect James Harris for School Board ' filer_id: '1387803' is_incumbent: true name: James Harris diff --git a/build/_candidates/oakland/2016-11-08/noni-session.md b/build/_candidates/oakland/2016-11-08/noni-session.md index 59ea0ae..34ba74f 100644 --- a/build/_candidates/oakland/2016-11-08/noni-session.md +++ b/build/_candidates/oakland/2016-11-08/noni-session.md @@ -8,7 +8,9 @@ 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 +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/2018-11-06/jesse-a-j-smith.md b/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md index 90c9eda..163326a 100644 --- a/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md +++ b/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md @@ -6,7 +6,7 @@ is_incumbent: false name: Jesse A.J. Smith occupation: Writer photo_url: Jesse-Smith.png -twitter_url: OakSmith2018 +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-tanios.md b/build/_candidates/oakland/2018-11-06/joseph-tanios.md index e689918..0169fcf 100644 --- a/build/_candidates/oakland/2018-11-06/joseph-tanios.md +++ b/build/_candidates/oakland/2018-11-06/joseph-tanios.md @@ -8,7 +8,7 @@ name: Joseph Tanios occupation: Construction Inspection Supervisor photo_url: Joseph-Tanios.png public_funding_received: "$7,463" -twitter_url: taniosfor +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/loren-taylor.md b/build/_candidates/oakland/2018-11-06/loren-taylor.md index 72fa117..148c273 100644 --- a/build/_candidates/oakland/2018-11-06/loren-taylor.md +++ b/build/_candidates/oakland/2018-11-06/loren-taylor.md @@ -8,7 +8,7 @@ name: Loren Taylor occupation: Entrepreneur/Non-Profit Boardmember photo_url: Loren_Taylor.png public_funding_received: "$18,345" -twitter_url: lorenmtaylor +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/natasha-middleton.md b/build/_candidates/oakland/2018-11-06/natasha-middleton.md index c0be362..cf9bb37 100644 --- a/build/_candidates/oakland/2018-11-06/natasha-middleton.md +++ b/build/_candidates/oakland/2018-11-06/natasha-middleton.md @@ -8,7 +8,7 @@ name: Natasha Middleton occupation: Management Analyst photo_url: Natasha-Middleton.png public_funding_received: "$18,345" -twitter_url: MiddletonNat +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 index b4ca769..d46dd7e 100644 --- a/build/_candidates/oakland/2018-11-06/nayeli-maxson.md +++ b/build/_candidates/oakland/2018-11-06/nayeli-maxson.md @@ -8,7 +8,7 @@ name: Nayeli Maxson occupation: Executive Director/Attorney photo_url: Nayeli-Maxson.png public_funding_received: "$18,345" -twitter_url: nayelimax +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/shanthi-gonzales.md b/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md index 256278e..716b836 100644 --- a/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md +++ b/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md @@ -7,7 +7,7 @@ is_incumbent: true name: Shanthi Gonzales occupation: School Board Director photo_url: Shanthi-Gonzales.png -twitter_url: ShanthiGonzales +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 index 71ce4a4..f53e736 100644 --- a/build/_candidates/oakland/2018-11-06/sheng-thao.md +++ b/build/_candidates/oakland/2018-11-06/sheng-thao.md @@ -8,7 +8,7 @@ name: Sheng Thao occupation: Chief of Staff photo_url: Sheng-Thao.png public_funding_received: "$18,345" -twitter_url: sheng_tha0 +twitter_url: 'sheng_tha0 ' votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139762?&county=alameda%20county&election_authority_id=1 website_url: https://www.shengforoakland.com/ --- diff --git a/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md b/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md index 6221469..99c3478 100644 --- a/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md +++ b/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md @@ -10,6 +10,8 @@ photo_url: derreck_johnson_sub.jpg twitter_url: derreckbjohnson votersedge_url: https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/contests/contest/21265/candidate/151385?cty=ca%2falm website_url: https://www.johnsonforoakland.com/ -facebook_url: https://www.facebook.com/derreckbjohnson/ +facebook_url: |2- + + https://www.facebook.com/derreckbjohnson/ instagram_url: derreckbjohnson --- diff --git a/build/_candidates/oakland/2020-11-03/vancedric-williams.md b/build/_candidates/oakland/2020-11-03/vancedric-williams.md index c7c2d71..66ed23e 100644 --- a/build/_candidates/oakland/2020-11-03/vancedric-williams.md +++ b/build/_candidates/oakland/2020-11-03/vancedric-williams.md @@ -1,6 +1,6 @@ --- election: _elections/oakland/2020-11-03.md -committee_name: Van Cedric Williams for Oakland School Board Seat 3 2020 +committee_name: 'Van Cedric Williams for Oakland School Board Seat 3 2020 ' filer_id: '1427826' is_accepted_expenditure_ceiling: true is_incumbent: false diff --git a/build/_candidates/oakland/2022-11-08/derreck-johnson.md b/build/_candidates/oakland/2022-11-08/derreck-johnson.md index 91ab954..cad4914 100644 --- a/build/_candidates/oakland/2022-11-08/derreck-johnson.md +++ b/build/_candidates/oakland/2022-11-08/derreck-johnson.md @@ -1,6 +1,8 @@ --- election: _elections/oakland/2022-11-08.md -committee_name: Johnson Oakland Mayor 2022 +committee_name: 'Johnson Oakland Mayor 2022 + +' filer_id: '1441869' is_accepted_expenditure_ceiling: true is_incumbent: false diff --git a/build/_candidates/oakland/2022-11-08/derrick-soo-.md b/build/_candidates/oakland/2022-11-08/derrick-soo-.md new file mode 100644 index 0000000..297a2ea --- /dev/null +++ b/build/_candidates/oakland/2022-11-08/derrick-soo-.md @@ -0,0 +1,15 @@ +--- +election: _elections/oakland/2022-11-08.md +committee_name: No committee registered +filer_id: '' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: 'Derrick Soo + +' +occupation: Not qualified for ballot +photo_url: derrick-soo.jpg +twitter_url: DerrickSoo4Oak +votersedge_url: https://votersedge.org/ca/en/ballot/election/104-c6a989/address/null/zip/94611/contests/contest/24183?&cty=ca%2falm&date=2022-11-08 +facebook_url: https://www.facebook.com/Derrick-Soo-for-City-of-Oakland-Mayor-2022-975183006011778/ +--- diff --git a/build/_candidates/oakland/2022-11-08/gregory-hodge-.md b/build/_candidates/oakland/2022-11-08/gregory-hodge-.md new file mode 100644 index 0000000..2138f68 --- /dev/null +++ b/build/_candidates/oakland/2022-11-08/gregory-hodge-.md @@ -0,0 +1,18 @@ +--- +election: _elections/oakland/2022-11-08.md +committee_name: Hodge for Oakland Mayor 2022 +filer_id: '1442227' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: 'Gregory Hodge + +' +occupation: Non-Profit Executive +photo_url: Gregory-Hodge.jpg +twitter_url: hodge4oakland22 +votersedge_url: https://votersedge.org/ca/en/ballot/election/104-c6a989/address/null/zip/94611/contests/contest/24183/candidate/158498?&cty=ca%2falm&date=2022-11-08 +website_url: https://www.hodgeforoakland.com/ +facebook_url: https://www.facebook.com/hodgeforoakland2022/ +instagram_url: hodgeforoakland +map_url: https://data.oaklandca.gov/campaign_finance/contribution?electionYear=2022&candidates=1442227&since=2020-02-22&until=2022-06-30 +--- diff --git a/build/_candidates/oakland/2022-11-08/treva-d-reid.md b/build/_candidates/oakland/2022-11-08/treva-d-reid.md index fd3a425..c4c15ff 100644 --- a/build/_candidates/oakland/2022-11-08/treva-d-reid.md +++ b/build/_candidates/oakland/2022-11-08/treva-d-reid.md @@ -1,6 +1,8 @@ --- election: _elections/oakland/2022-11-08.md -committee_name: Treva Reid for Oakland Mayor 2022 +committee_name: 'Treva Reid for Oakland Mayor 2022 + +' filer_id: '1442079' is_accepted_expenditure_ceiling: true is_incumbent: false diff --git a/build/_candidates/oakland/2024-11-05/merika-goolsby.md b/build/_candidates/oakland/2024-11-05/merika-goolsby.md index 423fb96..73d73d7 100644 --- a/build/_candidates/oakland/2024-11-05/merika-goolsby.md +++ b/build/_candidates/oakland/2024-11-05/merika-goolsby.md @@ -1,6 +1,6 @@ --- election: _elections/oakland/2024-11-05.md -committee_name: No committee registered +committee_name: " No committee registered" filer_id: '' is_incumbent: false name: Merika Goolsby diff --git a/build/_committees/1351785.md b/build/_committees/1351785.md index d3574e1..8c798b5 100644 --- a/build/_committees/1351785.md +++ b/build/_committees/1351785.md @@ -1,7 +1,9 @@ --- filer_id: '1351785' -name: SHEET METAL WORKERS' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES COMMITTEE +name: 'SHEET METAL WORKERS'' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES + COMMITTEE ' candidate_controlled_id: '' data_warning: -title: SHEET METAL WORKERS' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES COMMITTEE +title: 'SHEET METAL WORKERS'' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES + COMMITTEE ' --- diff --git a/build/_committees/136810.md b/build/_committees/136810.md index d5235dc..50d0248 100644 --- a/build/_committees/136810.md +++ b/build/_committees/136810.md @@ -1,7 +1,7 @@ --- filer_id: '136810' -name: Brenda Roberts for Oakland City Auditor 2014 +name: 'Brenda Roberts for Oakland City Auditor 2014 ' candidate_controlled_id: '' data_warning: -title: Brenda Roberts for Oakland City Auditor 2014 +title: 'Brenda Roberts for Oakland City Auditor 2014 ' --- diff --git a/build/_committees/1387803.md b/build/_committees/1387803.md index 2e39be0..1fe6e15 100644 --- a/build/_committees/1387803.md +++ b/build/_committees/1387803.md @@ -1,7 +1,7 @@ --- filer_id: '1387803' -name: Re-Elect James Harris for School Board +name: 'Re-Elect James Harris for School Board ' candidate_controlled_id: '' data_warning: -title: Re-Elect James Harris for School Board +title: 'Re-Elect James Harris for School Board ' --- diff --git a/build/_committees/1424633.md b/build/_committees/1424633.md index 378ba1e..a968ac2 100644 --- a/build/_committees/1424633.md +++ b/build/_committees/1424633.md @@ -1,7 +1,7 @@ --- filer_id: '1424633' -name: Oakland Neighbors United, No On Measure Q +name: 'Oakland Neighbors United, No On Measure Q ' candidate_controlled_id: '' data_warning: -title: Oakland Neighbors United, No On Measure Q +title: 'Oakland Neighbors United, No On Measure Q ' --- diff --git a/build/_committees/1427826.md b/build/_committees/1427826.md index 965c1dc..5ac1fb4 100644 --- a/build/_committees/1427826.md +++ b/build/_committees/1427826.md @@ -1,7 +1,7 @@ --- filer_id: '1427826' -name: Van Cedric Williams for Oakland School Board Seat 3 2020 +name: 'Van Cedric Williams for Oakland School Board Seat 3 2020 ' candidate_controlled_id: '' data_warning: -title: Van Cedric Williams for Oakland School Board Seat 3 2020 +title: 'Van Cedric Williams for Oakland School Board Seat 3 2020 ' --- diff --git a/build/_committees/1428015.md b/build/_committees/1428015.md index c875275..ddca2ea 100644 --- a/build/_committees/1428015.md +++ b/build/_committees/1428015.md @@ -1,11 +1,15 @@ --- filer_id: '1428015' -name: Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll +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 + +' candidate_controlled_id: '' data_warning: -title: Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll +title: '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 + +' --- diff --git a/build/_committees/1441869.md b/build/_committees/1441869.md index 831d0ac..baa0102 100644 --- a/build/_committees/1441869.md +++ b/build/_committees/1441869.md @@ -1,7 +1,11 @@ --- filer_id: '1441869' -name: Johnson Oakland Mayor 2022 +name: 'Johnson Oakland Mayor 2022 + +' candidate_controlled_id: '' data_warning: -title: Johnson Oakland Mayor 2022 +title: 'Johnson Oakland Mayor 2022 + +' --- diff --git a/build/_committees/1442079.md b/build/_committees/1442079.md index 4522a56..dd47b7d 100644 --- a/build/_committees/1442079.md +++ b/build/_committees/1442079.md @@ -1,7 +1,11 @@ --- filer_id: '1442079' -name: Treva Reid for Oakland Mayor 2022 +name: 'Treva Reid for Oakland Mayor 2022 + +' candidate_controlled_id: '' data_warning: -title: Treva Reid for Oakland Mayor 2022 +title: 'Treva Reid for Oakland Mayor 2022 + +' --- 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..c2e78af 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -13,7 +13,7 @@ "ballot_item": 2, "office_election": 2, "bio": null, - "committee_name": "Brenda Roberts for Oakland City Auditor 2014", + "committee_name": "Brenda Roberts for Oakland City Auditor 2014 ", "is_accepted_expenditure_ceiling": null, "is_incumbent": false, "occupation": 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 b8a06d2..a58a50e 100644 --- a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json +++ b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json @@ -12,7 +12,7 @@ "last_name": "Quan", "ballot_item": 10, "office_election": 10, - "bio": "Bruce Quan is a retired attorney, Quan worked as the Assistant General Counsel for the Redevelopment Agency of the City of San Jose and served as interim City Attorney for the City of Alameda. He also served as general counsel of the Organization of Chinese Americans (OCA), a national civil rights group based in Washington, He co-founded a law firm, Katz, Quan, and Kors. Quan is also an official with Zarsion, real estate developer and investment firm, partner in Brooklyn Basin development project in the Jack London Square area.Quan volunteers with the Chinese Coalition as well as Oakland Community Organizations (OCO) to address issues of housing displacement, youth civic leadership, and criminal justice for minorities.Quan has taught as a visiting Associate Professor at Peking University Law School and as an Adjunct Professor at U.C. Hastings College of Law. Quan earned his undergraduate degree from UC Berkeley and a law degree from the UC Berkeley Law School.\n\nSource: http://www.bruceforoakland.com/meet_bruce and http://www.bruceforoakland.com/news.", + "bio": "Bruce Quan is a retired attorney, Quan worked as the Assistant General Counsel for the Redevelopment Agency of the City of San Jose and served as interim City Attorney for the City of Alameda. He also served as general counsel of the Organization of Chinese Americans (OCA), a national civil rights group based in Washington, He co-founded a law firm, Katz, Quan, and Kors. Quan is also an official with Zarsion, real estate developer and investment firm, partner in Brooklyn Basin development project in the Jack London Square area.Quan volunteers with the Chinese Coalition as well as Oakland Community Organizations (OCO) to address issues of housing displacement, youth civic leadership, and criminal justice for minorities.Quan has taught as a visiting Associate Professor at Peking University Law School and as an Adjunct Professor at U.C. Hastings College of Law. Quan earned his undergraduate degree from UC Berkeley and a law degree from the UC Berkeley Law School.\n\nSource: http://www.bruceforoakland.com/meet_bruce and http://www.bruceforoakland.com/news.\n\n", "committee_name": "Bruce Quan for City Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, 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..4df417f 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -12,7 +12,7 @@ "last_name": "Jackson", "ballot_item": 18, "office_election": 18, - "bio": "Chris Jackson is a social worker who works with the formerly incarcerated on parole or probation. He is a father of a kindergartener who is going into an OUSD school. \n\nSource: http://postnewsgroup.com/blog/2016/08/19/incumbents-run-four-seats-oakland-school-board/ and http://www.chrisjacksonforoakland.org/", + "bio": "Chris Jackson is a social worker who works with the formerly incarcerated on parole or probation. He is a father of a kindergartener who is going into an OUSD school. \n\nSource: http://postnewsgroup.com/blog/2016/08/19/incumbents-run-four-seats-oakland-school-board/ and http://www.chrisjacksonforoakland.org/\n", "committee_name": "Chris Jackson for School Board 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, 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..68ed73b 100644 --- a/build/_data/candidates/oakland/2016-11-08/donald-macleay.json +++ b/build/_data/candidates/oakland/2016-11-08/donald-macleay.json @@ -12,7 +12,7 @@ "last_name": "Macleay", "ballot_item": 15, "office_election": 15, - "bio": "Don Macleay owns and runs East Bay Computer Services, a computer repair business in the Temescal district. While running for office, Macleay is on leave from People United for a Better Life in Oakland, a youth advocacy organization where he serves as a board member. In 2010, Macleay ran for mayor in Oakland. \n\nSource: https://oaklandnorth.net/2012/10/29/greens-don-macleay-promotes-civilians-on-police-force-higher-minimum-wage/", + "bio": "Don Macleay owns and runs East Bay Computer Services, a computer repair business in the Temescal district. While running for office, Macleay is on leave from People United for a Better Life in Oakland, a youth advocacy organization where he serves as a board member. In 2010, Macleay ran for mayor in Oakland. \n\nSource: https://oaklandnorth.net/2012/10/29/greens-don-macleay-promotes-civilians-on-police-force-higher-minimum-wage/\n", "committee_name": "Macleay for Oakland School Board, District 1, 2016", "is_accepted_expenditure_ceiling": null, "is_incumbent": false, 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..f0513cb 100644 --- a/build/_data/candidates/oakland/2016-11-08/james-harris.json +++ b/build/_data/candidates/oakland/2016-11-08/james-harris.json @@ -13,7 +13,7 @@ "ballot_item": 18, "office_election": 18, "bio": "James Harris is the current Board of Education President, a business owner, parent, former teacher, and East Oakland native. Harris serves on the Aim High East Bay Leadership Council. He is a founding board member of Great Oakland Public Schools and a current board member at Youth Uprising. Harris’ career in education began at 16 as a teaching assistant at the Aim High Summer Program, which prepares children from low-income communities for success in high school and life. \n\nSource: http://harrisforeastoakland.com/", - "committee_name": "Re-Elect James Harris for School Board", + "committee_name": "Re-Elect James Harris for School Board ", "is_accepted_expenditure_ceiling": null, "is_incumbent": true, "occupation": "Board of Education President; owns and operates media company in San Francisco", diff --git a/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json b/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json index 6021baa..45965a4 100644 --- a/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json +++ b/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json @@ -12,7 +12,7 @@ "last_name": "Wiginton", "ballot_item": 16, "office_election": 16, - "bio": "Kharyshi Wiginton is the Youth Leadership Coordinator at McClymonds Youth and Family Center has spent a decade doing education-related work in Oakland and currently holds a position at McClymonds High School. Wiginton graduated from the California Institute of Integral Studies in 2009. \n\nSource: https://www.facebook.com/kharyshi.wiginton, https://www.linkedin.com/in/kharyshi-wiginton-6a545b8, http://museumca.org/story/kharyshi-wiginton-youth-organizing-mcclymonds-high-school, and Candidate Statement", + "bio": "Kharyshi Wiginton is the Youth Leadership Coordinator at McClymonds Youth and Family Center has spent a decade doing education-related work in Oakland and currently holds a position at McClymonds High School. Wiginton graduated from the California Institute of Integral Studies in 2009. \n\nSource: https://www.facebook.com/kharyshi.wiginton, https://www.linkedin.com/in/kharyshi-wiginton-6a545b8, http://museumca.org/story/kharyshi-wiginton-youth-organizing-mcclymonds-high-school, and Candidate Statement\n", "committee_name": "Kharyshi Wiginton for School Board 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, diff --git a/build/_data/candidates/oakland/2016-11-08/larry-reid.json b/build/_data/candidates/oakland/2016-11-08/larry-reid.json index c7f62d2..f695ff5 100644 --- a/build/_data/candidates/oakland/2016-11-08/larry-reid.json +++ b/build/_data/candidates/oakland/2016-11-08/larry-reid.json @@ -12,7 +12,7 @@ "last_name": "Reid", "ballot_item": 14, "office_election": 14, - "bio": "Larry Reid has been a Councilmember for District 7 since 1997. Reid is a member of the Public Works and Rules and Legislation Committees for the City of Oakland and is Chairman of the Community and Economic Development Committee. Reid served as Chief of Staff for former Oakland City Councilmember Aleta Cannon and former Mayor and Assemblymember Elihu Harris. He was born and raised in Cincinnati, Ohio and attended the University of Cincinnati. \n\nSource: http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/index.htm and http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/a/Profile/index.htm", + "bio": "Larry Reid has been a Councilmember for District 7 since 1997. Reid is a member of the Public Works and Rules and Legislation Committees for the City of Oakland and is Chairman of the Community and Economic Development Committee. Reid served as Chief of Staff for former Oakland City Councilmember Aleta Cannon and former Mayor and Assemblymember Elihu Harris. He was born and raised in Cincinnati, Ohio and attended the University of Cincinnati. \n\nSource: http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/index.htm and http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/a/Profile/index.htm\n", "committee_name": "Re-Elect Larry Reid for Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": true, diff --git a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json index b1a07c7..589a5b0 100644 --- a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json +++ b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json @@ -12,7 +12,7 @@ "last_name": "Gallo", "ballot_item": 13, "office_election": 13, - "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website", + "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website\n", "committee_name": "ReElect Noel Gallo for Oakland City Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": true, diff --git a/build/_data/candidates/oakland/2016-11-08/noni-session.json b/build/_data/candidates/oakland/2016-11-08/noni-session.json index 473d424..e9d1be9 100644 --- a/build/_data/candidates/oakland/2016-11-08/noni-session.json +++ b/build/_data/candidates/oakland/2016-11-08/noni-session.json @@ -3,7 +3,7 @@ "name": "Noni Session", "photo_url": "https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Noni-Session2.png", "website_url": "http://www.nonifordistrict3.com/", - "twitter_url": "NoniSession", + "twitter_url": "NoniSession\n", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json b/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json index c91afa5..edaa105 100644 --- a/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json +++ b/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json @@ -12,7 +12,7 @@ "last_name": "Gonzales", "ballot_item": 13, "office_election": 13, - "bio": "Viola Gonzales was the Chief Executive Officer of AnewAmerica Community Corporation, a non-profit that helps immigrants and refugees start small and micro-businesses. Gonzales has been Executive Director for a non-profit residential program for developmentally disabled kids based in Oakland for the past eight years. Her volunteer service has included corporate advisory, nonprofit and civic boards. In 2002, Gonzales was appointed to the Oakland Board of Education by then-Mayor Jerry Brown. Prior to this appointment, she served on the Oakland Planning Commission. \n\nSource: http://www.anewamerica.org/index.php/news/events/173-changes-in-leadership-at-anewamerica , https://www.linkedin.com/in/violagonzales , http://boedocdepot.ousd.k12.ca.us/boe-webextender/bextest/ViolaGonzales.asp , and candidate survey", + "bio": "Viola Gonzales was the Chief Executive Officer of AnewAmerica Community Corporation, a non-profit that helps immigrants and refugees start small and micro-businesses. Gonzales has been Executive Director for a non-profit residential program for developmentally disabled kids based in Oakland for the past eight years. Her volunteer service has included corporate advisory, nonprofit and civic boards. In 2002, Gonzales was appointed to the Oakland Board of Education by then-Mayor Jerry Brown. Prior to this appointment, she served on the Oakland Planning Commission. \n\nSource: http://www.anewamerica.org/index.php/news/events/173-changes-in-leadership-at-anewamerica , https://www.linkedin.com/in/violagonzales , http://boedocdepot.ousd.k12.ca.us/boe-webextender/bextest/ViolaGonzales.asp , and candidate survey\n\n", "committee_name": "Viola Gonzales for City Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, diff --git a/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json b/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json index 6ffe2eb..c95ec86 100644 --- a/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json +++ b/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json @@ -3,7 +3,7 @@ "name": "Jesse A.J. Smith", "photo_url": "Jesse-Smith.png", "website_url": "https://oaksmith2018.com/", - "twitter_url": "OakSmith2018", + "twitter_url": "OakSmith2018 ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json b/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json index 1e3fece..7f7f219 100644 --- a/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json +++ b/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json @@ -3,7 +3,7 @@ "name": "Joseph Tanios", "photo_url": "Joseph-Tanios.png", "website_url": "https://www.joetanios.com/", - "twitter_url": "taniosfor", + "twitter_url": "taniosfor ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/loren-taylor.json b/build/_data/candidates/oakland/2018-11-06/loren-taylor.json index 3a131d3..5bc0abd 100644 --- a/build/_data/candidates/oakland/2018-11-06/loren-taylor.json +++ b/build/_data/candidates/oakland/2018-11-06/loren-taylor.json @@ -3,7 +3,7 @@ "name": "Loren Taylor", "photo_url": "Loren_Taylor.png", "website_url": "https://www.lorentaylor.org/", - "twitter_url": "lorenmtaylor", + "twitter_url": "lorenmtaylor ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json b/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json index e06339b..8f898b3 100644 --- a/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json +++ b/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json @@ -3,7 +3,7 @@ "name": "Natasha Middleton", "photo_url": "Natasha-Middleton.png", "website_url": "https://www.natashaforoakland.com/", - "twitter_url": "MiddletonNat", + "twitter_url": "MiddletonNat ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json b/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json index 4a98065..08c1ffd 100644 --- a/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json +++ b/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json @@ -3,7 +3,7 @@ "name": "Nayeli Maxson", "photo_url": "Nayeli-Maxson.png", "website_url": "https://nayeliforoakland.com/", - "twitter_url": "nayelimax", + "twitter_url": "nayelimax ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json b/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json index 2f3016d..47d3385 100644 --- a/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json @@ -3,7 +3,7 @@ "name": "Shanthi Gonzales", "photo_url": "Shanthi-Gonzales.png", "website_url": "http://gonzalesforschools.nationbuilder.com/", - "twitter_url": "ShanthiGonzales", + "twitter_url": "ShanthiGonzales ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json index 2d1876d..a2a9617 100644 --- a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json +++ b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json @@ -3,7 +3,7 @@ "name": "Sheng Thao", "photo_url": "Sheng-Thao.png", "website_url": "https://www.shengforoakland.com/", - "twitter_url": "sheng_tha0", + "twitter_url": "sheng_tha0 ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2020-11-03/carroll-fife.json b/build/_data/candidates/oakland/2020-11-03/carroll-fife.json index 93f9e94..a6b605a 100644 --- a/build/_data/candidates/oakland/2020-11-03/carroll-fife.json +++ b/build/_data/candidates/oakland/2020-11-03/carroll-fife.json @@ -31,7 +31,7 @@ "Total": 126668.0, "Cand_ID": 1427585, "Filer_ID": "1428015", - "Filer_NamL": "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" + "Filer_NamL": "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\n" }, { "Total": 6329.91, diff --git a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json index d00d700..10025c2 100644 --- a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json +++ b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json @@ -4,7 +4,7 @@ "photo_url": "derreck_johnson_sub.jpg", "website_url": "https://www.johnsonforoakland.com/", "twitter_url": "derreckbjohnson", - "facebook_url": "https://www.facebook.com/derreckbjohnson/", + "facebook_url": "\nhttps://www.facebook.com/derreckbjohnson/", "instagram_url": "derreckbjohnson", "map_url": null, "votersedge_url": "https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/contests/contest/21265/candidate/151385?cty=ca%2falm", @@ -82,7 +82,7 @@ "Total": 22991.74, "Cand_ID": 1426780, "Filer_ID": "1428015", - "Filer_NamL": "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" + "Filer_NamL": "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\n" } ] }, diff --git a/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json b/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json index 7afe862..6351e0f 100644 --- a/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json +++ b/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json @@ -77,7 +77,7 @@ "Total": 41640.3, "Cand_ID": 1421347, "Filer_ID": "1428015", - "Filer_NamL": "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" + "Filer_NamL": "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\n" } ] }, diff --git a/build/_data/candidates/oakland/2020-11-03/noel-gallo.json b/build/_data/candidates/oakland/2020-11-03/noel-gallo.json index ffdec24..2ea553f 100644 --- a/build/_data/candidates/oakland/2020-11-03/noel-gallo.json +++ b/build/_data/candidates/oakland/2020-11-03/noel-gallo.json @@ -12,7 +12,7 @@ "last_name": "Gallo", "ballot_item": 13, "office_election": 13, - "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website", + "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website\n", "committee_name": "Re-Elect Noel Gallo for Oakland City Council 2020", "is_accepted_expenditure_ceiling": false, "is_incumbent": true, diff --git a/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json b/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json index 862580b..edd8732 100644 --- a/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json @@ -31,7 +31,7 @@ "Total": 224049.5, "Cand_ID": 1419466, "Filer_ID": "1428015", - "Filer_NamL": "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" + "Filer_NamL": "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\n" }, { "Total": 2805.61, diff --git a/build/_data/candidates/oakland/2020-11-03/vancedric-williams.json b/build/_data/candidates/oakland/2020-11-03/vancedric-williams.json index 8c1d27a..ee7a928 100644 --- a/build/_data/candidates/oakland/2020-11-03/vancedric-williams.json +++ b/build/_data/candidates/oakland/2020-11-03/vancedric-williams.json @@ -13,7 +13,7 @@ "ballot_item": 16, "office_election": 16, "bio": null, - "committee_name": "Van Cedric Williams for Oakland School Board Seat 3 2020", + "committee_name": "Van Cedric Williams for Oakland School Board Seat 3 2020 ", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, "occupation": "Teacher/Treasurer", diff --git a/build/_data/candidates/oakland/2022-11-08/derreck-johnson.json b/build/_data/candidates/oakland/2022-11-08/derreck-johnson.json index 6679b6f..a258c82 100644 --- a/build/_data/candidates/oakland/2022-11-08/derreck-johnson.json +++ b/build/_data/candidates/oakland/2022-11-08/derreck-johnson.json @@ -13,7 +13,7 @@ "ballot_item": 1, "office_election": 1, "bio": null, - "committee_name": "Johnson Oakland Mayor 2022", + "committee_name": "Johnson Oakland Mayor 2022\n", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, "occupation": "Not qualified for ballot", diff --git a/build/_data/candidates/oakland/2022-11-08/derrick-soo-.json b/build/_data/candidates/oakland/2022-11-08/derrick-soo-.json new file mode 100644 index 0000000..96cb093 --- /dev/null +++ b/build/_data/candidates/oakland/2022-11-08/derrick-soo-.json @@ -0,0 +1,53 @@ +{ + "id": 23, + "name": "Derrick Soo\n", + "photo_url": "derrick-soo.jpg", + "website_url": null, + "twitter_url": "DerrickSoo4Oak", + "facebook_url": "https://www.facebook.com/Derrick-Soo-for-City-of-Oakland-Mayor-2022-975183006011778/", + "instagram_url": null, + "map_url": null, + "votersedge_url": "https://votersedge.org/ca/en/ballot/election/104-c6a989/address/null/zip/94611/contests/contest/24183?&cty=ca%2falm&date=2022-11-08", + "first_name": "Derrick", + "last_name": "Soo\n", + "ballot_item": 1, + "office_election": 1, + "bio": null, + "committee_name": "No committee registered", + "is_accepted_expenditure_ceiling": true, + "is_incumbent": false, + "occupation": "Not qualified for ballot", + "party_affiliation": null, + "is_winner": null, + "filer_id": null, + "supporting_money": { + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, + "total_supporting_independent": 0.0, + "support_list": [ + + ], + "contributions_by_type": { + }, + "contributions_by_origin": { + }, + "total_small_contributions": null, + "expenditures_by_type": { + }, + "supporting_by_type": { + } + }, + "opposing_money": { + "opposing_expenditures": 0.0, + "opposing_by_type": { + }, + "opposition_list": [ + + ] + }, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null +} diff --git a/build/_data/candidates/oakland/2022-11-08/gregory-hodge-.json b/build/_data/candidates/oakland/2022-11-08/gregory-hodge-.json new file mode 100644 index 0000000..cdeff09 --- /dev/null +++ b/build/_data/candidates/oakland/2022-11-08/gregory-hodge-.json @@ -0,0 +1,69 @@ +{ + "id": 26, + "name": "Gregory Hodge\n", + "photo_url": "Gregory-Hodge.jpg", + "website_url": "https://www.hodgeforoakland.com/", + "twitter_url": "hodge4oakland22", + "facebook_url": "https://www.facebook.com/hodgeforoakland2022/", + "instagram_url": "hodgeforoakland", + "map_url": "https://data.oaklandca.gov/campaign_finance/contribution?electionYear=2022&candidates=1442227&since=2020-02-22&until=2022-06-30", + "votersedge_url": "https://votersedge.org/ca/en/ballot/election/104-c6a989/address/null/zip/94611/contests/contest/24183/candidate/158498?&cty=ca%2falm&date=2022-11-08", + "first_name": "Gregory", + "last_name": "Hodge\n", + "ballot_item": 1, + "office_election": 1, + "bio": null, + "committee_name": "Hodge for Oakland Mayor 2022", + "is_accepted_expenditure_ceiling": true, + "is_incumbent": false, + "occupation": "Non-Profit Executive", + "party_affiliation": null, + "is_winner": null, + "filer_id": 1442227, + "supporting_money": { + "contributions_received": 174993.15, + "total_contributions": 174993.15, + "total_expenditures": 174993.15, + "total_loans_received": 0.0, + "total_supporting_independent": 0.0, + "support_list": [ + + ], + "contributions_by_type": { + "Committee": 2050.0, + "Individual": 163861.0, + "Unitemized": 7083.0, + "Other (includes Businesses)": 1999.15 + }, + "contributions_by_origin": { + "Out of State": 38345.0, + "Within Oakland": 75981.0, + "Within California": 53584.15 + }, + "total_small_contributions": 12333.0, + "expenditures_by_type": { + "Not Stated": 26372.78, + "Office Expenses": 5676.59, + "Campaign Consultants": 81646.09, + "Meetings and Appearances": 2500.0, + "Campaign Paraphernalia/Misc.": 9001.44, + "Candidate Filing/Ballot Fees": 1000.0, + "Campaign Literature and Mailings": 6009.34, + "Professional Services (Legal, Accounting)": 28353.0, + "Information Technology Costs (Internet, E-mail)": 13785.17 + }, + "supporting_by_type": { + } + }, + "opposing_money": { + "opposing_expenditures": 0.0, + "opposing_by_type": { + }, + "opposition_list": [ + + ] + }, + "total_contributions": 174993.15, + "total_expenditures": 174993.15, + "total_loans_received": 0.0 +} diff --git a/build/_data/candidates/oakland/2022-11-08/treva-d-reid.json b/build/_data/candidates/oakland/2022-11-08/treva-d-reid.json index 9f0c8e1..27c4107 100644 --- a/build/_data/candidates/oakland/2022-11-08/treva-d-reid.json +++ b/build/_data/candidates/oakland/2022-11-08/treva-d-reid.json @@ -13,7 +13,7 @@ "ballot_item": 1, "office_election": 1, "bio": null, - "committee_name": "Treva Reid for Oakland Mayor 2022", + "committee_name": "Treva Reid for Oakland Mayor 2022\n", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, "occupation": "Councilmember/Senior Caregiver", diff --git a/build/_data/candidates/oakland/2024-11-05/merika-goolsby.json b/build/_data/candidates/oakland/2024-11-05/merika-goolsby.json index 9d7d264..f5d3a39 100644 --- a/build/_data/candidates/oakland/2024-11-05/merika-goolsby.json +++ b/build/_data/candidates/oakland/2024-11-05/merika-goolsby.json @@ -13,7 +13,7 @@ "ballot_item": 14, "office_election": 14, "bio": null, - "committee_name": "No committee registered", + "committee_name": " No committee registered", "is_accepted_expenditure_ceiling": null, "is_incumbent": false, "occupation": null, diff --git a/build/_data/committees/1410941.json b/build/_data/committees/1410941.json index dacda45..fcb85cd 100644 --- a/build/_data/committees/1410941.json +++ b/build/_data/committees/1410941.json @@ -153,7 +153,7 @@ "Tran_Date": "2018-09-24", "Tran_NamF": null, "Tran_NamL": "Morse Management, Inc.", - "Tran_Zip4": "10022" + "Tran_Zip4": "94661" }, { "Filer_ID": "1410941", @@ -164,7 +164,7 @@ "Tran_Date": "2018-09-24", "Tran_NamF": null, "Tran_NamL": "Morse Management, Inc.", - "Tran_Zip4": "94661" + "Tran_Zip4": "10022" }, { "Filer_ID": "1410941", diff --git a/build/_data/committees/1421001.json b/build/_data/committees/1421001.json index 09cc4a0..ff4043a 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": "94602" + "Tran_Zip4": "94603" }, { "Filer_ID": "1421001", @@ -1209,7 +1209,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94603" + "Tran_Zip4": "94602" }, { "Filer_ID": "1421001", diff --git a/build/_data/elections/oakland/2018-06-05.json b/build/_data/elections/oakland/2018-06-05.json index b39b338..140316d 100644 --- a/build/_data/elections/oakland/2018-06-05.json +++ b/build/_data/elections/oakland/2018-06-05.json @@ -57,7 +57,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_contributions": 10000.0 diff --git a/build/_data/elections/oakland/2020-11-03.json b/build/_data/elections/oakland/2020-11-03.json index 05260d5..49df590 100644 --- a/build/_data/elections/oakland/2020-11-03.json +++ b/build/_data/elections/oakland/2020-11-03.json @@ -60,7 +60,7 @@ ], "largest_independent_expenditures": [ { - "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", + "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\n", "election_name": "oakland-2020", "total_spending": 395215.85 }, diff --git a/build/_data/elections/oakland/2022-06-07.json b/build/_data/elections/oakland/2022-06-07.json index 65938d5..d6f2413 100644 --- a/build/_data/elections/oakland/2022-06-07.json +++ b/build/_data/elections/oakland/2022-06-07.json @@ -12,7 +12,7 @@ }, "most_expensive_races": [ { - "slug": "library-services-retention-and-enhancement-act", + "slug": "library-services-retention-and-enhancement-act-", "type": "referendum", "title": "Measure C", "amount": 104075.02 diff --git a/build/_data/elections/oakland/2022-11-08.json b/build/_data/elections/oakland/2022-11-08.json index f716008..d27ae57 100644 --- a/build/_data/elections/oakland/2022-11-08.json +++ b/build/_data/elections/oakland/2022-11-08.json @@ -2,15 +2,15 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.1800000006, + "Within Oakland": 2632398.1799999997, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.870000002, + "Individual": 2509320.869999998, "Unitemized": 135828.3, - "Self Funding": 2711.0, + "Self Funding": 1301.0, "Other (includes Businesses)": 2638453.6399999997 }, "most_expensive_races": [ @@ -107,7 +107,7 @@ "total_contributions": 6300.0 }, { - "name": "Russ Taplin", + "name": "John Protopappas", "type": "Office", "election_name": "oakland-2022", "total_contributions": 5400.0 diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index a5efb57..0389cae 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -72,19 +72,19 @@ ], "top_contributors_for_offices": [ { - "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 }, { - "name": "Laborers Local 304", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 diff --git a/build/_data/elections/oakland/2024-11-05.json b/build/_data/elections/oakland/2024-11-05.json index 129d546..adbcd09 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": "Weylin White", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Todd Scanlin", + "name": "Dow Terry", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 }, { - "name": "Jacob Zonn", + "name": "Brooke Levin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 diff --git a/build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit-.json b/build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit-.json new file mode 100644 index 0000000..4674fee --- /dev/null +++ b/build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit-.json @@ -0,0 +1,21 @@ +{ + "id": 3, + "contest_type": "Referendum", + "name": "Increase Appropriations Limit ", + "title": "Increase Appropriations Limit ", + "summary": "This measure would authorize the City of Oakland to continue spending the proceeds of voter-approved City taxes, including Measure M (Emergency Medical Services), Measure N (Paramedic Services), Measure Q (Library Services), Measure C (Hotel Tax), Measure Z (Public Safety and Violence \nPrevention Services), Measure HH (Sugar Sweetened Beverages), Measure D (Public Libraries \nPreservation), Measure W (Vacant Properties), as well as other taxes received by the City such \nas, Property Tax, State Tax, Business License Tax, Utility Consumption Tax, Real Estate \nTransfer Tax, Transient Occupancy Tax, and the Parking Tax.\n", + "number": "S", + "voters_edge_url": "https://votersedge.org/ca/en/ballot/election/83-f810b9/address/null/zip/94611/measures/measure/3845?&cty=ca%2falm&date=2020-03-03", + "contributions_by_region": [ + + ], + "contributions_by_type": [ + + ], + "opposing_organizations": [ + + ], + "total_contributions": [ + + ] +} 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 09d32d2..27332c3 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 @@ -49,8 +49,8 @@ }, { "id": "1424633", - "name": "Oakland Neighbors United, No On Measure Q", - "payee": "Oakland Neighbors United, No On Measure Q", + "name": "Oakland Neighbors United, No On Measure Q ", + "payee": "Oakland Neighbors United, No On Measure Q ", "amount": 211347.14 } ], diff --git a/build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act-.json b/build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act-.json new file mode 100644 index 0000000..a11fe90 --- /dev/null +++ b/build/_data/referendum_opposing/oakland/2022-06-07/library-services-retention-and-enhancement-act-.json @@ -0,0 +1,19 @@ +{ + "id": 4, + "contest_type": "Referendum", + "name": "Library Services Retention and Enhancement Act ", + "title": "Library Services Retention and Enhancement Act ", + "summary": "This measure would reauthorize the Act for a period of 30 years until June 30, 2052. The Act does not increase the current tax rate except to allow for annual percentages authorized by City Council that are up to the greater of Consumer Price Index (CPI) or California per capita personal income. The Act provides an additional exemption for low-income seniors and residents. This legislation updates the minimum General Purpose Fund (GPF) commitment for library services to the FY 2021-2022 appropriation level and eliminates the “Reserve Fund Requirement.”", + "number": "C", + "voters_edge_url": null, + "contributions_by_region": [ + + ], + "contributions_by_type": [ + + ], + "opposing_organizations": [ + + ], + "total_contributions": 0 +} diff --git a/build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language-.json b/build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language-.json new file mode 100644 index 0000000..c7833e9 --- /dev/null +++ b/build/_data/referendum_opposing/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language-.json @@ -0,0 +1,21 @@ +{ + "id": 14, + "contest_type": "Referendum", + "name": "Charter Amendment Regarding Non-Gendered Language ", + "title": "Charter Amendment Regarding Non-Gendered Language ", + "summary": "Shall the measure to amend the City Charter to replace gender-specific language with gender neutral language, such as replacing words like \"fireman\" with \"firefighters\" and using gender-neutral pronouns in referring to City officers and staff, recognizing that women and non-binary persons as well as men are qualified for and hold such positions, and to avoid gender stereotyping and discrimination, and promote inclusivity be adopted?", + "number": "R", + "voters_edge_url": null, + "contributions_by_region": [ + + ], + "contributions_by_type": [ + + ], + "opposing_organizations": [ + + ], + "total_contributions": [ + + ] +} diff --git a/build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit-.json b/build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit-.json new file mode 100644 index 0000000..b9c4388 --- /dev/null +++ b/build/_data/referendum_supporting/oakland/2020-03-03/increase-appropriations-limit-.json @@ -0,0 +1,21 @@ +{ + "id": 3, + "contest_type": "Referendum", + "name": "Increase Appropriations Limit ", + "title": "Increase Appropriations Limit ", + "summary": "This measure would authorize the City of Oakland to continue spending the proceeds of voter-approved City taxes, including Measure M (Emergency Medical Services), Measure N (Paramedic Services), Measure Q (Library Services), Measure C (Hotel Tax), Measure Z (Public Safety and Violence \nPrevention Services), Measure HH (Sugar Sweetened Beverages), Measure D (Public Libraries \nPreservation), Measure W (Vacant Properties), as well as other taxes received by the City such \nas, Property Tax, State Tax, Business License Tax, Utility Consumption Tax, Real Estate \nTransfer Tax, Transient Occupancy Tax, and the Parking Tax.\n", + "number": "S", + "voters_edge_url": "https://votersedge.org/ca/en/ballot/election/83-f810b9/address/null/zip/94611/measures/measure/3845?&cty=ca%2falm&date=2020-03-03", + "contributions_by_region": [ + + ], + "contributions_by_type": [ + + ], + "supporting_organizations": [ + + ], + "total_contributions": [ + + ] +} 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 new file mode 100644 index 0000000..5fb0a9a --- /dev/null +++ b/build/_data/referendum_supporting/oakland/2022-06-07/library-services-retention-and-enhancement-act-.json @@ -0,0 +1,46 @@ +{ + "id": 4, + "contest_type": "Referendum", + "name": "Library Services Retention and Enhancement Act ", + "title": "Library Services Retention and Enhancement Act ", + "summary": "This measure would reauthorize the Act for a period of 30 years until June 30, 2052. The Act does not increase the current tax rate except to allow for annual percentages authorized by City Council that are up to the greater of Consumer Price Index (CPI) or California per capita personal income. The Act provides an additional exemption for low-income seniors and residents. This legislation updates the minimum General Purpose Fund (GPF) commitment for library services to the FY 2021-2022 appropriation level and eliminates the “Reserve Fund Requirement.”", + "number": "C", + "voters_edge_url": null, + "contributions_by_region": [ + { + "amount": 6400.0, + "locale": "Out of State" + }, + { + "amount": 33250.0, + "locale": "Within California" + }, + { + "amount": 64425.02, + "locale": "Within Oakland" + } + ], + "contributions_by_type": [ + { + "type": "Committee", + "amount": 22000.0 + }, + { + "type": "Individual", + "amount": 16375.0 + }, + { + "type": "Other (includes Businesses)", + "amount": 65700.02 + } + ], + "supporting_organizations": [ + { + "id": "1445857", + "name": "Neighbors for the Oakland Library - Yes on C!", + "payee": "Neighbors for the Oakland Library - Yes on C!", + "amount": 105875.02 + } + ], + "total_contributions": 104075.02 +} diff --git a/build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language-.json b/build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language-.json new file mode 100644 index 0000000..4b28797 --- /dev/null +++ b/build/_data/referendum_supporting/oakland/2022-11-08/charter-amendment-regarding-non-gendered-language-.json @@ -0,0 +1,21 @@ +{ + "id": 14, + "contest_type": "Referendum", + "name": "Charter Amendment Regarding Non-Gendered Language ", + "title": "Charter Amendment Regarding Non-Gendered Language ", + "summary": "Shall the measure to amend the City Charter to replace gender-specific language with gender neutral language, such as replacing words like \"fireman\" with \"firefighters\" and using gender-neutral pronouns in referring to City officers and staff, recognizing that women and non-binary persons as well as men are qualified for and hold such positions, and to avoid gender stereotyping and discrimination, and promote inclusivity be adopted?", + "number": "R", + "voters_edge_url": null, + "contributions_by_region": [ + + ], + "contributions_by_type": [ + + ], + "supporting_organizations": [ + + ], + "total_contributions": [ + + ] +} diff --git a/build/_data/totals.json b/build/_data/totals.json index fa7c509..704345e 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -645,7 +645,7 @@ ], "largest_independent_expenditures": [ { - "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", + "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\n", "election_name": "oakland-2020", "total_spending": 395215.85 }, @@ -782,15 +782,15 @@ "total_contributions": 6476065.89, "total_ ```
ChenglimEar commented 10 months ago

@mikeubell I've added the remaining code to ensure that the ETL runs through successfully under csvkit 1.3.0. It appeared that travis was not correctly installing packages under python 3 when pip install was run with sudo. I've corrected that, but noticed that is was running under python 3.7 instead of the configured python 3.9 under travis. Even though it appears to be working, it will be better if we can understand why travis is not running with the exact configured version of python.

mikeubell commented 10 months ago
Build diff from Commit fb60d327231f5117b43e42b64de792e74b263475: ```diff diff --git a/build/_candidates/oakland/2014-11-04/brenda-roberts.md b/build/_candidates/oakland/2014-11-04/brenda-roberts.md index a8dc40c..8308b89 100644 --- a/build/_candidates/oakland/2014-11-04/brenda-roberts.md +++ b/build/_candidates/oakland/2014-11-04/brenda-roberts.md @@ -1,6 +1,6 @@ --- election: _elections/oakland/2014-11-04.md -committee_name: Brenda Roberts for Oakland City Auditor 2014 +committee_name: 'Brenda Roberts for Oakland City Auditor 2014 ' filer_id: '136810' is_incumbent: false name: Brenda Roberts diff --git a/build/_candidates/oakland/2016-11-08/james-harris.md b/build/_candidates/oakland/2016-11-08/james-harris.md index 24b6b5d..de83c01 100644 --- a/build/_candidates/oakland/2016-11-08/james-harris.md +++ b/build/_candidates/oakland/2016-11-08/james-harris.md @@ -1,6 +1,6 @@ --- election: _elections/oakland/2016-11-08.md -committee_name: Re-Elect James Harris for School Board +committee_name: 'Re-Elect James Harris for School Board ' filer_id: '1387803' is_incumbent: true name: James Harris diff --git a/build/_candidates/oakland/2016-11-08/noni-session.md b/build/_candidates/oakland/2016-11-08/noni-session.md index 59ea0ae..34ba74f 100644 --- a/build/_candidates/oakland/2016-11-08/noni-session.md +++ b/build/_candidates/oakland/2016-11-08/noni-session.md @@ -8,7 +8,9 @@ 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 +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/2018-11-06/jesse-a-j-smith.md b/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md index 90c9eda..163326a 100644 --- a/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md +++ b/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md @@ -6,7 +6,7 @@ is_incumbent: false name: Jesse A.J. Smith occupation: Writer photo_url: Jesse-Smith.png -twitter_url: OakSmith2018 +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-tanios.md b/build/_candidates/oakland/2018-11-06/joseph-tanios.md index e689918..0169fcf 100644 --- a/build/_candidates/oakland/2018-11-06/joseph-tanios.md +++ b/build/_candidates/oakland/2018-11-06/joseph-tanios.md @@ -8,7 +8,7 @@ name: Joseph Tanios occupation: Construction Inspection Supervisor photo_url: Joseph-Tanios.png public_funding_received: "$7,463" -twitter_url: taniosfor +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/loren-taylor.md b/build/_candidates/oakland/2018-11-06/loren-taylor.md index 72fa117..148c273 100644 --- a/build/_candidates/oakland/2018-11-06/loren-taylor.md +++ b/build/_candidates/oakland/2018-11-06/loren-taylor.md @@ -8,7 +8,7 @@ name: Loren Taylor occupation: Entrepreneur/Non-Profit Boardmember photo_url: Loren_Taylor.png public_funding_received: "$18,345" -twitter_url: lorenmtaylor +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/natasha-middleton.md b/build/_candidates/oakland/2018-11-06/natasha-middleton.md index c0be362..cf9bb37 100644 --- a/build/_candidates/oakland/2018-11-06/natasha-middleton.md +++ b/build/_candidates/oakland/2018-11-06/natasha-middleton.md @@ -8,7 +8,7 @@ name: Natasha Middleton occupation: Management Analyst photo_url: Natasha-Middleton.png public_funding_received: "$18,345" -twitter_url: MiddletonNat +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 index b4ca769..d46dd7e 100644 --- a/build/_candidates/oakland/2018-11-06/nayeli-maxson.md +++ b/build/_candidates/oakland/2018-11-06/nayeli-maxson.md @@ -8,7 +8,7 @@ name: Nayeli Maxson occupation: Executive Director/Attorney photo_url: Nayeli-Maxson.png public_funding_received: "$18,345" -twitter_url: nayelimax +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/shanthi-gonzales.md b/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md index 256278e..716b836 100644 --- a/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md +++ b/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md @@ -7,7 +7,7 @@ is_incumbent: true name: Shanthi Gonzales occupation: School Board Director photo_url: Shanthi-Gonzales.png -twitter_url: ShanthiGonzales +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 index 71ce4a4..f53e736 100644 --- a/build/_candidates/oakland/2018-11-06/sheng-thao.md +++ b/build/_candidates/oakland/2018-11-06/sheng-thao.md @@ -8,7 +8,7 @@ name: Sheng Thao occupation: Chief of Staff photo_url: Sheng-Thao.png public_funding_received: "$18,345" -twitter_url: sheng_tha0 +twitter_url: 'sheng_tha0 ' votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139762?&county=alameda%20county&election_authority_id=1 website_url: https://www.shengforoakland.com/ --- diff --git a/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md b/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md index 6221469..99c3478 100644 --- a/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md +++ b/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md @@ -10,6 +10,8 @@ photo_url: derreck_johnson_sub.jpg twitter_url: derreckbjohnson votersedge_url: https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/contests/contest/21265/candidate/151385?cty=ca%2falm website_url: https://www.johnsonforoakland.com/ -facebook_url: https://www.facebook.com/derreckbjohnson/ +facebook_url: |2- + + https://www.facebook.com/derreckbjohnson/ instagram_url: derreckbjohnson --- diff --git a/build/_candidates/oakland/2020-11-03/vancedric-williams.md b/build/_candidates/oakland/2020-11-03/vancedric-williams.md index c7c2d71..66ed23e 100644 --- a/build/_candidates/oakland/2020-11-03/vancedric-williams.md +++ b/build/_candidates/oakland/2020-11-03/vancedric-williams.md @@ -1,6 +1,6 @@ --- election: _elections/oakland/2020-11-03.md -committee_name: Van Cedric Williams for Oakland School Board Seat 3 2020 +committee_name: 'Van Cedric Williams for Oakland School Board Seat 3 2020 ' filer_id: '1427826' is_accepted_expenditure_ceiling: true is_incumbent: false diff --git a/build/_candidates/oakland/2022-11-08/derreck-johnson.md b/build/_candidates/oakland/2022-11-08/derreck-johnson.md index 91ab954..cad4914 100644 --- a/build/_candidates/oakland/2022-11-08/derreck-johnson.md +++ b/build/_candidates/oakland/2022-11-08/derreck-johnson.md @@ -1,6 +1,8 @@ --- election: _elections/oakland/2022-11-08.md -committee_name: Johnson Oakland Mayor 2022 +committee_name: 'Johnson Oakland Mayor 2022 + +' filer_id: '1441869' is_accepted_expenditure_ceiling: true is_incumbent: false diff --git a/build/_candidates/oakland/2022-11-08/derrick-soo-.md b/build/_candidates/oakland/2022-11-08/derrick-soo-.md new file mode 100644 index 0000000..297a2ea --- /dev/null +++ b/build/_candidates/oakland/2022-11-08/derrick-soo-.md @@ -0,0 +1,15 @@ +--- +election: _elections/oakland/2022-11-08.md +committee_name: No committee registered +filer_id: '' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: 'Derrick Soo + +' +occupation: Not qualified for ballot +photo_url: derrick-soo.jpg +twitter_url: DerrickSoo4Oak +votersedge_url: https://votersedge.org/ca/en/ballot/election/104-c6a989/address/null/zip/94611/contests/contest/24183?&cty=ca%2falm&date=2022-11-08 +facebook_url: https://www.facebook.com/Derrick-Soo-for-City-of-Oakland-Mayor-2022-975183006011778/ +--- diff --git a/build/_candidates/oakland/2022-11-08/gregory-hodge-.md b/build/_candidates/oakland/2022-11-08/gregory-hodge-.md new file mode 100644 index 0000000..2138f68 --- /dev/null +++ b/build/_candidates/oakland/2022-11-08/gregory-hodge-.md @@ -0,0 +1,18 @@ +--- +election: _elections/oakland/2022-11-08.md +committee_name: Hodge for Oakland Mayor 2022 +filer_id: '1442227' +is_accepted_expenditure_ceiling: true +is_incumbent: false +name: 'Gregory Hodge + +' +occupation: Non-Profit Executive +photo_url: Gregory-Hodge.jpg +twitter_url: hodge4oakland22 +votersedge_url: https://votersedge.org/ca/en/ballot/election/104-c6a989/address/null/zip/94611/contests/contest/24183/candidate/158498?&cty=ca%2falm&date=2022-11-08 +website_url: https://www.hodgeforoakland.com/ +facebook_url: https://www.facebook.com/hodgeforoakland2022/ +instagram_url: hodgeforoakland +map_url: https://data.oaklandca.gov/campaign_finance/contribution?electionYear=2022&candidates=1442227&since=2020-02-22&until=2022-06-30 +--- diff --git a/build/_candidates/oakland/2022-11-08/treva-d-reid.md b/build/_candidates/oakland/2022-11-08/treva-d-reid.md index fd3a425..c4c15ff 100644 --- a/build/_candidates/oakland/2022-11-08/treva-d-reid.md +++ b/build/_candidates/oakland/2022-11-08/treva-d-reid.md @@ -1,6 +1,8 @@ --- election: _elections/oakland/2022-11-08.md -committee_name: Treva Reid for Oakland Mayor 2022 +committee_name: 'Treva Reid for Oakland Mayor 2022 + +' filer_id: '1442079' is_accepted_expenditure_ceiling: true is_incumbent: false diff --git a/build/_candidates/oakland/2024-11-05/merika-goolsby.md b/build/_candidates/oakland/2024-11-05/merika-goolsby.md index 423fb96..73d73d7 100644 --- a/build/_candidates/oakland/2024-11-05/merika-goolsby.md +++ b/build/_candidates/oakland/2024-11-05/merika-goolsby.md @@ -1,6 +1,6 @@ --- election: _elections/oakland/2024-11-05.md -committee_name: No committee registered +committee_name: " No committee registered" filer_id: '' is_incumbent: false name: Merika Goolsby diff --git a/build/_committees/1351785.md b/build/_committees/1351785.md index d3574e1..8c798b5 100644 --- a/build/_committees/1351785.md +++ b/build/_committees/1351785.md @@ -1,7 +1,9 @@ --- filer_id: '1351785' -name: SHEET METAL WORKERS' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES COMMITTEE +name: 'SHEET METAL WORKERS'' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES + COMMITTEE ' candidate_controlled_id: '' data_warning: -title: SHEET METAL WORKERS' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES COMMITTEE +title: 'SHEET METAL WORKERS'' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES + COMMITTEE ' --- diff --git a/build/_committees/136810.md b/build/_committees/136810.md index d5235dc..50d0248 100644 --- a/build/_committees/136810.md +++ b/build/_committees/136810.md @@ -1,7 +1,7 @@ --- filer_id: '136810' -name: Brenda Roberts for Oakland City Auditor 2014 +name: 'Brenda Roberts for Oakland City Auditor 2014 ' candidate_controlled_id: '' data_warning: -title: Brenda Roberts for Oakland City Auditor 2014 +title: 'Brenda Roberts for Oakland City Auditor 2014 ' --- diff --git a/build/_committees/1387803.md b/build/_committees/1387803.md index 2e39be0..1fe6e15 100644 --- a/build/_committees/1387803.md +++ b/build/_committees/1387803.md @@ -1,7 +1,7 @@ --- filer_id: '1387803' -name: Re-Elect James Harris for School Board +name: 'Re-Elect James Harris for School Board ' candidate_controlled_id: '' data_warning: -title: Re-Elect James Harris for School Board +title: 'Re-Elect James Harris for School Board ' --- diff --git a/build/_committees/1424633.md b/build/_committees/1424633.md index 378ba1e..a968ac2 100644 --- a/build/_committees/1424633.md +++ b/build/_committees/1424633.md @@ -1,7 +1,7 @@ --- filer_id: '1424633' -name: Oakland Neighbors United, No On Measure Q +name: 'Oakland Neighbors United, No On Measure Q ' candidate_controlled_id: '' data_warning: -title: Oakland Neighbors United, No On Measure Q +title: 'Oakland Neighbors United, No On Measure Q ' --- diff --git a/build/_committees/1427826.md b/build/_committees/1427826.md index 965c1dc..5ac1fb4 100644 --- a/build/_committees/1427826.md +++ b/build/_committees/1427826.md @@ -1,7 +1,7 @@ --- filer_id: '1427826' -name: Van Cedric Williams for Oakland School Board Seat 3 2020 +name: 'Van Cedric Williams for Oakland School Board Seat 3 2020 ' candidate_controlled_id: '' data_warning: -title: Van Cedric Williams for Oakland School Board Seat 3 2020 +title: 'Van Cedric Williams for Oakland School Board Seat 3 2020 ' --- diff --git a/build/_committees/1428015.md b/build/_committees/1428015.md index c875275..ddca2ea 100644 --- a/build/_committees/1428015.md +++ b/build/_committees/1428015.md @@ -1,11 +1,15 @@ --- filer_id: '1428015' -name: Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll +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 + +' candidate_controlled_id: '' data_warning: -title: Oakland 2020 Committee to Replace Lynette Gibson McElhaney And Elect Carroll +title: '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 + +' --- diff --git a/build/_committees/1441869.md b/build/_committees/1441869.md index 831d0ac..baa0102 100644 --- a/build/_committees/1441869.md +++ b/build/_committees/1441869.md @@ -1,7 +1,11 @@ --- filer_id: '1441869' -name: Johnson Oakland Mayor 2022 +name: 'Johnson Oakland Mayor 2022 + +' candidate_controlled_id: '' data_warning: -title: Johnson Oakland Mayor 2022 +title: 'Johnson Oakland Mayor 2022 + +' --- diff --git a/build/_committees/1442079.md b/build/_committees/1442079.md index 4522a56..dd47b7d 100644 --- a/build/_committees/1442079.md +++ b/build/_committees/1442079.md @@ -1,7 +1,11 @@ --- filer_id: '1442079' -name: Treva Reid for Oakland Mayor 2022 +name: 'Treva Reid for Oakland Mayor 2022 + +' candidate_controlled_id: '' data_warning: -title: Treva Reid for Oakland Mayor 2022 +title: 'Treva Reid for Oakland Mayor 2022 + +' --- 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..c2e78af 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -13,7 +13,7 @@ "ballot_item": 2, "office_election": 2, "bio": null, - "committee_name": "Brenda Roberts for Oakland City Auditor 2014", + "committee_name": "Brenda Roberts for Oakland City Auditor 2014 ", "is_accepted_expenditure_ceiling": null, "is_incumbent": false, "occupation": 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 b8a06d2..a58a50e 100644 --- a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json +++ b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json @@ -12,7 +12,7 @@ "last_name": "Quan", "ballot_item": 10, "office_election": 10, - "bio": "Bruce Quan is a retired attorney, Quan worked as the Assistant General Counsel for the Redevelopment Agency of the City of San Jose and served as interim City Attorney for the City of Alameda. He also served as general counsel of the Organization of Chinese Americans (OCA), a national civil rights group based in Washington, He co-founded a law firm, Katz, Quan, and Kors. Quan is also an official with Zarsion, real estate developer and investment firm, partner in Brooklyn Basin development project in the Jack London Square area.Quan volunteers with the Chinese Coalition as well as Oakland Community Organizations (OCO) to address issues of housing displacement, youth civic leadership, and criminal justice for minorities.Quan has taught as a visiting Associate Professor at Peking University Law School and as an Adjunct Professor at U.C. Hastings College of Law. Quan earned his undergraduate degree from UC Berkeley and a law degree from the UC Berkeley Law School.\n\nSource: http://www.bruceforoakland.com/meet_bruce and http://www.bruceforoakland.com/news.", + "bio": "Bruce Quan is a retired attorney, Quan worked as the Assistant General Counsel for the Redevelopment Agency of the City of San Jose and served as interim City Attorney for the City of Alameda. He also served as general counsel of the Organization of Chinese Americans (OCA), a national civil rights group based in Washington, He co-founded a law firm, Katz, Quan, and Kors. Quan is also an official with Zarsion, real estate developer and investment firm, partner in Brooklyn Basin development project in the Jack London Square area.Quan volunteers with the Chinese Coalition as well as Oakland Community Organizations (OCO) to address issues of housing displacement, youth civic leadership, and criminal justice for minorities.Quan has taught as a visiting Associate Professor at Peking University Law School and as an Adjunct Professor at U.C. Hastings College of Law. Quan earned his undergraduate degree from UC Berkeley and a law degree from the UC Berkeley Law School.\n\nSource: http://www.bruceforoakland.com/meet_bruce and http://www.bruceforoakland.com/news.\n\n", "committee_name": "Bruce Quan for City Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, 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..4df417f 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -12,7 +12,7 @@ "last_name": "Jackson", "ballot_item": 18, "office_election": 18, - "bio": "Chris Jackson is a social worker who works with the formerly incarcerated on parole or probation. He is a father of a kindergartener who is going into an OUSD school. \n\nSource: http://postnewsgroup.com/blog/2016/08/19/incumbents-run-four-seats-oakland-school-board/ and http://www.chrisjacksonforoakland.org/", + "bio": "Chris Jackson is a social worker who works with the formerly incarcerated on parole or probation. He is a father of a kindergartener who is going into an OUSD school. \n\nSource: http://postnewsgroup.com/blog/2016/08/19/incumbents-run-four-seats-oakland-school-board/ and http://www.chrisjacksonforoakland.org/\n", "committee_name": "Chris Jackson for School Board 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, 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..68ed73b 100644 --- a/build/_data/candidates/oakland/2016-11-08/donald-macleay.json +++ b/build/_data/candidates/oakland/2016-11-08/donald-macleay.json @@ -12,7 +12,7 @@ "last_name": "Macleay", "ballot_item": 15, "office_election": 15, - "bio": "Don Macleay owns and runs East Bay Computer Services, a computer repair business in the Temescal district. While running for office, Macleay is on leave from People United for a Better Life in Oakland, a youth advocacy organization where he serves as a board member. In 2010, Macleay ran for mayor in Oakland. \n\nSource: https://oaklandnorth.net/2012/10/29/greens-don-macleay-promotes-civilians-on-police-force-higher-minimum-wage/", + "bio": "Don Macleay owns and runs East Bay Computer Services, a computer repair business in the Temescal district. While running for office, Macleay is on leave from People United for a Better Life in Oakland, a youth advocacy organization where he serves as a board member. In 2010, Macleay ran for mayor in Oakland. \n\nSource: https://oaklandnorth.net/2012/10/29/greens-don-macleay-promotes-civilians-on-police-force-higher-minimum-wage/\n", "committee_name": "Macleay for Oakland School Board, District 1, 2016", "is_accepted_expenditure_ceiling": null, "is_incumbent": false, 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..f0513cb 100644 --- a/build/_data/candidates/oakland/2016-11-08/james-harris.json +++ b/build/_data/candidates/oakland/2016-11-08/james-harris.json @@ -13,7 +13,7 @@ "ballot_item": 18, "office_election": 18, "bio": "James Harris is the current Board of Education President, a business owner, parent, former teacher, and East Oakland native. Harris serves on the Aim High East Bay Leadership Council. He is a founding board member of Great Oakland Public Schools and a current board member at Youth Uprising. Harris’ career in education began at 16 as a teaching assistant at the Aim High Summer Program, which prepares children from low-income communities for success in high school and life. \n\nSource: http://harrisforeastoakland.com/", - "committee_name": "Re-Elect James Harris for School Board", + "committee_name": "Re-Elect James Harris for School Board ", "is_accepted_expenditure_ceiling": null, "is_incumbent": true, "occupation": "Board of Education President; owns and operates media company in San Francisco", diff --git a/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json b/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json index 6021baa..45965a4 100644 --- a/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json +++ b/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json @@ -12,7 +12,7 @@ "last_name": "Wiginton", "ballot_item": 16, "office_election": 16, - "bio": "Kharyshi Wiginton is the Youth Leadership Coordinator at McClymonds Youth and Family Center has spent a decade doing education-related work in Oakland and currently holds a position at McClymonds High School. Wiginton graduated from the California Institute of Integral Studies in 2009. \n\nSource: https://www.facebook.com/kharyshi.wiginton, https://www.linkedin.com/in/kharyshi-wiginton-6a545b8, http://museumca.org/story/kharyshi-wiginton-youth-organizing-mcclymonds-high-school, and Candidate Statement", + "bio": "Kharyshi Wiginton is the Youth Leadership Coordinator at McClymonds Youth and Family Center has spent a decade doing education-related work in Oakland and currently holds a position at McClymonds High School. Wiginton graduated from the California Institute of Integral Studies in 2009. \n\nSource: https://www.facebook.com/kharyshi.wiginton, https://www.linkedin.com/in/kharyshi-wiginton-6a545b8, http://museumca.org/story/kharyshi-wiginton-youth-organizing-mcclymonds-high-school, and Candidate Statement\n", "committee_name": "Kharyshi Wiginton for School Board 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, diff --git a/build/_data/candidates/oakland/2016-11-08/larry-reid.json b/build/_data/candidates/oakland/2016-11-08/larry-reid.json index c7f62d2..f695ff5 100644 --- a/build/_data/candidates/oakland/2016-11-08/larry-reid.json +++ b/build/_data/candidates/oakland/2016-11-08/larry-reid.json @@ -12,7 +12,7 @@ "last_name": "Reid", "ballot_item": 14, "office_election": 14, - "bio": "Larry Reid has been a Councilmember for District 7 since 1997. Reid is a member of the Public Works and Rules and Legislation Committees for the City of Oakland and is Chairman of the Community and Economic Development Committee. Reid served as Chief of Staff for former Oakland City Councilmember Aleta Cannon and former Mayor and Assemblymember Elihu Harris. He was born and raised in Cincinnati, Ohio and attended the University of Cincinnati. \n\nSource: http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/index.htm and http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/a/Profile/index.htm", + "bio": "Larry Reid has been a Councilmember for District 7 since 1997. Reid is a member of the Public Works and Rules and Legislation Committees for the City of Oakland and is Chairman of the Community and Economic Development Committee. Reid served as Chief of Staff for former Oakland City Councilmember Aleta Cannon and former Mayor and Assemblymember Elihu Harris. He was born and raised in Cincinnati, Ohio and attended the University of Cincinnati. \n\nSource: http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/index.htm and http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/a/Profile/index.htm\n", "committee_name": "Re-Elect Larry Reid for Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": true, diff --git a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json index b1a07c7..589a5b0 100644 --- a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json +++ b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json @@ -12,7 +12,7 @@ "last_name": "Gallo", "ballot_item": 13, "office_election": 13, - "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website", + "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website\n", "committee_name": "ReElect Noel Gallo for Oakland City Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": true, diff --git a/build/_data/candidates/oakland/2016-11-08/noni-session.json b/build/_data/candidates/oakland/2016-11-08/noni-session.json index 473d424..e9d1be9 100644 --- a/build/_data/candidates/oakland/2016-11-08/noni-session.json +++ b/build/_data/candidates/oakland/2016-11-08/noni-session.json @@ -3,7 +3,7 @@ "name": "Noni Session", "photo_url": "https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Noni-Session2.png", "website_url": "http://www.nonifordistrict3.com/", - "twitter_url": "NoniSession", + "twitter_url": "NoniSession\n", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json b/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json index c91afa5..edaa105 100644 --- a/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json +++ b/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json @@ -12,7 +12,7 @@ "last_name": "Gonzales", "ballot_item": 13, "office_election": 13, - "bio": "Viola Gonzales was the Chief Executive Officer of AnewAmerica Community Corporation, a non-profit that helps immigrants and refugees start small and micro-businesses. Gonzales has been Executive Director for a non-profit residential program for developmentally disabled kids based in Oakland for the past eight years. Her volunteer service has included corporate advisory, nonprofit and civic boards. In 2002, Gonzales was appointed to the Oakland Board of Education by then-Mayor Jerry Brown. Prior to this appointment, she served on the Oakland Planning Commission. \n\nSource: http://www.anewamerica.org/index.php/news/events/173-changes-in-leadership-at-anewamerica , https://www.linkedin.com/in/violagonzales , http://boedocdepot.ousd.k12.ca.us/boe-webextender/bextest/ViolaGonzales.asp , and candidate survey", + "bio": "Viola Gonzales was the Chief Executive Officer of AnewAmerica Community Corporation, a non-profit that helps immigrants and refugees start small and micro-businesses. Gonzales has been Executive Director for a non-profit residential program for developmentally disabled kids based in Oakland for the past eight years. Her volunteer service has included corporate advisory, nonprofit and civic boards. In 2002, Gonzales was appointed to the Oakland Board of Education by then-Mayor Jerry Brown. Prior to this appointment, she served on the Oakland Planning Commission. \n\nSource: http://www.anewamerica.org/index.php/news/events/173-changes-in-leadership-at-anewamerica , https://www.linkedin.com/in/violagonzales , http://boedocdepot.ousd.k12.ca.us/boe-webextender/bextest/ViolaGonzales.asp , and candidate survey\n\n", "committee_name": "Viola Gonzales for City Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, diff --git a/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json b/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json index 6ffe2eb..c95ec86 100644 --- a/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json +++ b/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json @@ -3,7 +3,7 @@ "name": "Jesse A.J. Smith", "photo_url": "Jesse-Smith.png", "website_url": "https://oaksmith2018.com/", - "twitter_url": "OakSmith2018", + "twitter_url": "OakSmith2018 ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json b/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json index 1e3fece..7f7f219 100644 --- a/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json +++ b/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json @@ -3,7 +3,7 @@ "name": "Joseph Tanios", "photo_url": "Joseph-Tanios.png", "website_url": "https://www.joetanios.com/", - "twitter_url": "taniosfor", + "twitter_url": "taniosfor ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/loren-taylor.json b/build/_data/candidates/oakland/2018-11-06/loren-taylor.json index 3a131d3..5bc0abd 100644 --- a/build/_data/candidates/oakland/2018-11-06/loren-taylor.json +++ b/build/_data/candidates/oakland/2018-11-06/loren-taylor.json @@ -3,7 +3,7 @@ "name": "Loren Taylor", "photo_url": "Loren_Taylor.png", "website_url": "https://www.lorentaylor.org/", - "twitter_url": "lorenmtaylor", + "twitter_url": "lorenmtaylor ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json b/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json index e06339b..8f898b3 100644 --- a/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json +++ b/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json @@ -3,7 +3,7 @@ "name": "Natasha Middleton", "photo_url": "Natasha-Middleton.png", "website_url": "https://www.natashaforoakland.com/", - "twitter_url": "MiddletonNat", + "twitter_url": "MiddletonNat ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json b/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json index 4a98065..08c1ffd 100644 --- a/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json +++ b/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json @@ -3,7 +3,7 @@ "name": "Nayeli Maxson", "photo_url": "Nayeli-Maxson.png", "website_url": "https://nayeliforoakland.com/", - "twitter_url": "nayelimax", + "twitter_url": "nayelimax ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json b/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json index 2f3016d..47d3385 100644 --- a/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json @@ -3,7 +3,7 @@ "name": "Shanthi Gonzales", "photo_url": "Shanthi-Gonzales.png", "website_url": "http://gonzalesforschools.nationbuilder.com/", - "twitter_url": "ShanthiGonzales", + "twitter_url": "ShanthiGonzales ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json index 2d1876d..a2a9617 100644 --- a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json +++ b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json @@ -3,7 +3,7 @@ "name": "Sheng Thao", "photo_url": "Sheng-Thao.png", "website_url": "https://www.shengforoakland.com/", - "twitter_url": "sheng_tha0", + "twitter_url": "sheng_tha0 ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2020-11-03/carroll-fife.json b/build/_data/candidates/oakland/2020-11-03/carroll-fife.json index 93f9e94..a6b605a 100644 --- a/build/_data/candidates/oakland/2020-11-03/carroll-fife.json +++ b/build/_data/candidates/oakland/2020-11-03/carroll-fife.json @@ -31,7 +31,7 @@ "Total": 126668.0, "Cand_ID": 1427585, "Filer_ID": "1428015", - "Filer_NamL": "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" + "Filer_NamL": "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\n" }, { "Total": 6329.91, diff --git a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json index d00d700..10025c2 100644 --- a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json +++ b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json @@ -4,7 +4,7 @@ "photo_url": "derreck_johnson_sub.jpg", "website_url": "https://www.johnsonforoakland.com/", "twitter_url": "derreckbjohnson", - "facebook_url": "https://www.facebook.com/derreckbjohnson/", + "facebook_url": "\nhttps://www.facebook.com/derreckbjohnson/", "instagram_url": "derreckbjohnson", "map_url": null, "votersedge_url": "https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/contests/contest/21265/candidate/151385?cty=ca%2falm", @@ -82,7 +82,7 @@ "Total": 22991.74, "Cand_ID": 1426780, "Filer_ID": "1428015", - "Filer_NamL": "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" + "Filer_NamL": "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\n" } ] }, diff --git a/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json b/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json index 7afe862..6351e0f 100644 --- a/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json +++ b/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json @@ -77,7 +77,7 @@ "Total": 41640.3, "Cand_ID": 1421347, "Filer_ID": "1428015", - "Filer_NamL": "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" + "Filer_NamL": "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\n" } ] }, diff --git a/build/_data/candidates/oakland/2020-11-03/noel-gallo.json b/build/_data/candidates/oakland/2020-11-03/noel-gallo.json index ffdec24..2ea553f 100644 --- a/build/_data/candidates/oakland/2020-11-03/noel-gallo.json +++ b/build/_data/candidates/oakland/2020-11-03/noel-gallo.json @@ -12,7 +12,7 @@ "last_name": "Gallo", "ballot_item": 13, "office_election": 13, - "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website", + "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website\n", "committee_name": "Re-Elect Noel Gallo for Oakland City Council 2020", "is_accepted_expenditure_ceiling": false, "is_incumbent": true, diff --git a/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json b/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json index 862580b..edd8732 100644 --- a/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json @@ -31,7 +31,7 @@ "Total": 224049.5, "Cand_ID": 1419466, "Filer_ID": "1428015", - "Filer_NamL": "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" + "Filer_NamL": "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\n" }, { "Total": 2805.61, diff --git a/build/_data/candidates/oakland/2020-11-03/vancedric-williams.json b/build/_data/candidates/oakland/2020-11-03/vancedric-williams.json index 8c1d27a..ee7a928 100644 --- a/build/_data/candidates/oakland/2020-11-03/vancedric-williams.json +++ b/build/_data/candidates/oakland/2020-11-03/vancedric-williams.json @@ -13,7 +13,7 @@ "ballot_item": 16, "office_election": 16, "bio": null, - "committee_name": "Van Cedric Williams for Oakland School Board Seat 3 2020", + "committee_name": "Van Cedric Williams for Oakland School Board Seat 3 2020 ", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, "occupation": "Teacher/Treasurer", diff --git a/build/_data/candidates/oakland/2022-11-08/derreck-johnson.json b/build/_data/candidates/oakland/2022-11-08/derreck-johnson.json index 6679b6f..a258c82 100644 --- a/build/_data/candidates/oakland/2022-11-08/derreck-johnson.json +++ b/build/_data/candidates/oakland/2022-11-08/derreck-johnson.json @@ -13,7 +13,7 @@ "ballot_item": 1, "office_election": 1, "bio": null, - "committee_name": "Johnson Oakland Mayor 2022", + "committee_name": "Johnson Oakland Mayor 2022\n", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, "occupation": "Not qualified for ballot", diff --git a/build/_data/candidates/oakland/2022-11-08/derrick-soo-.json b/build/_data/candidates/oakland/2022-11-08/derrick-soo-.json new file mode 100644 index 0000000..96cb093 --- /dev/null +++ b/build/_data/candidates/oakland/2022-11-08/derrick-soo-.json @@ -0,0 +1,53 @@ +{ + "id": 23, + "name": "Derrick Soo\n", + "photo_url": "derrick-soo.jpg", + "website_url": null, + "twitter_url": "DerrickSoo4Oak", + "facebook_url": "https://www.facebook.com/Derrick-Soo-for-City-of-Oakland-Mayor-2022-975183006011778/", + "instagram_url": null, + "map_url": null, + "votersedge_url": "https://votersedge.org/ca/en/ballot/election/104-c6a989/address/null/zip/94611/contests/contest/24183?&cty=ca%2falm&date=2022-11-08", + "first_name": "Derrick", + "last_name": "Soo\n", + "ballot_item": 1, + "office_election": 1, + "bio": null, + "committee_name": "No committee registered", + "is_accepted_expenditure_ceiling": true, + "is_incumbent": false, + "occupation": "Not qualified for ballot", + "party_affiliation": null, + "is_winner": null, + "filer_id": null, + "supporting_money": { + "contributions_received": 0.0, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null, + "total_supporting_independent": 0.0, + "support_list": [ + + ], + "contributions_by_type": { + }, + "contributions_by_origin": { + }, + "total_small_contributions": null, + "expenditures_by_type": { + }, + "supporting_by_type": { + } + }, + "opposing_money": { + "opposing_expenditures": 0.0, + "opposing_by_type": { + }, + "opposition_list": [ + + ] + }, + "total_contributions": 0.0, + "total_expenditures": null, + "total_loans_received": null +} diff --git a/build/_data/candidates/oakland/2022-11-08/gregory-hodge-.json b/build/_data/candidates/oakland/2022-11-08/gregory-hodge-.json new file mode 100644 index 0000000..cdeff09 --- /dev/null +++ b/build/_data/candidates/oakland/2022-11-08/gregory-hodge-.json @@ -0,0 +1,69 @@ +{ + "id": 26, + "name": "Gregory Hodge\n", + "photo_url": "Gregory-Hodge.jpg", + "website_url": "https://www.hodgeforoakland.com/", + "twitter_url": "hodge4oakland22", + "facebook_url": "https://www.facebook.com/hodgeforoakland2022/", + "instagram_url": "hodgeforoakland", + "map_url": "https://data.oaklandca.gov/campaign_finance/contribution?electionYear=2022&candidates=1442227&since=2020-02-22&until=2022-06-30", + "votersedge_url": "https://votersedge.org/ca/en/ballot/election/104-c6a989/address/null/zip/94611/contests/contest/24183/candidate/158498?&cty=ca%2falm&date=2022-11-08", + "first_name": "Gregory", + "last_name": "Hodge\n", + "ballot_item": 1, + "office_election": 1, + "bio": null, + "committee_name": "Hodge for Oakland Mayor 2022", + "is_accepted_expenditure_ceiling": true, + "is_incumbent": false, + "occupation": "Non-Profit Executive", + "party_affiliation": null, + "is_winner": null, + "filer_id": 1442227, + "supporting_money": { + "contributions_received": 174993.15, + "total_contributions": 174993.15, + "total_expenditures": 174993.15, + "total_loans_received": 0.0, + "total_supporting_independent": 0.0, + "support_list": [ + + ], + "contributions_by_type": { + "Committee": 2050.0, + "Individual": 163861.0, + "Unitemized": 7083.0, + "Other (includes Businesses)": 1999.15 + }, + "contributions_by_origin": { + "Out of State": 38345.0, + "Within Oakland": 75981.0, + "Within California": 53584.15 + }, + "total_small_contributions": 12333.0, + "expenditures_by_type": { + "Not Stated": 26372.78, + "Office Expenses": 5676.59, + "Campaign Consultants": 81646.09, + "Meetings and Appearances": 2500.0, + "Campaign Paraphernalia/Misc.": 9001.44, + "Candidate Filing/Ballot Fees": 1000.0, + "Campaign Literature and Mailings": 6009.34, + "Professional Services (Legal, Accounting)": 28353.0, + "Information Technology Costs (Internet, E-mail)": 13785.17 + }, + "supporting_by_type": { + } + }, + "opposing_money": { + "opposing_expenditures": 0.0, + "opposing_by_type": { + }, + "opposition_list": [ + + ] + }, + "total_contributions": 174993.15, + "total_expenditures": 174993.15, + "total_loans_received": 0.0 +} diff --git a/build/_data/candidates/oakland/2022-11-08/treva-d-reid.json b/build/_data/candidates/oakland/2022-11-08/treva-d-reid.json index 9f0c8e1..27c4107 100644 --- a/build/_data/candidates/oakland/2022-11-08/treva-d-reid.json +++ b/build/_data/candidates/oakland/2022-11-08/treva-d-reid.json @@ -13,7 +13,7 @@ "ballot_item": 1, "office_election": 1, "bio": null, - "committee_name": "Treva Reid for Oakland Mayor 2022", + "committee_name": "Treva Reid for Oakland Mayor 2022\n", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, "occupation": "Councilmember/Senior Caregiver", diff --git a/build/_data/candidates/oakland/2024-11-05/merika-goolsby.json b/build/_data/candidates/oakland/2024-11-05/merika-goolsby.json index 9d7d264..f5d3a39 100644 --- a/build/_data/candidates/oakland/2024-11-05/merika-goolsby.json +++ b/build/_data/candidates/oakland/2024-11-05/merika-goolsby.json @@ -13,7 +13,7 @@ "ballot_item": 14, "office_election": 14, "bio": null, - "committee_name": "No committee registered", + "committee_name": " No committee registered", "is_accepted_expenditure_ceiling": null, "is_incumbent": false, "occupation": null, diff --git a/build/_data/committees/1410941.json b/build/_data/committees/1410941.json index 178a733..fcb85cd 100644 --- a/build/_data/committees/1410941.json +++ b/build/_data/committees/1410941.json @@ -153,7 +153,7 @@ "Tran_Date": "2018-09-24", "Tran_NamF": null, "Tran_NamL": "Morse Management, Inc.", - "Tran_Zip4": "10022" + "Tran_Zip4": "94661" }, { "Filer_ID": "1410941", @@ -164,7 +164,7 @@ "Tran_Date": "2018-09-24", "Tran_NamF": null, "Tran_NamL": "Morse Management, Inc.", - "Tran_Zip4": "94661" + "Tran_Zip4": "10022" }, { "Filer_ID": "1410941", @@ -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/elections/oakland/2014-11-04.json b/build/_data/elections/oakland/2014-11-04.json index 66749d2..92af51f 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..140316d 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 } @@ -57,7 +57,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "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 2f8cb0e..3465683 100644 --- a/build/_data/elections/oakland/2018-11-06.json +++ b/build/_data/elections/oakland/2018-11-06.json @@ -9,7 +9,7 @@ "Committee": 954896.17, "Individual": 2649041.44, "Unitemized": 157811.78, - "Self Funding": 88464.97000000002, + "Self Funding": 88464.97, "Other (includes Businesses)": 2739121.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 752d2e4..49df590 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" }, { @@ -60,14 +60,14 @@ ], "largest_independent_expenditures": [ { - "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", + "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\n", "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..d6f2413 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": { @@ -12,7 +12,7 @@ }, "most_expensive_races": [ { - "slug": "library-services-retention-and-enhancement-act", + "slug": "library-services-retention-and-enhancement-act-", "type": "referendum", "title": "Measure C", "amount": 104075.02 diff --git a/build/_data/elections/oakland/2022-11-08.json b/build/_data/elections/oakland/2022-11-08.json index 597fbd3..d27ae57 100644 --- a/build/_data/elections/oakland/2022-11-08.json +++ b/build/_data/elections/oakland/2022-11-08.json @@ -2,15 +2,15 @@ "total_contributions": 6476065.89, "total_contributions_by_source": { "Out of State": 521147.35, - "Within Oakland": 2632398.180000001, + "Within Oakland": 2632398.1799999997, "Within California": 3006531.1199999996 }, "contributions_by_type": { "PTY": 15900.0, "Committee": 995101.14, - "Individual": 2507910.870000002, + "Individual": 2509320.869999998, "Unitemized": 135828.3, - "Self Funding": 2711.0, + "Self Funding": 1301.0, "Other (includes Businesses)": 2638453.6399999997 }, "most_expensive_races": [ @@ -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": "John Protopappas", "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..0389cae 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": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "UA Local 342", + "name": "Laborers Local 304", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "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 7c51554..adbcd09 100644 --- a/build/_data/elections/oakland/2024-11-05.json +++ b/build/_data/elections/oakland/2024-11-05.json @@ -49,7 +49,7 @@ ], "top_contributors_for_offices": [ { - "name": "Courtney Dykstra", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 @@ -61,7 +61,7 @@ "total_contributions": 1800.0 }, { - "name": "Weylin White", + "name": "Brooke Levin", "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/increase-appropriations-limit-.json b/build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit-.json new file mode 100644 index 0000000..4674fee --- /dev/null +++ b/build/_data/referendum_opposing/oakland/2020-03-03/increase-appropriations-limit-.json @@ -0,0 +1,21 @@ +{ + "id": 3, + "contest_type": "Referendum", + "name": "Increase Appropriations Limit ", + "title": "Increase Appropriations Limit ", + "summary": "This measure would authorize the City of Oakland to continue spending the proceeds of voter-approved City taxes, including Measure M (Emergency Medical Services), Measure N (Paramedic Services), Measure Q (Library Services), Measure C (Hotel Tax), Measure Z (Public Safety and Violence \nPrevention Services), Measure HH (Sugar Sweetened Beverages), Measure D (Public Libraries \nPreservation), Measure W (Vacant Properties), as well as other taxes received by the City such \nas, Property Tax, State Tax, Business License Tax, Utility Consumption Tax, Real Estate \nTransfer Tax, Transient Occupancy Tax, and the Parking Tax.\n", + "number": "S", + "voters_edge_url": "https://votersedge.org/ca/en/ballot/election/83-f810b9/address/null/zip/94611/measures/measure/3845?&cty=ca%2falm&date=2020-03-03", + "contributions_by_region": [ + + ], + "contributions_by_type": [ + + ], + "opposing_organizations": [ + + ], + "total_contributions": [ + + ] +} 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..27332c3 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)", @@ -49,8 +49,8 @@ }, { "id": "1424633", - "name": "Oakland Neighbors United, No On Measure Q", ```
mikeubell commented 6 months ago
Build diff from Commit 8fb15e8bbb60323dffa811ce9fde230ba6b08550: ```diff diff --git a/build/_candidates/oakland/2016-11-08/noni-session.md b/build/_candidates/oakland/2016-11-08/noni-session.md index 59ea0ae..34ba74f 100644 --- a/build/_candidates/oakland/2016-11-08/noni-session.md +++ b/build/_candidates/oakland/2016-11-08/noni-session.md @@ -8,7 +8,9 @@ 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 +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/2018-11-06/jesse-a-j-smith.md b/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md index 90c9eda..163326a 100644 --- a/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md +++ b/build/_candidates/oakland/2018-11-06/jesse-a-j-smith.md @@ -6,7 +6,7 @@ is_incumbent: false name: Jesse A.J. Smith occupation: Writer photo_url: Jesse-Smith.png -twitter_url: OakSmith2018 +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-tanios.md b/build/_candidates/oakland/2018-11-06/joseph-tanios.md index e689918..0169fcf 100644 --- a/build/_candidates/oakland/2018-11-06/joseph-tanios.md +++ b/build/_candidates/oakland/2018-11-06/joseph-tanios.md @@ -8,7 +8,7 @@ name: Joseph Tanios occupation: Construction Inspection Supervisor photo_url: Joseph-Tanios.png public_funding_received: "$7,463" -twitter_url: taniosfor +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/loren-taylor.md b/build/_candidates/oakland/2018-11-06/loren-taylor.md index 72fa117..148c273 100644 --- a/build/_candidates/oakland/2018-11-06/loren-taylor.md +++ b/build/_candidates/oakland/2018-11-06/loren-taylor.md @@ -8,7 +8,7 @@ name: Loren Taylor occupation: Entrepreneur/Non-Profit Boardmember photo_url: Loren_Taylor.png public_funding_received: "$18,345" -twitter_url: lorenmtaylor +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/natasha-middleton.md b/build/_candidates/oakland/2018-11-06/natasha-middleton.md index c0be362..cf9bb37 100644 --- a/build/_candidates/oakland/2018-11-06/natasha-middleton.md +++ b/build/_candidates/oakland/2018-11-06/natasha-middleton.md @@ -8,7 +8,7 @@ name: Natasha Middleton occupation: Management Analyst photo_url: Natasha-Middleton.png public_funding_received: "$18,345" -twitter_url: MiddletonNat +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 index b4ca769..d46dd7e 100644 --- a/build/_candidates/oakland/2018-11-06/nayeli-maxson.md +++ b/build/_candidates/oakland/2018-11-06/nayeli-maxson.md @@ -8,7 +8,7 @@ name: Nayeli Maxson occupation: Executive Director/Attorney photo_url: Nayeli-Maxson.png public_funding_received: "$18,345" -twitter_url: nayelimax +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/shanthi-gonzales.md b/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md index 256278e..716b836 100644 --- a/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md +++ b/build/_candidates/oakland/2018-11-06/shanthi-gonzales.md @@ -7,7 +7,7 @@ is_incumbent: true name: Shanthi Gonzales occupation: School Board Director photo_url: Shanthi-Gonzales.png -twitter_url: ShanthiGonzales +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 index 71ce4a4..f53e736 100644 --- a/build/_candidates/oakland/2018-11-06/sheng-thao.md +++ b/build/_candidates/oakland/2018-11-06/sheng-thao.md @@ -8,7 +8,7 @@ name: Sheng Thao occupation: Chief of Staff photo_url: Sheng-Thao.png public_funding_received: "$18,345" -twitter_url: sheng_tha0 +twitter_url: 'sheng_tha0 ' votersedge_url: https://votersedge.org/ca/en/ballot/election/area/73/contests/contest/17340/candidate/139762?&county=alameda%20county&election_authority_id=1 website_url: https://www.shengforoakland.com/ --- diff --git a/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md b/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md index 6221469..99c3478 100644 --- a/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md +++ b/build/_candidates/oakland/2020-11-03/derreck-b-johnson.md @@ -10,6 +10,8 @@ photo_url: derreck_johnson_sub.jpg twitter_url: derreckbjohnson votersedge_url: https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/contests/contest/21265/candidate/151385?cty=ca%2falm website_url: https://www.johnsonforoakland.com/ -facebook_url: https://www.facebook.com/derreckbjohnson/ +facebook_url: |2- + + https://www.facebook.com/derreckbjohnson/ instagram_url: derreckbjohnson --- 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 27b835a..8ebcb8e 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,7 @@ "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" } ], 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 115bf84..ddb9ecf 100644 --- a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json +++ b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json @@ -38,7 +38,7 @@ "Total": 10446.26, "Cand_ID": 1357609, "Filer_ID": "983545", - "Filer_NamL": "OAK PAC, Oakland Metropolitan Chamber of Commerce", + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", "election_name": "oakland-2014" } ], 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 9885087..ccf9e7f 100644 --- a/build/_data/candidates/oakland/2016-11-08/bruce-quan.json +++ b/build/_data/candidates/oakland/2016-11-08/bruce-quan.json @@ -12,7 +12,7 @@ "last_name": "Quan", "ballot_item": 10, "office_election": 10, - "bio": "Bruce Quan is a retired attorney, Quan worked as the Assistant General Counsel for the Redevelopment Agency of the City of San Jose and served as interim City Attorney for the City of Alameda. He also served as general counsel of the Organization of Chinese Americans (OCA), a national civil rights group based in Washington, He co-founded a law firm, Katz, Quan, and Kors. Quan is also an official with Zarsion, real estate developer and investment firm, partner in Brooklyn Basin development project in the Jack London Square area.Quan volunteers with the Chinese Coalition as well as Oakland Community Organizations (OCO) to address issues of housing displacement, youth civic leadership, and criminal justice for minorities.Quan has taught as a visiting Associate Professor at Peking University Law School and as an Adjunct Professor at U.C. Hastings College of Law. Quan earned his undergraduate degree from UC Berkeley and a law degree from the UC Berkeley Law School.\n\nSource: http://www.bruceforoakland.com/meet_bruce and http://www.bruceforoakland.com/news.", + "bio": "Bruce Quan is a retired attorney, Quan worked as the Assistant General Counsel for the Redevelopment Agency of the City of San Jose and served as interim City Attorney for the City of Alameda. He also served as general counsel of the Organization of Chinese Americans (OCA), a national civil rights group based in Washington, He co-founded a law firm, Katz, Quan, and Kors. Quan is also an official with Zarsion, real estate developer and investment firm, partner in Brooklyn Basin development project in the Jack London Square area.Quan volunteers with the Chinese Coalition as well as Oakland Community Organizations (OCO) to address issues of housing displacement, youth civic leadership, and criminal justice for minorities.Quan has taught as a visiting Associate Professor at Peking University Law School and as an Adjunct Professor at U.C. Hastings College of Law. Quan earned his undergraduate degree from UC Berkeley and a law degree from the UC Berkeley Law School.\n\nSource: http://www.bruceforoakland.com/meet_bruce and http://www.bruceforoakland.com/news.\n\n", "committee_name": "Bruce Quan for City Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, 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 9870061..becda52 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -12,7 +12,7 @@ "last_name": "Jackson", "ballot_item": 18, "office_election": 18, - "bio": "Chris Jackson is a social worker who works with the formerly incarcerated on parole or probation. He is a father of a kindergartener who is going into an OUSD school. \n\nSource: http://postnewsgroup.com/blog/2016/08/19/incumbents-run-four-seats-oakland-school-board/ and http://www.chrisjacksonforoakland.org/", + "bio": "Chris Jackson is a social worker who works with the formerly incarcerated on parole or probation. He is a father of a kindergartener who is going into an OUSD school. \n\nSource: http://postnewsgroup.com/blog/2016/08/19/incumbents-run-four-seats-oakland-school-board/ and http://www.chrisjacksonforoakland.org/\n", "committee_name": "Chris Jackson for School Board 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, 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 06dac72..17f4471 100644 --- a/build/_data/candidates/oakland/2016-11-08/donald-macleay.json +++ b/build/_data/candidates/oakland/2016-11-08/donald-macleay.json @@ -12,7 +12,7 @@ "last_name": "Macleay", "ballot_item": 15, "office_election": 15, - "bio": "Don Macleay owns and runs East Bay Computer Services, a computer repair business in the Temescal district. While running for office, Macleay is on leave from People United for a Better Life in Oakland, a youth advocacy organization where he serves as a board member. In 2010, Macleay ran for mayor in Oakland. \n\nSource: https://oaklandnorth.net/2012/10/29/greens-don-macleay-promotes-civilians-on-police-force-higher-minimum-wage/", + "bio": "Don Macleay owns and runs East Bay Computer Services, a computer repair business in the Temescal district. While running for office, Macleay is on leave from People United for a Better Life in Oakland, a youth advocacy organization where he serves as a board member. In 2010, Macleay ran for mayor in Oakland. \n\nSource: https://oaklandnorth.net/2012/10/29/greens-don-macleay-promotes-civilians-on-police-force-higher-minimum-wage/\n", "committee_name": "Macleay for Oakland School Board, District 1, 2016", "is_accepted_expenditure_ceiling": null, "is_incumbent": false, diff --git a/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json b/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json index c2c9c6b..356fcf7 100644 --- a/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json +++ b/build/_data/candidates/oakland/2016-11-08/kharyshi-wiginton.json @@ -12,7 +12,7 @@ "last_name": "Wiginton", "ballot_item": 16, "office_election": 16, - "bio": "Kharyshi Wiginton is the Youth Leadership Coordinator at McClymonds Youth and Family Center has spent a decade doing education-related work in Oakland and currently holds a position at McClymonds High School. Wiginton graduated from the California Institute of Integral Studies in 2009. \n\nSource: https://www.facebook.com/kharyshi.wiginton, https://www.linkedin.com/in/kharyshi-wiginton-6a545b8, http://museumca.org/story/kharyshi-wiginton-youth-organizing-mcclymonds-high-school, and Candidate Statement", + "bio": "Kharyshi Wiginton is the Youth Leadership Coordinator at McClymonds Youth and Family Center has spent a decade doing education-related work in Oakland and currently holds a position at McClymonds High School. Wiginton graduated from the California Institute of Integral Studies in 2009. \n\nSource: https://www.facebook.com/kharyshi.wiginton, https://www.linkedin.com/in/kharyshi-wiginton-6a545b8, http://museumca.org/story/kharyshi-wiginton-youth-organizing-mcclymonds-high-school, and Candidate Statement\n", "committee_name": "Kharyshi Wiginton for School Board 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, diff --git a/build/_data/candidates/oakland/2016-11-08/larry-reid.json b/build/_data/candidates/oakland/2016-11-08/larry-reid.json index 9c3b5ff..90af325 100644 --- a/build/_data/candidates/oakland/2016-11-08/larry-reid.json +++ b/build/_data/candidates/oakland/2016-11-08/larry-reid.json @@ -12,7 +12,7 @@ "last_name": "Reid", "ballot_item": 14, "office_election": 14, - "bio": "Larry Reid has been a Councilmember for District 7 since 1997. Reid is a member of the Public Works and Rules and Legislation Committees for the City of Oakland and is Chairman of the Community and Economic Development Committee. Reid served as Chief of Staff for former Oakland City Councilmember Aleta Cannon and former Mayor and Assemblymember Elihu Harris. He was born and raised in Cincinnati, Ohio and attended the University of Cincinnati. \n\nSource: http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/index.htm and http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/a/Profile/index.htm", + "bio": "Larry Reid has been a Councilmember for District 7 since 1997. Reid is a member of the Public Works and Rules and Legislation Committees for the City of Oakland and is Chairman of the Community and Economic Development Committee. Reid served as Chief of Staff for former Oakland City Councilmember Aleta Cannon and former Mayor and Assemblymember Elihu Harris. He was born and raised in Cincinnati, Ohio and attended the University of Cincinnati. \n\nSource: http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/index.htm and http://www2.oaklandnet.com/government/o/CityCouncil/o/District7/a/Profile/index.htm\n", "committee_name": "Re-Elect Larry Reid for Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": true, diff --git a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json index e32a6db..c687fcd 100644 --- a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json +++ b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json @@ -12,7 +12,7 @@ "last_name": "Gallo", "ballot_item": 13, "office_election": 13, - "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website", + "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website\n", "committee_name": "ReElect Noel Gallo for Oakland City Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": true, diff --git a/build/_data/candidates/oakland/2016-11-08/noni-session.json b/build/_data/candidates/oakland/2016-11-08/noni-session.json index 11798fa..513ed69 100644 --- a/build/_data/candidates/oakland/2016-11-08/noni-session.json +++ b/build/_data/candidates/oakland/2016-11-08/noni-session.json @@ -3,7 +3,7 @@ "name": "Noni Session", "photo_url": "https://s3-us-west-1.amazonaws.com/odca-candidate-photos/Noni-Session2.png", "website_url": "http://www.nonifordistrict3.com/", - "twitter_url": "NoniSession", + "twitter_url": "NoniSession\n", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json b/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json index d50ccd1..cb99049 100644 --- a/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json +++ b/build/_data/candidates/oakland/2016-11-08/viola-gonzales.json @@ -12,7 +12,7 @@ "last_name": "Gonzales", "ballot_item": 13, "office_election": 13, - "bio": "Viola Gonzales was the Chief Executive Officer of AnewAmerica Community Corporation, a non-profit that helps immigrants and refugees start small and micro-businesses. Gonzales has been Executive Director for a non-profit residential program for developmentally disabled kids based in Oakland for the past eight years. Her volunteer service has included corporate advisory, nonprofit and civic boards. In 2002, Gonzales was appointed to the Oakland Board of Education by then-Mayor Jerry Brown. Prior to this appointment, she served on the Oakland Planning Commission. \n\nSource: http://www.anewamerica.org/index.php/news/events/173-changes-in-leadership-at-anewamerica , https://www.linkedin.com/in/violagonzales , http://boedocdepot.ousd.k12.ca.us/boe-webextender/bextest/ViolaGonzales.asp , and candidate survey", + "bio": "Viola Gonzales was the Chief Executive Officer of AnewAmerica Community Corporation, a non-profit that helps immigrants and refugees start small and micro-businesses. Gonzales has been Executive Director for a non-profit residential program for developmentally disabled kids based in Oakland for the past eight years. Her volunteer service has included corporate advisory, nonprofit and civic boards. In 2002, Gonzales was appointed to the Oakland Board of Education by then-Mayor Jerry Brown. Prior to this appointment, she served on the Oakland Planning Commission. \n\nSource: http://www.anewamerica.org/index.php/news/events/173-changes-in-leadership-at-anewamerica , https://www.linkedin.com/in/violagonzales , http://boedocdepot.ousd.k12.ca.us/boe-webextender/bextest/ViolaGonzales.asp , and candidate survey\n\n", "committee_name": "Viola Gonzales for City Council 2016", "is_accepted_expenditure_ceiling": true, "is_incumbent": false, diff --git a/build/_data/candidates/oakland/2018-11-06/abel-guillen.json b/build/_data/candidates/oakland/2018-11-06/abel-guillen.json index 32abf44..42c7e27 100644 --- a/build/_data/candidates/oakland/2018-11-06/abel-guillen.json +++ b/build/_data/candidates/oakland/2018-11-06/abel-guillen.json @@ -74,7 +74,7 @@ "Total": 4807.0, "Cand_ID": 1395580, "Filer_ID": "1390351", - "Filer_NamL": "East Bay Working Families", + "Filer_NamL": "East Bay Working Families, a coalition of unions and community groups", "election_name": "oakland-2018" } ] diff --git a/build/_data/candidates/oakland/2018-11-06/desley-brooks.json b/build/_data/candidates/oakland/2018-11-06/desley-brooks.json index add63c8..1144f51 100644 --- a/build/_data/candidates/oakland/2018-11-06/desley-brooks.json +++ b/build/_data/candidates/oakland/2018-11-06/desley-brooks.json @@ -31,7 +31,7 @@ "Total": 22999.0, "Cand_ID": 1236617, "Filer_ID": "1390351", - "Filer_NamL": "East Bay Working Families", + "Filer_NamL": "East Bay Working Families, a coalition of unions and community groups", "election_name": "oakland-2018" }, { diff --git a/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json b/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json index f5ddfd6..519ec9e 100644 --- a/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json +++ b/build/_data/candidates/oakland/2018-11-06/jesse-a-j-smith.json @@ -3,7 +3,7 @@ "name": "Jesse A.J. Smith", "photo_url": "Jesse-Smith.png", "website_url": "https://oaksmith2018.com/", - "twitter_url": "OakSmith2018", + "twitter_url": "OakSmith2018 ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json b/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json index ce145cf..6178697 100644 --- a/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json +++ b/build/_data/candidates/oakland/2018-11-06/joseph-tanios.json @@ -3,7 +3,7 @@ "name": "Joseph Tanios", "photo_url": "Joseph-Tanios.png", "website_url": "https://www.joetanios.com/", - "twitter_url": "taniosfor", + "twitter_url": "taniosfor ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/loren-taylor.json b/build/_data/candidates/oakland/2018-11-06/loren-taylor.json index 79cda45..75b0bdd 100644 --- a/build/_data/candidates/oakland/2018-11-06/loren-taylor.json +++ b/build/_data/candidates/oakland/2018-11-06/loren-taylor.json @@ -3,7 +3,7 @@ "name": "Loren Taylor", "photo_url": "Loren_Taylor.png", "website_url": "https://www.lorentaylor.org/", - "twitter_url": "lorenmtaylor", + "twitter_url": "lorenmtaylor ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json b/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json index 94192a6..5b3c562 100644 --- a/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json +++ b/build/_data/candidates/oakland/2018-11-06/natasha-middleton.json @@ -3,7 +3,7 @@ "name": "Natasha Middleton", "photo_url": "Natasha-Middleton.png", "website_url": "https://www.natashaforoakland.com/", - "twitter_url": "MiddletonNat", + "twitter_url": "MiddletonNat ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json b/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json index 80e57d4..1d72af1 100644 --- a/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json +++ b/build/_data/candidates/oakland/2018-11-06/nayeli-maxson.json @@ -3,7 +3,7 @@ "name": "Nayeli Maxson", "photo_url": "Nayeli-Maxson.png", "website_url": "https://nayeliforoakland.com/", - "twitter_url": "nayelimax", + "twitter_url": "nayelimax ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json b/build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json index caafb6a..f911433 100644 --- a/build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json +++ b/build/_data/candidates/oakland/2018-11-06/nikki-fortunato-bas.json @@ -31,7 +31,7 @@ "Total": 113018.0, "Cand_ID": 1400325, "Filer_ID": "1390351", - "Filer_NamL": "East Bay Working Families", + "Filer_NamL": "East Bay Working Families, a coalition of unions and community groups", "election_name": "oakland-2018" } ], diff --git a/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json b/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json index 880d79b..2dd7d86 100644 --- a/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2018-11-06/shanthi-gonzales.json @@ -3,7 +3,7 @@ "name": "Shanthi Gonzales", "photo_url": "Shanthi-Gonzales.png", "website_url": "http://gonzalesforschools.nationbuilder.com/", - "twitter_url": "ShanthiGonzales", + "twitter_url": "ShanthiGonzales ", "facebook_url": null, "instagram_url": null, "map_url": null, diff --git a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json index 4ca1f50..594a7fb 100644 --- a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json +++ b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json @@ -3,7 +3,7 @@ "name": "Sheng Thao", "photo_url": "Sheng-Thao.png", "website_url": "https://www.shengforoakland.com/", - "twitter_url": "sheng_tha0", + "twitter_url": "sheng_tha0 ", "facebook_url": null, "instagram_url": null, "map_url": null, @@ -45,7 +45,7 @@ "Total": 105973.64, "Cand_ID": 1405456, "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-2018" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json b/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json index 67b11b6..fec2a4b 100644 --- a/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json +++ b/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json @@ -28,17 +28,17 @@ "total_supporting_independent": 233834.24, "support_list": [ { - "Total": 216178.01, + "Total": 17656.23, "Cand_ID": 1427828, - "Filer_ID": "1431009", - "Filer_NamL": "Families in Action for Justice Fund", + "Filer_ID": "1331137", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020" }, { - "Total": 17656.23, + "Total": 216178.01, "Cand_ID": 1427828, - "Filer_ID": "1331137", - "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", + "Filer_ID": "1431009", + "Filer_NamL": "Power2Families, supporting Dannhaus, Edgerly, Gaines and Thompson for Oakland School Board 2020", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/carroll-fife.json b/build/_data/candidates/oakland/2020-11-03/carroll-fife.json index 47bf92d..74a1a2e 100644 --- a/build/_data/candidates/oakland/2020-11-03/carroll-fife.json +++ b/build/_data/candidates/oakland/2020-11-03/carroll-fife.json @@ -94,7 +94,7 @@ "Total": 23936.0, "Cand_ID": 1427585, "Filer_ID": "983545", - "Filer_NamL": "OAK PAC, Oakland Metropolitan Chamber of Commerce", + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", "election_name": "oakland-2020" } ] diff --git a/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json b/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json index 25d3bc5..241e656 100644 --- a/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json +++ b/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json @@ -35,17 +35,17 @@ "election_name": "oakland-2020" }, { - "Total": 14491.25, + "Total": 33214.74, "Cand_ID": 1427679, - "Filer_ID": "1431009", - "Filer_NamL": "Families in Action for Justice Fund", + "Filer_ID": "1331137", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020" }, { - "Total": 33214.74, + "Total": 14491.25, "Cand_ID": 1427679, - "Filer_ID": "1331137", - "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", + "Filer_ID": "1431009", + "Filer_NamL": "Power2Families, supporting Dannhaus, Edgerly, Gaines and Thompson for Oakland School Board 2020", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json index 59ae8c5..a66d840 100644 --- a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json +++ b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json @@ -4,7 +4,7 @@ "photo_url": "derreck_johnson_sub.jpg", "website_url": "https://www.johnsonforoakland.com/", "twitter_url": "derreckbjohnson", - "facebook_url": "https://www.facebook.com/derreckbjohnson/", + "facebook_url": "\nhttps://www.facebook.com/derreckbjohnson/", "instagram_url": "derreckbjohnson", "map_url": null, "votersedge_url": "https://votersedge.org/ca/en/ballot/election/87-f810b9/address/null/zip/94611/contests/contest/21265/candidate/151385?cty=ca%2falm", @@ -38,7 +38,7 @@ "Total": 133700.0, "Cand_ID": 1426780, "Filer_ID": "1428904", - "Filer_NamL": "Committee for an Affordable East Bay supporting Derreck Johnson and opposing Rebecca Kaplan for Oakland City Council At-Large 2020", + "Filer_NamL": "Committee for an Affordable East Bay", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json b/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json index 5980549..b0a1745 100644 --- a/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json +++ b/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json @@ -28,17 +28,17 @@ "total_supporting_independent": 155285.13, "support_list": [ { - "Total": 17488.97, + "Total": 137796.16, "Cand_ID": 1431908, - "Filer_ID": "1431009", - "Filer_NamL": "Families in Action for Justice Fund", + "Filer_ID": "1331137", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020" }, { - "Total": 137796.16, + "Total": 17488.97, "Cand_ID": 1431908, - "Filer_ID": "1331137", - "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", + "Filer_ID": "1431009", + "Filer_NamL": "Power2Families, supporting Dannhaus, Edgerly, Gaines and Thompson for Oakland School Board 2020", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json b/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json index 24c3d81..21890d5 100644 --- a/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json +++ b/build/_data/candidates/oakland/2020-11-03/lynette-gibson-mcelhaney.json @@ -31,7 +31,7 @@ "Total": 91171.0, "Cand_ID": 1421347, "Filer_ID": "983545", - "Filer_NamL": "OAK PAC, Oakland Metropolitan Chamber of Commerce", + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json b/build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json index b33208d..60ac28e 100644 --- a/build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json +++ b/build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json @@ -28,17 +28,17 @@ "total_supporting_independent": 209329.51, "support_list": [ { - "Total": 54703.41, + "Total": 154626.1, "Cand_ID": 1430558, - "Filer_ID": "1431009", - "Filer_NamL": "Families in Action for Justice Fund", + "Filer_ID": "1331137", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020" }, { - "Total": 154626.1, + "Total": 54703.41, "Cand_ID": 1430558, - "Filer_ID": "1331137", - "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", + "Filer_ID": "1431009", + "Filer_NamL": "Power2Families, supporting Dannhaus, Edgerly, Gaines and Thompson for Oakland School Board 2020", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/noel-gallo.json b/build/_data/candidates/oakland/2020-11-03/noel-gallo.json index a27b5ec..b45a172 100644 --- a/build/_data/candidates/oakland/2020-11-03/noel-gallo.json +++ b/build/_data/candidates/oakland/2020-11-03/noel-gallo.json @@ -12,7 +12,7 @@ "last_name": "Gallo", "ballot_item": 13, "office_election": 13, - "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website", + "bio": "Noel Gallo was elected to the Oakland City Council in 2012 to represent District 5. He serves as Co-Chair of the Oakland City Council Education Partnership Committee, and a member of the Life Enrichment, Public Works, and Public Safety City Council Committees. He represents the City of Oakland as a member of the AC Transit Bus Rapid Transit (BRT) Policy Steering Committee. Prior to joining the council, Gallo was elected and served on the Oakland Board of Education for 20 years. \nGallo is a lifelong resident of Oakland; he grew up in the Fruitvale/San Antonio District neighborhoods. He graduated from the University of California, Berkeley, with a Business Degree. \nSource: Candidate statement and website\n", "committee_name": "Re-Elect Noel Gallo for Oakland City Council 2020", "is_accepted_expenditure_ceiling": false, "is_incumbent": true, diff --git a/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json b/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json index aa59fd4..f7d6aed 100644 --- a/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json @@ -97,7 +97,7 @@ "Total": 35000.0, "Cand_ID": 1419466, "Filer_ID": "1428904", - "Filer_NamL": "Committee for an Affordable East Bay supporting Derreck Johnson and opposing Rebecca Kaplan for Oakland City Council At-Large 2020", + "Filer_NamL": "Committee for an Affordable East Bay", "election_name": "oakland-2020" } ] diff --git a/build/_data/candidates/oakland/2022-11-08/nenna-joiner.json b/build/_data/candidates/oakland/2022-11-08/nenna-joiner.json index 1dbdcbf..859dc24 100644 --- a/build/_data/candidates/oakland/2022-11-08/nenna-joiner.json +++ b/build/_data/candidates/oakland/2022-11-08/nenna-joiner.json @@ -38,7 +38,7 @@ "Total": 15600.0, "Cand_ID": 1450180, "Filer_ID": "983545", - "Filer_NamL": "OAK PAC, Oakland Metropolitan Chamber of Commerce", + "Filer_NamL": "OAKPAC, Oakland Metropolitan Chamber of Commerce", "election_name": "oakland-2022" }, { diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index 2f5d0bc..05a5948 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 3rd, 2020 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-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -26,7 +26,7 @@ "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", @@ -42,7 +42,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, @@ -52,10 +52,10 @@ "Tran_NamF": null, "Tran_NamL": "East 18th Street Associates", "Tran_Zip4": "94606", - "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, @@ -65,7 +65,7 @@ "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", @@ -81,7 +81,7 @@ "election_name": "oakland-2022" }, { - "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 3rd, 2020 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-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -120,7 +120,7 @@ "election_name": "oakland-2022" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 8th, 2022 General 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-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -146,7 +146,7 @@ "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", @@ -156,10 +156,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": null, "Tran_Occ": null, @@ -169,10 +169,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 3rd, 2020 General 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-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -198,7 +198,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, @@ -208,10 +208,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, @@ -221,10 +221,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, @@ -234,10 +234,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": "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,7 +273,7 @@ "Tran_NamF": "Walter", "Tran_NamL": "Miles", "Tran_Zip4": "94609-1304", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2016 Election", @@ -289,7 +289,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", @@ -299,10 +299,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 3rd, 2020 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-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -354,7 +354,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, @@ -364,7 +364,7 @@ "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", @@ -380,7 +380,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, @@ -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 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": "Elementay School Teacher (Retired)", @@ -416,7 +416,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", @@ -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 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,10 +507,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "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, @@ -520,10 +520,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "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, @@ -533,10 +533,10 @@ "Tran_NamF": null, "Tran_NamL": "Greenwood Norwood LLC", "Tran_Zip4": "94612", - "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, @@ -546,7 +546,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", @@ -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 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 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-2020" }, { - "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,7 +611,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -640,7 +640,7 @@ "election_name": "oakland-2016" }, { - "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", @@ -650,10 +650,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 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-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", @@ -676,7 +676,7 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2016" + "election_name": "oakland-2022" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -692,7 +692,7 @@ "election_name": "oakland-2020" }, { - "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", @@ -702,10 +702,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 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,7 +741,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -757,7 +757,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", @@ -767,10 +767,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "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": "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 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1342695", "Tran_Emp": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -793,10 +793,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "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": "Self - Stansbury", "Tran_Occ": "Property Manager", @@ -806,7 +806,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", @@ -822,7 +822,7 @@ "election_name": "oakland-2022" }, { - "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", @@ -832,7 +832,7 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 8th, 2016 Election", @@ -848,7 +848,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 - 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-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -900,7 +900,7 @@ "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, @@ -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 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 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-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1004,7 +1004,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, @@ -1014,10 +1014,10 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "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, @@ -1027,10 +1027,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, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1040,7 +1040,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", @@ -1056,7 +1056,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, @@ -1066,10 +1066,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, @@ -1079,10 +1079,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, ```
mikeubell commented 6 months ago
Build diff from Commit 8bba528eeebcd101405052023b720f76a7b007f9: ```diff ```
mikeubell commented 6 months ago
Build diff from Commit 62966681422f8f53ad78e91a5da2ad9e828cbce0: ```diff diff --git a/build/_committees/.md b/build/_committees/.md index 5971f16..2d96965 100644 --- a/build/_committees/.md +++ b/build/_committees/.md @@ -2,6 +2,6 @@ filer_id: '' name: No committee registered candidate_controlled_id: '' -data_warning: +data_warning: title: No committee registered --- diff --git a/build/_committees/1229791.md b/build/_committees/1229791.md index b71f0b5..308b89e 100644 --- a/build/_committees/1229791.md +++ b/build/_committees/1229791.md @@ -2,6 +2,6 @@ filer_id: '1229791' name: EMERALD FUND, INC. candidate_controlled_id: '' -data_warning: +data_warning: title: EMERALD FUND, INC. --- diff --git a/build/_committees/1236617.md b/build/_committees/1236617.md index 99e13cf..c5c3bda 100644 --- a/build/_committees/1236617.md +++ b/build/_committees/1236617.md @@ -2,6 +2,6 @@ filer_id: '1236617' name: Desley Brooks for City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Desley Brooks for City Council 2018 --- diff --git a/build/_committees/1250247.md b/build/_committees/1250247.md index 1777153..cb33a88 100644 --- a/build/_committees/1250247.md +++ b/build/_committees/1250247.md @@ -2,6 +2,6 @@ filer_id: '1250247' name: SAN FRANCISCO ASSOCIATION OF REALTORS candidate_controlled_id: '' -data_warning: +data_warning: title: SAN FRANCISCO ASSOCIATION OF REALTORS --- diff --git a/build/_committees/1253609.md b/build/_committees/1253609.md index 810aa11..6096db1 100644 --- a/build/_committees/1253609.md +++ b/build/_committees/1253609.md @@ -2,6 +2,6 @@ filer_id: '1253609' name: OUTFRONT MEDIA LLC candidate_controlled_id: '' -data_warning: +data_warning: title: OUTFRONT MEDIA LLC --- diff --git a/build/_committees/1256357.md b/build/_committees/1256357.md index 6da498d..eee02a9 100644 --- a/build/_committees/1256357.md +++ b/build/_committees/1256357.md @@ -2,6 +2,6 @@ filer_id: '1256357' name: Re-Elect Larry Reid 2008 candidate_controlled_id: '1387905' -data_warning: +data_warning: title: Re-Elect Larry Reid 2008 --- diff --git a/build/_committees/1273532.md b/build/_committees/1273532.md index a3765ea..160dadd 100644 --- a/build/_committees/1273532.md +++ b/build/_committees/1273532.md @@ -2,6 +2,6 @@ filer_id: '1273532' name: International Brotherhood of Electrical Workers Local 595 PAC candidate_controlled_id: '' -data_warning: +data_warning: title: International Brotherhood of Electrical Workers Local 595 PAC --- diff --git a/build/_committees/1277578.md b/build/_committees/1277578.md index 9cb78ad..db06920 100644 --- a/build/_committees/1277578.md +++ b/build/_committees/1277578.md @@ -2,6 +2,6 @@ filer_id: '1277578' name: Committee to Elect Chris Dobbins to Oakland School Board District 6 candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Elect Chris Dobbins to Oakland School Board District 6 --- diff --git a/build/_committees/1284523.md b/build/_committees/1284523.md index ffad6d8..245b093 100644 --- a/build/_committees/1284523.md +++ b/build/_committees/1284523.md @@ -2,6 +2,6 @@ filer_id: '1284523' name: ALAMEDA LABOR COUNCIL, AFL-CIO SOLIDARITY PAC candidate_controlled_id: '' -data_warning: +data_warning: title: ALAMEDA LABOR COUNCIL, AFL-CIO SOLIDARITY PAC --- diff --git a/build/_committees/1294190.md b/build/_committees/1294190.md index 0b910db..79e5cf4 100644 --- a/build/_committees/1294190.md +++ b/build/_committees/1294190.md @@ -2,6 +2,6 @@ filer_id: '1294190' name: Unity PAC, a sponsored committee of the Alameda Labor Council, AFL-CIO candidate_controlled_id: '' -data_warning: +data_warning: title: Unity PAC, a sponsored committee of the Alameda Labor Council, AFL-CIO --- diff --git a/build/_committees/1295554.md b/build/_committees/1295554.md index 2499257..2a40efb 100644 --- a/build/_committees/1295554.md +++ b/build/_committees/1295554.md @@ -2,6 +2,6 @@ filer_id: '1295554' name: NIBBI BROTHERS ASSOCIATES candidate_controlled_id: '' -data_warning: +data_warning: title: NIBBI BROTHERS ASSOCIATES --- diff --git a/build/_committees/1296947.md b/build/_committees/1296947.md index f2a7d9f..477fe19 100644 --- a/build/_committees/1296947.md +++ b/build/_committees/1296947.md @@ -2,6 +2,6 @@ filer_id: '1296947' name: Service Employees International Union Local 1021 Issues PAC candidate_controlled_id: '' -data_warning: +data_warning: title: Service Employees International Union Local 1021 Issues PAC --- diff --git a/build/_committees/1302433.md b/build/_committees/1302433.md index c9e9881..f68e8e7 100644 --- a/build/_committees/1302433.md +++ b/build/_committees/1302433.md @@ -3,7 +3,7 @@ filer_id: '1302433' name: Charter Public Schools Political Action Committee, sponsored by California Charter Schools Association Advocates candidate_controlled_id: '' -data_warning: +data_warning: title: Charter Public Schools Political Action Committee, sponsored by California Charter Schools Association Advocates --- diff --git a/build/_committees/1303019.md b/build/_committees/1303019.md index e5c7c5c..d4a11ba 100644 --- a/build/_committees/1303019.md +++ b/build/_committees/1303019.md @@ -2,6 +2,6 @@ filer_id: '1303019' name: Friends of Jody London for Oakland School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Friends of Jody London for Oakland School Board 2016 --- diff --git a/build/_committees/1303541.md b/build/_committees/1303541.md index af39bf9..77035e0 100644 --- a/build/_committees/1303541.md +++ b/build/_committees/1303541.md @@ -2,6 +2,6 @@ filer_id: '1303541' name: Kaplan For Oakland candidate_controlled_id: '1406223' -data_warning: +data_warning: title: Kaplan For Oakland --- diff --git a/build/_committees/1304073.md b/build/_committees/1304073.md index 6890279..b8fde37 100644 --- a/build/_committees/1304073.md +++ b/build/_committees/1304073.md @@ -2,6 +2,6 @@ filer_id: '1304073' name: Re-Elect Jumoke Hinton Hodge for Oakland School Board 2012 candidate_controlled_id: '1386416' -data_warning: +data_warning: title: Re-Elect Jumoke Hinton Hodge for Oakland School Board 2012 --- diff --git a/build/_committees/1307016.md b/build/_committees/1307016.md index b4f4396..5b3a89d 100644 --- a/build/_committees/1307016.md +++ b/build/_committees/1307016.md @@ -2,6 +2,6 @@ filer_id: '1307016' name: Oakland Jobs PAC candidate_controlled_id: '' -data_warning: +data_warning: title: Oakland Jobs PAC --- diff --git a/build/_committees/1310647.md b/build/_committees/1310647.md index 63c23ea..3ac4cd8 100644 --- a/build/_committees/1310647.md +++ b/build/_committees/1310647.md @@ -2,6 +2,6 @@ filer_id: '1310647' name: The Oakland Fund for Measure AA candidate_controlled_id: '' -data_warning: +data_warning: title: The Oakland Fund for Measure AA --- diff --git a/build/_committees/1324270.md b/build/_committees/1324270.md index 8c1e191..2334b89 100644 --- a/build/_committees/1324270.md +++ b/build/_committees/1324270.md @@ -2,6 +2,6 @@ filer_id: '1324270' name: Libby Schaaf For Council 2010 candidate_controlled_id: '1395968' -data_warning: +data_warning: title: Libby Schaaf For Council 2010 --- diff --git a/build/_committees/1326919.md b/build/_committees/1326919.md index 9588a21..84f0f70 100644 --- a/build/_committees/1326919.md +++ b/build/_committees/1326919.md @@ -2,6 +2,6 @@ filer_id: '1326919' name: Kaplan For Oakland Mayor 2010 candidate_controlled_id: '1406223' -data_warning: +data_warning: title: Kaplan For Oakland Mayor 2010 --- diff --git a/build/_committees/1331137.md b/build/_committees/1331137.md index 9cd0bd4..149e66b 100644 --- a/build/_committees/1331137.md +++ b/build/_committees/1331137.md @@ -3,7 +3,7 @@ filer_id: '1331137' name: Families and Educators for Public Education, Sponsored by Go Public Schools Advocates candidate_controlled_id: '' -data_warning: +data_warning: title: Families and Educators for Public Education, Sponsored by Go Public Schools Advocates --- diff --git a/build/_committees/1332115.md b/build/_committees/1332115.md index 7d3486c..cb1c441 100644 --- a/build/_committees/1332115.md +++ b/build/_committees/1332115.md @@ -2,6 +2,6 @@ filer_id: '1332115' name: Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund candidate_controlled_id: '' -data_warning: +data_warning: title: Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund --- diff --git a/build/_committees/1332307.md b/build/_committees/1332307.md index 6e13be7..6e088e4 100644 --- a/build/_committees/1332307.md +++ b/build/_committees/1332307.md @@ -2,6 +2,6 @@ filer_id: '1332307' name: Youth Power PAC, Sponsored by PowerCA Action candidate_controlled_id: '' -data_warning: +data_warning: title: Youth Power PAC, Sponsored by PowerCA Action --- diff --git a/build/_committees/1335572.md b/build/_committees/1335572.md index 74df876..97f9939 100644 --- a/build/_committees/1335572.md +++ b/build/_committees/1335572.md @@ -2,6 +2,6 @@ filer_id: '1335572' name: Mario Juarez for City Council 2012 candidate_controlled_id: '' -data_warning: +data_warning: title: Mario Juarez for City Council 2012 --- diff --git a/build/_committees/1339522.md b/build/_committees/1339522.md index ff4c41d..ec033a5 100644 --- a/build/_committees/1339522.md +++ b/build/_committees/1339522.md @@ -2,6 +2,6 @@ filer_id: '1339522' name: California Charter Schools Association Advocates Independent Expenditure Committee candidate_controlled_id: '' -data_warning: +data_warning: title: California Charter Schools Association Advocates Independent Expenditure Committee --- diff --git a/build/_committees/1341827.md b/build/_committees/1341827.md index c1034ef..ea76c2c 100644 --- a/build/_committees/1341827.md +++ b/build/_committees/1341827.md @@ -2,6 +2,6 @@ filer_id: '1341827' name: Kaplan for Oakland City Council 2012 candidate_controlled_id: '1406223' -data_warning: +data_warning: title: Kaplan for Oakland City Council 2012 --- diff --git a/build/_committees/1342185.md b/build/_committees/1342185.md index 61733e5..0b1fdc3 100644 --- a/build/_committees/1342185.md +++ b/build/_committees/1342185.md @@ -2,6 +2,6 @@ filer_id: '1342185' name: Barbara Parker for Oakland City Attorney 2012 candidate_controlled_id: '1382679' -data_warning: +data_warning: title: Barbara Parker for Oakland City Attorney 2012 --- diff --git a/build/_committees/1342416.md b/build/_committees/1342416.md index d83f846..c9f4b0c 100644 --- a/build/_committees/1342416.md +++ b/build/_committees/1342416.md @@ -2,6 +2,6 @@ filer_id: '1342416' name: Lynette Gibson-McElhaney for City Council 2012 Officeholder Committee candidate_controlled_id: '1375179' -data_warning: +data_warning: title: Lynette Gibson-McElhaney for City Council 2012 Officeholder Committee --- diff --git a/build/_committees/1342695.md b/build/_committees/1342695.md index d67a774..dd90c2e 100644 --- a/build/_committees/1342695.md +++ b/build/_committees/1342695.md @@ -2,6 +2,6 @@ filer_id: '1342695' name: East Bay Rental Housing Association PAC candidate_controlled_id: '' -data_warning: +data_warning: title: East Bay Rental Housing Association PAC --- diff --git a/build/_committees/1344093.md b/build/_committees/1344093.md index 9455e74..6fcd543 100644 --- a/build/_committees/1344093.md +++ b/build/_committees/1344093.md @@ -2,6 +2,6 @@ filer_id: '1344093' name: NATIONAL ASSOCIATION OF REALTORS FUND (NONPROFIT 527 ORGANIZATION) candidate_controlled_id: '' -data_warning: +data_warning: title: NATIONAL ASSOCIATION OF REALTORS FUND (NONPROFIT 527 ORGANIZATION) --- diff --git a/build/_committees/1344506.md b/build/_committees/1344506.md index 19b8e90..6ddd201 100644 --- a/build/_committees/1344506.md +++ b/build/_committees/1344506.md @@ -2,6 +2,6 @@ filer_id: '1344506' name: American Beverage Association California PAC candidate_controlled_id: '' -data_warning: +data_warning: title: American Beverage Association California PAC --- diff --git a/build/_committees/1345905.md b/build/_committees/1345905.md index 1727302..d5aa845 100644 --- a/build/_committees/1345905.md +++ b/build/_committees/1345905.md @@ -2,6 +2,6 @@ filer_id: '1345905' name: Noel Gallo for Oakland City Council 2012 candidate_controlled_id: '1388641' -data_warning: +data_warning: title: Noel Gallo for Oakland City Council 2012 --- diff --git a/build/_committees/1345919.md b/build/_committees/1345919.md index 6357853..31510b6 100644 --- a/build/_committees/1345919.md +++ b/build/_committees/1345919.md @@ -2,6 +2,6 @@ filer_id: '1345919' name: James Harris for Oakland School Board 2012 candidate_controlled_id: '1387803' -data_warning: +data_warning: title: James Harris for Oakland School Board 2012 --- diff --git a/build/_committees/1347517.md b/build/_committees/1347517.md index 7335e4e..1a05c62 100644 --- a/build/_committees/1347517.md +++ b/build/_committees/1347517.md @@ -2,6 +2,6 @@ filer_id: '1347517' name: Macleay for Oakland City Council District 1 2012 candidate_controlled_id: '1384267' -data_warning: +data_warning: title: Macleay for Oakland City Council District 1 2012 --- diff --git a/build/_committees/1348353.md b/build/_committees/1348353.md index f05aae6..efb122f 100644 --- a/build/_committees/1348353.md +++ b/build/_committees/1348353.md @@ -2,6 +2,6 @@ filer_id: '1348353' name: Roseann Torres for Oakland School Board candidate_controlled_id: '1379121' -data_warning: +data_warning: title: Roseann Torres for Oakland School Board --- diff --git a/build/_committees/1348676.md b/build/_committees/1348676.md index f7ee08b..f041ba6 100644 --- a/build/_committees/1348676.md +++ b/build/_committees/1348676.md @@ -2,6 +2,6 @@ filer_id: '1348676' name: Friends of Mike Hutchinson for Oakland School Board 2012 candidate_controlled_id: '1384267' -data_warning: +data_warning: title: Friends of Mike Hutchinson for Oakland School Board 2012 --- diff --git a/build/_committees/134896.md b/build/_committees/134896.md index 9195659..ca40664 100644 --- a/build/_committees/134896.md +++ b/build/_committees/134896.md @@ -2,6 +2,6 @@ filer_id: '134896' name: Mike Hutchinson for School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Mike Hutchinson for School Board 2016 --- diff --git a/build/_committees/1351785.md b/build/_committees/1351785.md index 9e73f39..d3574e1 100644 --- a/build/_committees/1351785.md +++ b/build/_committees/1351785.md @@ -2,6 +2,6 @@ filer_id: '1351785' name: SHEET METAL WORKERS' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES COMMITTEE candidate_controlled_id: '' -data_warning: +data_warning: title: SHEET METAL WORKERS' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES COMMITTEE --- diff --git a/build/_committees/1352921.md b/build/_committees/1352921.md index 622a82b..5fa3772 100644 --- a/build/_committees/1352921.md +++ b/build/_committees/1352921.md @@ -2,6 +2,6 @@ filer_id: '1352921' name: Barbara Parker City Attorney Officeholder Account candidate_controlled_id: '1382679' -data_warning: +data_warning: title: Barbara Parker City Attorney Officeholder Account --- diff --git a/build/_committees/1354678.md b/build/_committees/1354678.md index 608b580..12ca54a 100644 --- a/build/_committees/1354678.md +++ b/build/_committees/1354678.md @@ -2,6 +2,6 @@ filer_id: '1354678' name: Re-Elect Mayor Quan 201 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect Mayor Quan 201 --- diff --git a/build/_committees/1357609.md b/build/_committees/1357609.md index bc713b4..9f83682 100644 --- a/build/_committees/1357609.md +++ b/build/_committees/1357609.md @@ -2,6 +2,6 @@ filer_id: '1357609' name: Parker for Oakland Mayor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Parker for Oakland Mayor 2014 --- diff --git a/build/_committees/1359017.md b/build/_committees/1359017.md index da7781e..e940a1b 100644 --- a/build/_committees/1359017.md +++ b/build/_committees/1359017.md @@ -2,6 +2,6 @@ filer_id: '1359017' name: Joe Tuman for Mayor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Joe Tuman for Mayor 2014 --- diff --git a/build/_committees/1360826.md b/build/_committees/1360826.md index d5ec27b..2745663 100644 --- a/build/_committees/1360826.md +++ b/build/_committees/1360826.md @@ -2,6 +2,6 @@ filer_id: '1360826' name: Committee to Elect Michael V. Johnson candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Elect Michael V. Johnson --- diff --git a/build/_committees/1361954.md b/build/_committees/1361954.md index f6add97..d2f2112 100644 --- a/build/_committees/1361954.md +++ b/build/_committees/1361954.md @@ -2,6 +2,6 @@ filer_id: '1361954' name: Dan Kalb Council Officeholder Committee candidate_controlled_id: '1382408' -data_warning: +data_warning: title: Dan Kalb Council Officeholder Committee --- diff --git a/build/_committees/1362261.md b/build/_committees/1362261.md index 58dbeaa..fec5287 100644 --- a/build/_committees/1362261.md +++ b/build/_committees/1362261.md @@ -2,6 +2,6 @@ filer_id: '1362261' name: Mayor Libby Schaaf 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Mayor Libby Schaaf 2014 --- diff --git a/build/_committees/1362843.md b/build/_committees/1362843.md index b139e14..2bcf88e 100644 --- a/build/_committees/1362843.md +++ b/build/_committees/1362843.md @@ -2,6 +2,6 @@ filer_id: '1362843' name: Jill Broadhurst for Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Jill Broadhurst for Council 2014 --- diff --git a/build/_committees/1362877.md b/build/_committees/1362877.md index c0ac353..ac7c5a4 100644 --- a/build/_committees/1362877.md +++ b/build/_committees/1362877.md @@ -2,6 +2,6 @@ filer_id: '1362877' name: Dan Siegel for Mayor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Dan Siegel for Mayor 2014 --- diff --git a/build/_committees/1363584.md b/build/_committees/1363584.md index bb1c4fe..c3e7152 100644 --- a/build/_committees/1363584.md +++ b/build/_committees/1363584.md @@ -2,6 +2,6 @@ filer_id: '1363584' name: Nicolas Heidorn for City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Nicolas Heidorn for City Council 2014 --- diff --git a/build/_committees/1364029.md b/build/_committees/1364029.md index b63cfb6..a332712 100644 --- a/build/_committees/1364029.md +++ b/build/_committees/1364029.md @@ -1,7 +1,7 @@ --- filer_id: '1364029' -name: +name: candidate_controlled_id: '' -data_warning: -title: +data_warning: +title: --- diff --git a/build/_committees/1364278.md b/build/_committees/1364278.md index 2015454..e4bc459 100644 --- a/build/_committees/1364278.md +++ b/build/_committees/1364278.md @@ -2,6 +2,6 @@ filer_id: '1364278' name: Courtney Ruby for Oakland Mayor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Courtney Ruby for Oakland Mayor 2014 --- diff --git a/build/_committees/1364308.md b/build/_committees/1364308.md index 9cb660b..f52d1b1 100644 --- a/build/_committees/1364308.md +++ b/build/_committees/1364308.md @@ -2,6 +2,6 @@ filer_id: '1364308' name: Andrew Park for City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Andrew Park for City Council 2014 --- diff --git a/build/_committees/1364457.md b/build/_committees/1364457.md index 8f2553c..437fdb5 100644 --- a/build/_committees/1364457.md +++ b/build/_committees/1364457.md @@ -2,6 +2,6 @@ filer_id: '1364457' name: Shanthi Gonzales School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Shanthi Gonzales School Board 2014 --- diff --git a/build/_committees/1364564.md b/build/_committees/1364564.md index 65d3e9e..ccd3e64 100644 --- a/build/_committees/1364564.md +++ b/build/_committees/1364564.md @@ -3,7 +3,7 @@ filer_id: '1364564' name: Committee to Protect Oakland Renters - Yes on Measure JJ, sponsored by labor and community organizations candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Protect Oakland Renters - Yes on Measure JJ, sponsored by labor and community organizations --- diff --git a/build/_committees/1365384.md b/build/_committees/1365384.md index 2aabf2b..966f826 100644 --- a/build/_committees/1365384.md +++ b/build/_committees/1365384.md @@ -2,6 +2,6 @@ filer_id: '1365384' name: Abel Guillen for Oakland City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Abel Guillen for Oakland City Council 2014 --- diff --git a/build/_committees/1365454.md b/build/_committees/1365454.md index 9487a3c..da97ae9 100644 --- a/build/_committees/1365454.md +++ b/build/_committees/1365454.md @@ -2,6 +2,6 @@ filer_id: '1365454' name: Committee to Elect Renato Almanzor to the School Board in 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Elect Renato Almanzor to the School Board in 2014 --- diff --git a/build/_committees/1365610.md b/build/_committees/1365610.md index dd1e484..3df905a 100644 --- a/build/_committees/1365610.md +++ b/build/_committees/1365610.md @@ -2,6 +2,6 @@ filer_id: '1365610' name: Annie Campbell Washington 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Annie Campbell Washington 2014 --- diff --git a/build/_committees/1365733.md b/build/_committees/1365733.md index bae8c95..5c89653 100644 --- a/build/_committees/1365733.md +++ b/build/_committees/1365733.md @@ -2,6 +2,6 @@ filer_id: '1365733' name: Shakir-Gilmore for Oakland School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Shakir-Gilmore for Oakland School Board 2014 --- diff --git a/build/_committees/1365766.md b/build/_committees/1365766.md index a982b4a..199e331 100644 --- a/build/_committees/1365766.md +++ b/build/_committees/1365766.md @@ -2,6 +2,6 @@ filer_id: '1365766' name: Shereda Nosakhare for City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Shereda Nosakhare for City Council 2014 --- diff --git a/build/_committees/1366244.md b/build/_committees/1366244.md index cfa6e3b..5507e21 100644 --- a/build/_committees/1366244.md +++ b/build/_committees/1366244.md @@ -2,6 +2,6 @@ filer_id: '1366244' name: Kevin Blackburn for Oakland City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Kevin Blackburn for Oakland City Council 2014 --- diff --git a/build/_committees/1366759.md b/build/_committees/1366759.md index b9dd2ce..0e87599 100644 --- a/build/_committees/1366759.md +++ b/build/_committees/1366759.md @@ -2,6 +2,6 @@ filer_id: '1366759' name: Treva Reid for Oakland City Council 2020 candidate_controlled_id: '' -data_warning: +data_warning: title: Treva Reid for Oakland City Council 2020 --- diff --git a/build/_committees/1366842.md b/build/_committees/1366842.md index 0f2bdd9..36ae9f7 100644 --- a/build/_committees/1366842.md +++ b/build/_committees/1366842.md @@ -2,6 +2,6 @@ filer_id: '1366842' name: Karl Debro for School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Karl Debro for School Board 2014 --- diff --git a/build/_committees/1367083.md b/build/_committees/1367083.md index e3e9d2f..acb2e9e 100644 --- a/build/_committees/1367083.md +++ b/build/_committees/1367083.md @@ -2,6 +2,6 @@ filer_id: '1367083' name: Cheri Spigner for School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Cheri Spigner for School Board 2014 --- diff --git a/build/_committees/1367207.md b/build/_committees/1367207.md index 9f7591f..8cf732a 100644 --- a/build/_committees/1367207.md +++ b/build/_committees/1367207.md @@ -2,6 +2,6 @@ filer_id: '1367207' name: Charles R. Williams for Mayor of Oakland 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Charles R. Williams for Mayor of Oakland 2014 --- diff --git a/build/_committees/1367270.md b/build/_committees/1367270.md index 3464745..a4a3661 100644 --- a/build/_committees/1367270.md +++ b/build/_committees/1367270.md @@ -1,7 +1,7 @@ --- filer_id: '1367270' -name: +name: candidate_controlled_id: '' -data_warning: -title: +data_warning: +title: --- diff --git a/build/_committees/1367463.md b/build/_committees/1367463.md index 7267f9e..dccec84 100644 --- a/build/_committees/1367463.md +++ b/build/_committees/1367463.md @@ -2,6 +2,6 @@ filer_id: '1367463' name: James Moore for Oakland City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: James Moore for Oakland City Council 2014 --- diff --git a/build/_committees/136810.md b/build/_committees/136810.md index f923719..d5235dc 100644 --- a/build/_committees/136810.md +++ b/build/_committees/136810.md @@ -2,6 +2,6 @@ filer_id: '136810' name: Brenda Roberts for Oakland City Auditor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Brenda Roberts for Oakland City Auditor 2014 --- diff --git a/build/_committees/1368410.md b/build/_committees/1368410.md index 259924b..bca82f6 100644 --- a/build/_committees/1368410.md +++ b/build/_committees/1368410.md @@ -2,6 +2,6 @@ filer_id: '1368410' name: Brenda Roberts for Oakland City Auditor 2014 candidate_controlled_id: '1403762' -data_warning: +data_warning: title: Brenda Roberts for Oakland City Auditor 2014 --- diff --git a/build/_committees/1368416.md b/build/_committees/1368416.md index cef9db5..1fc27a2 100644 --- a/build/_committees/1368416.md +++ b/build/_committees/1368416.md @@ -2,6 +2,6 @@ filer_id: '1368416' name: Nina Senn for Oakland School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Nina Senn for Oakland School Board 2014 --- diff --git a/build/_committees/1368984.md b/build/_committees/1368984.md index 718029c..cd5c001 100644 --- a/build/_committees/1368984.md +++ b/build/_committees/1368984.md @@ -2,6 +2,6 @@ filer_id: '1368984' name: Aimee Eng for School Board 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Aimee Eng for School Board 2018 --- diff --git a/build/_committees/1369263.md b/build/_committees/1369263.md index dd67187..e445d2e 100644 --- a/build/_committees/1369263.md +++ b/build/_committees/1369263.md @@ -2,6 +2,6 @@ filer_id: '1369263' name: Len Raphael for Oakland City Auditor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Len Raphael for Oakland City Auditor 2014 --- diff --git a/build/_committees/1369363.md b/build/_committees/1369363.md index b6bebbc..10c22aa 100644 --- a/build/_committees/1369363.md +++ b/build/_committees/1369363.md @@ -2,6 +2,6 @@ filer_id: '1369363' name: Nancy Sidebotham for Mayor 11/4/14 candidate_controlled_id: '1386741' -data_warning: +data_warning: title: Nancy Sidebotham for Mayor 11/4/14 --- diff --git a/build/_committees/1369536.md b/build/_committees/1369536.md index e3b0a90..199a8b3 100644 --- a/build/_committees/1369536.md +++ b/build/_committees/1369536.md @@ -2,6 +2,6 @@ filer_id: '1369536' name: Saied Karamooz For Oakland Mayor Movement 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Saied Karamooz For Oakland Mayor Movement 2014 --- diff --git a/build/_committees/1370519.md b/build/_committees/1370519.md index dc666a4..dfd653d 100644 --- a/build/_committees/1370519.md +++ b/build/_committees/1370519.md @@ -2,6 +2,6 @@ filer_id: '1370519' name: Citizens for Oakland candidate_controlled_id: '' -data_warning: +data_warning: title: Citizens for Oakland --- diff --git a/build/_committees/1372459.md b/build/_committees/1372459.md index be52f2c..4c36bda 100644 --- a/build/_committees/1372459.md +++ b/build/_committees/1372459.md @@ -2,6 +2,6 @@ filer_id: '1372459' name: Oakland Civil Liberties Alliance candidate_controlled_id: '' -data_warning: +data_warning: title: Oakland Civil Liberties Alliance --- diff --git a/build/_committees/1374343.md b/build/_committees/1374343.md index 5066ae8..b101ac8 100644 --- a/build/_committees/1374343.md +++ b/build/_committees/1374343.md @@ -2,6 +2,6 @@ filer_id: '1374343' name: Councilmember Rebecca Kaplan 2016 Officeholder Committee candidate_controlled_id: '1406223' -data_warning: +data_warning: title: Councilmember Rebecca Kaplan 2016 Officeholder Committee --- diff --git a/build/_committees/1375179.md b/build/_committees/1375179.md index 8727623..70ac8e3 100644 --- a/build/_committees/1375179.md +++ b/build/_committees/1375179.md @@ -2,6 +2,6 @@ filer_id: '1375179' name: Re-Elect McElhaney for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect McElhaney for City Council 2016 --- diff --git a/build/_committees/1376660.md b/build/_committees/1376660.md index c9df25f..b3ff364 100644 --- a/build/_committees/1376660.md +++ b/build/_committees/1376660.md @@ -2,6 +2,6 @@ filer_id: '1376660' name: Annie Campbell Washington for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Annie Campbell Washington for Oakland City Council 2018 --- diff --git a/build/_committees/1379121.md b/build/_committees/1379121.md index f150293..bd7f4a0 100644 --- a/build/_committees/1379121.md +++ b/build/_committees/1379121.md @@ -2,6 +2,6 @@ filer_id: '1379121' name: Roseann Torres for Oakland School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Roseann Torres for Oakland School Board 2016 --- diff --git a/build/_committees/1379188.md b/build/_committees/1379188.md index e91d5ec..b158ec8 100644 --- a/build/_committees/1379188.md +++ b/build/_committees/1379188.md @@ -2,6 +2,6 @@ filer_id: '1379188' name: Mayor Libby Schaaf for Oakland candidate_controlled_id: '1395968' -data_warning: +data_warning: title: Mayor Libby Schaaf for Oakland --- diff --git a/build/_committees/1379618.md b/build/_committees/1379618.md index 2531d0f..4a19964 100644 --- a/build/_committees/1379618.md +++ b/build/_committees/1379618.md @@ -2,6 +2,6 @@ filer_id: '1379618' name: Transport Oakland candidate_controlled_id: '' -data_warning: +data_warning: title: Transport Oakland --- diff --git a/build/_committees/1380387.md b/build/_committees/1380387.md index 8b3f2d9..41fc147 100644 --- a/build/_committees/1380387.md +++ b/build/_committees/1380387.md @@ -2,6 +2,6 @@ filer_id: '1380387' name: Oakland Charter Advocates for Excellent Public Schools candidate_controlled_id: '' -data_warning: +data_warning: title: Oakland Charter Advocates for Excellent Public Schools --- diff --git a/build/_committees/1380610.md b/build/_committees/1380610.md index c4cf81a..e83684c 100644 --- a/build/_committees/1380610.md +++ b/build/_committees/1380610.md @@ -2,6 +2,6 @@ filer_id: '1380610' name: Jordan for City Council 16 candidate_controlled_id: '' -data_warning: +data_warning: title: Jordan for City Council 16 --- diff --git a/build/_committees/1381041.md b/build/_committees/1381041.md index aed57fb..d2003a9 100644 --- a/build/_committees/1381041.md +++ b/build/_committees/1381041.md @@ -2,6 +2,6 @@ filer_id: '1381041' name: Yes on Measure HH, Citizens for Healthy Oakland Children candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on Measure HH, Citizens for Healthy Oakland Children --- diff --git a/build/_committees/1381183.md b/build/_committees/1381183.md index 23b4fdc..11a957c 100644 --- a/build/_committees/1381183.md +++ b/build/_committees/1381183.md @@ -2,6 +2,6 @@ filer_id: '1381183' name: Kaplan for Oakland City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Kaplan for Oakland City Council 2016 --- diff --git a/build/_committees/1381519.md b/build/_committees/1381519.md index f7cb5f1..36601b8 100644 --- a/build/_committees/1381519.md +++ b/build/_committees/1381519.md @@ -2,6 +2,6 @@ filer_id: '1381519' name: PROGRESS SAN FRANCISCO candidate_controlled_id: '' -data_warning: +data_warning: title: PROGRESS SAN FRANCISCO --- diff --git a/build/_committees/1382194.md b/build/_committees/1382194.md index 228845f..7a12c26 100644 --- a/build/_committees/1382194.md +++ b/build/_committees/1382194.md @@ -2,6 +2,6 @@ filer_id: '1382194' name: Letitia Henderson for School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Letitia Henderson for School Board 2016 --- diff --git a/build/_committees/1382223.md b/build/_committees/1382223.md index 96d8f05..0e27d0b 100644 --- a/build/_committees/1382223.md +++ b/build/_committees/1382223.md @@ -2,6 +2,6 @@ filer_id: '1382223' name: Yes on Public Health and Safety Bond 2016, Yes on A candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on Public Health and Safety Bond 2016, Yes on A --- diff --git a/build/_committees/1382408.md b/build/_committees/1382408.md index abeec89..b941fc5 100644 --- a/build/_committees/1382408.md +++ b/build/_committees/1382408.md @@ -2,6 +2,6 @@ filer_id: '1382408' name: Re-Elect Dan Kalb Oakland City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect Dan Kalb Oakland City Council 2016 --- diff --git a/build/_committees/1382679.md b/build/_committees/1382679.md index 404191c..221747d 100644 --- a/build/_committees/1382679.md +++ b/build/_committees/1382679.md @@ -2,6 +2,6 @@ filer_id: '1382679' name: Re-elect City Attorney Barbara Parker 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-elect City Attorney Barbara Parker 2016 --- diff --git a/build/_committees/1382995.md b/build/_committees/1382995.md index ae2ec65..dce57f4 100644 --- a/build/_committees/1382995.md +++ b/build/_committees/1382995.md @@ -3,7 +3,7 @@ filer_id: '1382995' name: 'NO ON V, ENOUGH IS ENOUGH: DON''T TAX OUR GROCERIES, WITH MAJOR FUNDING BY AMERICAN BEVERAGE ASSOCIATION CALIFORNIA PAC' candidate_controlled_id: '' -data_warning: +data_warning: title: 'NO ON V, ENOUGH IS ENOUGH: DON''T TAX OUR GROCERIES, WITH MAJOR FUNDING BY AMERICAN BEVERAGE ASSOCIATION CALIFORNIA PAC' --- diff --git a/build/_committees/1384267.md b/build/_committees/1384267.md index 8bf425b..d02b692 100644 --- a/build/_committees/1384267.md +++ b/build/_committees/1384267.md @@ -2,6 +2,6 @@ filer_id: '1384267' name: Macleay for Oakland School Board, District 1, 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Macleay for Oakland School Board, District 1, 2016 --- diff --git a/build/_committees/1384926.md b/build/_committees/1384926.md index bf18613..dd1b932 100644 --- a/build/_committees/1384926.md +++ b/build/_committees/1384926.md @@ -2,6 +2,6 @@ filer_id: '1384926' name: Chris Jackson for School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Chris Jackson for School Board 2016 --- diff --git a/build/_committees/1385180.md b/build/_committees/1385180.md index 43ff3f2..ac8c2b8 100644 --- a/build/_committees/1385180.md +++ b/build/_committees/1385180.md @@ -3,7 +3,7 @@ filer_id: '1385180' name: 'No on HH: No Oakland Grocery Tax, with Major Funding by American Beverage Association California PAC' candidate_controlled_id: '' -data_warning: +data_warning: title: 'No on HH: No Oakland Grocery Tax, with Major Funding by American Beverage Association California PAC' --- diff --git a/build/_committees/1385949.md b/build/_committees/1385949.md index 6793ae5..58ec850 100644 --- a/build/_committees/1385949.md +++ b/build/_committees/1385949.md @@ -2,6 +2,6 @@ filer_id: '1385949' name: 'Causa Justa :: Just Cause (nonprofit 501(c)(3))' candidate_controlled_id: '' -data_warning: +data_warning: title: 'Causa Justa :: Just Cause (nonprofit 501(c)(3))' --- diff --git a/build/_committees/1386081.md b/build/_committees/1386081.md index c51594e..d1b2d59 100644 --- a/build/_committees/1386081.md +++ b/build/_committees/1386081.md @@ -2,6 +2,6 @@ filer_id: '1386081' name: Kevin Corbett for Oakland City Council 2016, District 1 candidate_controlled_id: '' -data_warning: +data_warning: title: Kevin Corbett for Oakland City Council 2016, District 1 --- diff --git a/build/_committees/1386145.md b/build/_committees/1386145.md index 3d6fc9c..9e0fe77 100644 --- a/build/_committees/1386145.md +++ b/build/_committees/1386145.md @@ -2,6 +2,6 @@ filer_id: '1386145' name: Coalition for Police Accountability Yes on LL candidate_controlled_id: '' -data_warning: +data_warning: title: Coalition for Police Accountability Yes on LL --- diff --git a/build/_committees/1386416.md b/build/_committees/1386416.md index 7b76285..5ae0673 100644 --- a/build/_committees/1386416.md +++ b/build/_committees/1386416.md @@ -2,6 +2,6 @@ filer_id: '1386416' name: Re-Elect Jumoke Hinton Hodge for Oakland School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect Jumoke Hinton Hodge for Oakland School Board 2016 --- diff --git a/build/_committees/1386655.md b/build/_committees/1386655.md index 4a16f4b..4aa5fa0 100644 --- a/build/_committees/1386655.md +++ b/build/_committees/1386655.md @@ -3,7 +3,7 @@ filer_id: '1386655' name: Yes on E, Coalition for Healthy Trees and Safe Sidewalks, with Major Funding by Friends of the Urban Forest Committee and Mitzi Johnson candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on E, Coalition for Healthy Trees and Safe Sidewalks, with Major Funding by Friends of the Urban Forest Committee and Mitzi Johnson --- diff --git a/build/_committees/1386741.md b/build/_committees/1386741.md index c33e364..2d9a175 100644 --- a/build/_committees/1386741.md +++ b/build/_committees/1386741.md @@ -2,6 +2,6 @@ filer_id: '1386741' name: Committee to Elect Nancy Sidebotham, Councilmember At Large, 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Elect Nancy Sidebotham, Councilmember At Large, 2016 --- diff --git a/build/_committees/1386749.md b/build/_committees/1386749.md index 161a977..7579240 100644 --- a/build/_committees/1386749.md +++ b/build/_committees/1386749.md @@ -2,6 +2,6 @@ filer_id: '1386749' name: Huber Trenado for OUSD School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Huber Trenado for OUSD School Board 2016 --- diff --git a/build/_committees/1386922.md b/build/_committees/1386922.md index da6128f..ff916f7 100644 --- a/build/_committees/1386922.md +++ b/build/_committees/1386922.md @@ -2,6 +2,6 @@ filer_id: '1386922' name: Noni D. Session for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Noni D. Session for City Council 2016 --- diff --git a/build/_committees/1386929.md b/build/_committees/1386929.md index 487b310..e709387 100644 --- a/build/_committees/1386929.md +++ b/build/_committees/1386929.md @@ -2,6 +2,6 @@ filer_id: '1386929' name: Kharyshi Wiginton for School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Kharyshi Wiginton for School Board 2016 --- diff --git a/build/_committees/1386932.md b/build/_committees/1386932.md index 19865c9..6277280 100644 --- a/build/_committees/1386932.md +++ b/build/_committees/1386932.md @@ -2,6 +2,6 @@ filer_id: '1386932' name: Nehanda Imara for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Nehanda Imara for City Council 2016 --- diff --git a/build/_committees/1387128.md b/build/_committees/1387128.md index dc12741..e1042c4 100644 --- a/build/_committees/1387128.md +++ b/build/_committees/1387128.md @@ -2,6 +2,6 @@ filer_id: '1387128' name: Friends of the Urban Forest (nonprofit 501(c) (3)), Yes on E candidate_controlled_id: '' -data_warning: +data_warning: title: Friends of the Urban Forest (nonprofit 501(c) (3)), Yes on E --- diff --git a/build/_committees/1387192.md b/build/_committees/1387192.md index 5353c22..86823ab 100644 --- a/build/_committees/1387192.md +++ b/build/_committees/1387192.md @@ -2,6 +2,6 @@ filer_id: '1387192' name: Viola Gonzales for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Viola Gonzales for City Council 2016 --- diff --git a/build/_committees/1387267.md b/build/_committees/1387267.md index 4a0de1f..174643b 100644 --- a/build/_committees/1387267.md +++ b/build/_committees/1387267.md @@ -2,6 +2,6 @@ filer_id: '1387267' name: Bruce Quan for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Bruce Quan for City Council 2016 --- diff --git a/build/_committees/1387393.md b/build/_committees/1387393.md index 647beb5..5724d6a 100644 --- a/build/_committees/1387393.md +++ b/build/_committees/1387393.md @@ -3,7 +3,7 @@ filer_id: '1387393' name: Living Wage for Educators Committee with Support from United Educators of San Francisco and Major Funding from Phil Halperin candidate_controlled_id: '' -data_warning: +data_warning: title: Living Wage for Educators Committee with Support from United Educators of San Francisco and Major Funding from Phil Halperin --- diff --git a/build/_committees/1387803.md b/build/_committees/1387803.md index 568af20..2e39be0 100644 --- a/build/_committees/1387803.md +++ b/build/_committees/1387803.md @@ -2,6 +2,6 @@ filer_id: '1387803' name: Re-Elect James Harris for School Board candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect James Harris for School Board --- diff --git a/build/_committees/1387861.md b/build/_committees/1387861.md index 6a96e03..ab092e4 100644 --- a/build/_committees/1387861.md +++ b/build/_committees/1387861.md @@ -2,6 +2,6 @@ filer_id: '1387861' name: Lynette Gibson McElhaney Legal Defense Fund candidate_controlled_id: '1375179' -data_warning: +data_warning: title: Lynette Gibson McElhaney Legal Defense Fund --- diff --git a/build/_committees/1387905.md b/build/_committees/1387905.md index d63ef9c..ea60db7 100644 --- a/build/_committees/1387905.md +++ b/build/_committees/1387905.md @@ -2,6 +2,6 @@ filer_id: '1387905' name: Re-Elect Larry Reid for Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect Larry Reid for Council 2016 --- diff --git a/build/_committees/1387983.md b/build/_committees/1387983.md index eaf3241..d00b772 100644 --- a/build/_committees/1387983.md +++ b/build/_committees/1387983.md @@ -3,7 +3,7 @@ filer_id: '1387983' name: Invest in Oakland's Infrastructure and Affordable Housing -- Yes on KK, a Coalition of Business, Community Leaders and Oakland Residents candidate_controlled_id: '' -data_warning: +data_warning: title: Invest in Oakland's Infrastructure and Affordable Housing -- Yes on KK, a Coalition of Business, Community Leaders and Oakland Residents --- diff --git a/build/_committees/1388133.md b/build/_committees/1388133.md index 98fbda2..8afeca0 100644 --- a/build/_committees/1388133.md +++ b/build/_committees/1388133.md @@ -2,6 +2,6 @@ filer_id: '1388133' name: Friends of Hassid for School Board Director 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Friends of Hassid for School Board Director 2016 --- diff --git a/build/_committees/1388641.md b/build/_committees/1388641.md index b306910..91f9cc1 100644 --- a/build/_committees/1388641.md +++ b/build/_committees/1388641.md @@ -2,6 +2,6 @@ filer_id: '1388641' name: ReElect Noel Gallo for Oakland City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: ReElect Noel Gallo for Oakland City Council 2016 --- diff --git a/build/_committees/1388731.md b/build/_committees/1388731.md index 32a293e..a31aa13 100644 --- a/build/_committees/1388731.md +++ b/build/_committees/1388731.md @@ -2,6 +2,6 @@ filer_id: '1388731' name: Hodge 4 Oakland City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Hodge 4 Oakland City Council 2016 --- diff --git a/build/_committees/1389717.md b/build/_committees/1389717.md index 7e1ad2e..2de7992 100644 --- a/build/_committees/1389717.md +++ b/build/_committees/1389717.md @@ -2,6 +2,6 @@ filer_id: '1389717' name: Matt Hummel 4 the People candidate_controlled_id: '' -data_warning: +data_warning: title: Matt Hummel 4 the People --- diff --git a/build/_committees/1390351.md b/build/_committees/1390351.md index dec65ab..919446c 100644 --- a/build/_committees/1390351.md +++ b/build/_committees/1390351.md @@ -2,6 +2,6 @@ filer_id: '1390351' name: East Bay Working Families, a coalition of unions and community groups candidate_controlled_id: '' -data_warning: +data_warning: title: East Bay Working Families, a coalition of unions and community groups --- diff --git a/build/_committees/1390722.md b/build/_committees/1390722.md index f3c5957..d4bf935 100644 --- a/build/_committees/1390722.md +++ b/build/_committees/1390722.md @@ -2,6 +2,6 @@ filer_id: '1390722' name: Coalition for Immigrant Parent Empowerment, Yes on N, 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Coalition for Immigrant Parent Empowerment, Yes on N, 2016 --- diff --git a/build/_committees/1391606.md b/build/_committees/1391606.md index 3684d9d..6fca1ae 100644 --- a/build/_committees/1391606.md +++ b/build/_committees/1391606.md @@ -3,7 +3,7 @@ filer_id: '1391606' name: Coalition to Improve Oakland Government - NO on Measure KK sponsored by Oakland small business and property owners, home owners and renters candidate_controlled_id: '' -data_warning: +data_warning: title: Coalition to Improve Oakland Government - NO on Measure KK sponsored by Oakland small business and property owners, home owners and renters --- diff --git a/build/_committees/1391632.md b/build/_committees/1391632.md index eabee81..a5812ea 100644 --- a/build/_committees/1391632.md +++ b/build/_committees/1391632.md @@ -2,6 +2,6 @@ filer_id: '1391632' name: YES ON G1, SPONSORED BY GO PUBLIC SCHOOLS ADVOCATES candidate_controlled_id: '' -data_warning: +data_warning: title: YES ON G1, SPONSORED BY GO PUBLIC SCHOOLS ADVOCATES --- diff --git a/build/_committees/1392132.md b/build/_committees/1392132.md index 6a9e120..8804b0f 100644 --- a/build/_committees/1392132.md +++ b/build/_committees/1392132.md @@ -3,7 +3,7 @@ filer_id: '1392132' name: YERBA BUENA NEIGHBORHOOD CONSORTIUM LLC, A 501C3 STATUS NONPROFIT ORGANIZAITON, SPONSORED BY TENANTS AND OWNERS DEVELOPMENT CORP. (MULTIPURPOSE ORGANIZATION) candidate_controlled_id: '' -data_warning: +data_warning: title: YERBA BUENA NEIGHBORHOOD CONSORTIUM LLC, A 501C3 STATUS NONPROFIT ORGANIZAITON, SPONSORED BY TENANTS AND OWNERS DEVELOPMENT CORP. (MULTIPURPOSE ORGANIZATION) --- diff --git a/build/_committees/1392842.md b/build/_committees/1392842.md index b28fbdf..2c9a86a 100644 --- a/build/_committees/1392842.md +++ b/build/_committees/1392842.md @@ -2,6 +2,6 @@ filer_id: '1392842' name: Kate Harrison for Berkeley Council 2017 candidate_controlled_id: '' -data_warning: +data_warning: title: Kate Harrison for Berkeley Council 2017 --- diff --git a/build/_committees/1395306.md b/build/_committees/1395306.md index e550508..e4c3a2a 100644 --- a/build/_committees/1395306.md +++ b/build/_committees/1395306.md @@ -2,6 +2,6 @@ filer_id: '1395306' name: JEFF SHEEHY FOR SUPERVISOR JUNE 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: JEFF SHEEHY FOR SUPERVISOR JUNE 2018 --- diff --git a/build/_committees/1395580.md b/build/_committees/1395580.md index 153ae31..382ffdc 100644 --- a/build/_committees/1395580.md +++ b/build/_committees/1395580.md @@ -2,6 +2,6 @@ filer_id: '1395580' name: Abel Guillen for City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Abel Guillen for City Council 2018 --- diff --git a/build/_committees/1395947.md b/build/_committees/1395947.md index 506f3ba..ec3cd23 100644 --- a/build/_committees/1395947.md +++ b/build/_committees/1395947.md @@ -2,6 +2,6 @@ filer_id: '1395947' name: Rafael Mandelman for Supervisor 2018 Primary candidate_controlled_id: '' -data_warning: +data_warning: title: Rafael Mandelman for Supervisor 2018 Primary --- diff --git a/build/_committees/1395968.md b/build/_committees/1395968.md index f6b71a1..6629651 100644 --- a/build/_committees/1395968.md +++ b/build/_committees/1395968.md @@ -2,6 +2,6 @@ filer_id: '1395968' name: Libby Schaaf for Mayor 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Libby Schaaf for Mayor 2018 --- diff --git a/build/_committees/1396338.md b/build/_committees/1396338.md index 48d57dc..b50235f 100644 --- a/build/_committees/1396338.md +++ b/build/_committees/1396338.md @@ -2,6 +2,6 @@ filer_id: '1396338' name: Mark Leno for Mayor 2019 candidate_controlled_id: '' -data_warning: +data_warning: title: Mark Leno for Mayor 2019 --- diff --git a/build/_committees/1397586.md b/build/_committees/1397586.md index 7281b6c..04ee114 100644 --- a/build/_committees/1397586.md +++ b/build/_committees/1397586.md @@ -2,6 +2,6 @@ filer_id: '1397586' name: NO ON PROP E - STOP THE PROHIBITION PROPOSITION candidate_controlled_id: '' -data_warning: +data_warning: title: NO ON PROP E - STOP THE PROHIBITION PROPOSITION --- diff --git a/build/_committees/1398097.md b/build/_committees/1398097.md index bbef53d..7c0adcf 100644 --- a/build/_committees/1398097.md +++ b/build/_committees/1398097.md @@ -2,6 +2,6 @@ filer_id: '1398097' name: Committee for Alameda County Child Care & Early Education candidate_controlled_id: '' -data_warning: +data_warning: title: Committee for Alameda County Child Care & Early Education --- diff --git a/build/_committees/1398329.md b/build/_committees/1398329.md index ee9ab99..5ba3d7e 100644 --- a/build/_committees/1398329.md +++ b/build/_committees/1398329.md @@ -3,7 +3,7 @@ filer_id: '1398329' name: YES ON REGIONAL MEASURE 3-KEEP THE BAY AREA MOVING, SPONSORED BY BAY AREA CIVIC LEADERSHIP ASSOCIATIONS candidate_controlled_id: '' -data_warning: +data_warning: title: YES ON REGIONAL MEASURE 3-KEEP THE BAY AREA MOVING, SPONSORED BY BAY AREA CIVIC LEADERSHIP ASSOCIATIONS --- diff --git a/build/_committees/1398847.md b/build/_committees/1398847.md index 20c222d..45bd0ec 100644 --- a/build/_committees/1398847.md +++ b/build/_committees/1398847.md @@ -2,6 +2,6 @@ filer_id: '1398847' name: Yes on Proposition E San Francisco Kids vs. Big Tobacco candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on Proposition E San Francisco Kids vs. Big Tobacco --- diff --git a/build/_committees/1400325.md b/build/_committees/1400325.md index 642666a..31f87ec 100644 --- a/build/_committees/1400325.md +++ b/build/_committees/1400325.md @@ -2,6 +2,6 @@ filer_id: '1400325' name: Nikki Fortunato Bas for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Nikki Fortunato Bas for Oakland City Council 2018 --- diff --git a/build/_committees/1400467.md b/build/_committees/1400467.md index 67bebe3..1e7cec5 100644 --- a/build/_committees/1400467.md +++ b/build/_committees/1400467.md @@ -2,6 +2,6 @@ filer_id: '1400467' name: Protect Oakland Libraries - Yes on D 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Protect Oakland Libraries - Yes on D 2018 --- diff --git a/build/_committees/1400769.md b/build/_committees/1400769.md index 8c822d2..b825eb9 100644 --- a/build/_committees/1400769.md +++ b/build/_committees/1400769.md @@ -2,6 +2,6 @@ filer_id: '1400769' name: Alfred Twu for Berkeley City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Alfred Twu for Berkeley City Council 2018 --- diff --git a/build/_committees/1400773.md b/build/_committees/1400773.md index 9adf3fb..f21bf04 100644 --- a/build/_committees/1400773.md +++ b/build/_committees/1400773.md @@ -3,7 +3,7 @@ filer_id: '1400773' name: Yes on H, Safe Neighborhoods for All, sponsored by the SF Community Alliance for Jobs and Housing and the San Francisco Police Officers Association candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on H, Safe Neighborhoods for All, sponsored by the SF Community Alliance for Jobs and Housing and the San Francisco Police Officers Association --- diff --git a/build/_committees/1400832.md b/build/_committees/1400832.md index 6a2a478..7ebaa45 100644 --- a/build/_committees/1400832.md +++ b/build/_committees/1400832.md @@ -2,6 +2,6 @@ filer_id: '1400832' name: Jane Kim for Mayor 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Jane Kim for Mayor 2018 --- diff --git a/build/_committees/1400908.md b/build/_committees/1400908.md index fe2b187..63d9026 100644 --- a/build/_committees/1400908.md +++ b/build/_committees/1400908.md @@ -2,6 +2,6 @@ filer_id: '1400908' name: East Bay Community Foundation (nonprofit 501(c)(3)) candidate_controlled_id: '' -data_warning: +data_warning: title: East Bay Community Foundation (nonprofit 501(c)(3)) --- diff --git a/build/_committees/1401499.md b/build/_committees/1401499.md index 04a2eca..9b87ff6 100644 --- a/build/_committees/1401499.md +++ b/build/_committees/1401499.md @@ -2,6 +2,6 @@ filer_id: '1401499' name: Loren Taylor for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Loren Taylor for Oakland City Council 2018 --- diff --git a/build/_committees/1401516.md b/build/_committees/1401516.md index 41100c0..6c12a7e 100644 --- a/build/_committees/1401516.md +++ b/build/_committees/1401516.md @@ -3,7 +3,7 @@ filer_id: '1401516' name: CALIFORNIANS FOR RESPONSIBLE HOUSING, SPONSORED BY THE CALIFORNIA APARTMENT ASSOCIATION candidate_controlled_id: '' -data_warning: +data_warning: title: CALIFORNIANS FOR RESPONSIBLE HOUSING, SPONSORED BY THE CALIFORNIA APARTMENT ASSOCIATION --- diff --git a/build/_committees/1401571.md b/build/_committees/1401571.md index e6d647e..cd26ae5 100644 --- a/build/_committees/1401571.md +++ b/build/_committees/1401571.md @@ -2,6 +2,6 @@ filer_id: '1401571' name: UNIVERSAL CHILDCARE IN SAN FRANCISCO candidate_controlled_id: '' -data_warning: +data_warning: title: UNIVERSAL CHILDCARE IN SAN FRANCISCO --- diff --git a/build/_committees/1401632.md b/build/_committees/1401632.md index b1b5f40..1d4f657 100644 --- a/build/_committees/1401632.md +++ b/build/_committees/1401632.md @@ -2,6 +2,6 @@ filer_id: '1401632' name: Clean, Safe & Affordable Energy candidate_controlled_id: '' -data_warning: +data_warning: title: Clean, Safe & Affordable Energy --- diff --git a/build/_committees/1401694.md b/build/_committees/1401694.md index 0175b05..744bfe5 100644 --- a/build/_committees/1401694.md +++ b/build/_committees/1401694.md @@ -2,6 +2,6 @@ filer_id: '1401694' name: Saied Karamooz for Oakland Mayor 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Saied Karamooz for Oakland Mayor 2018 --- diff --git a/build/_committees/1401958.md b/build/_committees/1401958.md index 08f04eb..74a4c88 100644 --- a/build/_committees/1401958.md +++ b/build/_committees/1401958.md @@ -2,6 +2,6 @@ filer_id: '1401958' name: It's Our Time, Supporting Stephanie Dominguez Walton for City Council 2020 candidate_controlled_id: '' -data_warning: +data_warning: title: It's Our Time, Supporting Stephanie Dominguez Walton for City Council 2020 --- diff --git a/build/_committees/1402139.md b/build/_committees/1402139.md index e12d2cd..8d40adb 100644 --- a/build/_committees/1402139.md +++ b/build/_committees/1402139.md @@ -2,6 +2,6 @@ filer_id: '1402139' name: Citizens Against Nuclear Weapons candidate_controlled_id: '' -data_warning: +data_warning: title: Citizens Against Nuclear Weapons --- diff --git a/build/_committees/1402425.md b/build/_committees/1402425.md index f42cd24..a9eda84 100644 --- a/build/_committees/1402425.md +++ b/build/_committees/1402425.md @@ -2,6 +2,6 @@ filer_id: '1402425' name: Affordable Housing for All, Yes on D candidate_controlled_id: '' -data_warning: +data_warning: title: Affordable Housing for All, Yes on D --- diff --git a/build/_committees/1402995.md b/build/_committees/1402995.md index bb80d98..907d7aa 100644 --- a/build/_committees/1402995.md +++ b/build/_committees/1402995.md @@ -2,6 +2,6 @@ filer_id: '1402995' name: SAN FRANCISCO COMMUNITY ALLIANCE FOR JOBS & HOUSING PAC candidate_controlled_id: '' -data_warning: +data_warning: title: SAN FRANCISCO COMMUNITY ALLIANCE FOR JOBS & HOUSING PAC --- diff --git a/build/_committees/1403124.md b/build/_committees/1403124.md index b74ffd9..7e8ab0d 100644 --- a/build/_committees/1403124.md +++ b/build/_committees/1403124.md @@ -2,6 +2,6 @@ filer_id: '1403124' name: Natasha Middleton for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Natasha Middleton for Oakland City Council 2018 --- diff --git a/build/_committees/1403165.md b/build/_committees/1403165.md index 4c04c48..7bf7af9 100644 --- a/build/_committees/1403165.md +++ b/build/_committees/1403165.md @@ -3,7 +3,7 @@ filer_id: '1403165' name: 'Time''s Up Oakland: Yes on Measure Z Committee for Fair Workplaces & Ending Sexual Assault on the Job' candidate_controlled_id: '' -data_warning: +data_warning: title: 'Time''s Up Oakland: Yes on Measure Z Committee for Fair Workplaces & Ending Sexual Assault on the Job' --- diff --git a/build/_committees/1403436.md b/build/_committees/1403436.md index ab6d4df..2644888 100644 --- a/build/_committees/1403436.md +++ b/build/_committees/1403436.md @@ -2,6 +2,6 @@ filer_id: '1403436' name: Marchon Tatmon Mayor for Oakland 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Marchon Tatmon Mayor for Oakland 2018 --- diff --git a/build/_committees/1403502.md b/build/_committees/1403502.md index b3152bc..0521fe5 100644 --- a/build/_committees/1403502.md +++ b/build/_committees/1403502.md @@ -3,7 +3,7 @@ filer_id: '1403502' name: Berkeley Community for Police Oversight Committee Supporting Police Commission Oversight Charter Amendment candidate_controlled_id: '' -data_warning: +data_warning: title: Berkeley Community for Police Oversight Committee Supporting Police Commission Oversight Charter Amendment --- diff --git a/build/_committees/1403762.md b/build/_committees/1403762.md index 07aa71b..86114da 100644 --- a/build/_committees/1403762.md +++ b/build/_committees/1403762.md @@ -2,6 +2,6 @@ filer_id: '1403762' name: Brenda Roberts for Oakland City Auditor 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Brenda Roberts for Oakland City Auditor 2018 --- diff --git a/build/_committees/1404060.md b/build/_committees/1404060.md index 93c718a..ea4e577 100644 --- a/build/_committees/1404060.md +++ b/build/_committees/1404060.md @@ -2,6 +2,6 @@ filer_id: '1404060' name: COMMITTEE FOR AN AFFORDABLE SAN FRANCISCO, NO ON PROPOSITIONS C AND D candidate_controlled_id: '' -data_warning: +data_warning: title: COMMITTEE FOR AN AFFORDABLE SAN FRANCISCO, NO ON PROPOSITIONS C AND D --- diff --git a/build/_committees/1404085.md b/build/_committees/1404085.md index 90ea5b7..d210506 100644 --- a/build/_committees/1404085.md +++ b/build/_committees/1404085.md @@ -2,6 +2,6 @@ filer_id: '1404085' name: Doutherd for School Board 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Doutherd for School Board 2018 --- diff --git a/build/_committees/1404347.md b/build/_committees/1404347.md index cfc8d53..cee6dd0 100644 --- a/build/_committees/1404347.md +++ b/build/_committees/1404347.md @@ -2,6 +2,6 @@ filer_id: '1404347' name: Gonzales for School Board 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Gonzales for School Board 2018 --- diff --git a/build/_committees/1404405.md b/build/_committees/1404405.md index 2aaec9f..5b57893 100644 --- a/build/_committees/1404405.md +++ b/build/_committees/1404405.md @@ -2,6 +2,6 @@ filer_id: '1404405' name: GO PUBLIC SCHOOLS CALIFORNIA, SPONSORED BY GO PUBLIC SCHOOLS ADVOCATE candidate_controlled_id: '' -data_warning: +data_warning: title: GO PUBLIC SCHOOLS CALIFORNIA, SPONSORED BY GO PUBLIC SCHOOLS ADVOCATE --- diff --git a/build/_committees/1404416.md b/build/_committees/1404416.md index 6e11619..abb727c 100644 --- a/build/_committees/1404416.md +++ b/build/_committees/1404416.md @@ -2,6 +2,6 @@ filer_id: '1404416' name: Marlo Rodriguez for City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Marlo Rodriguez for City Council 2018 --- diff --git a/build/_committees/1404992.md b/build/_committees/1404992.md index 72a5ae7..709087c 100644 --- a/build/_committees/1404992.md +++ b/build/_committees/1404992.md @@ -2,6 +2,6 @@ filer_id: '1404992' name: Ebony S Edgerson for Oakland School Board District 6 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Ebony S Edgerson for Oakland School Board District 6 2018 --- diff --git a/build/_committees/1405137.md b/build/_committees/1405137.md index 1a4d134..4ff66b0 100644 --- a/build/_committees/1405137.md +++ b/build/_committees/1405137.md @@ -2,6 +2,6 @@ filer_id: '1405137' name: SOMA HOTEL, LLC candidate_controlled_id: '' -data_warning: +data_warning: title: SOMA HOTEL, LLC --- diff --git a/build/_committees/1405187.md b/build/_committees/1405187.md index 8b973ea..24a76f5 100644 --- a/build/_committees/1405187.md +++ b/build/_committees/1405187.md @@ -2,6 +2,6 @@ filer_id: '1405187' name: Nayeli Maxson for Oakland City Council candidate_controlled_id: '' -data_warning: +data_warning: title: Nayeli Maxson for Oakland City Council --- diff --git a/build/_committees/1405266.md b/build/_committees/1405266.md index 1618025..d6085dd 100644 --- a/build/_committees/1405266.md +++ b/build/_committees/1405266.md @@ -2,6 +2,6 @@ filer_id: '1405266' name: Whitaker for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Whitaker for Oakland City Council 2018 --- diff --git a/build/_committees/1405422.md b/build/_committees/1405422.md index d89ab2e..e1e83bf 100644 --- a/build/_committees/1405422.md +++ b/build/_committees/1405422.md @@ -2,6 +2,6 @@ filer_id: '1405422' name: Pamela Harris for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Pamela Harris for Oakland City Council 2018 --- diff --git a/build/_committees/1405456.md b/build/_committees/1405456.md index 20e24cc..488d0bc 100644 --- a/build/_committees/1405456.md +++ b/build/_committees/1405456.md @@ -2,6 +2,6 @@ filer_id: '1405456' name: Sheng Thao for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Sheng Thao for Oakland City Council 2018 --- diff --git a/build/_committees/1405474.md b/build/_committees/1405474.md index 8c21465..f840594 100644 --- a/build/_committees/1405474.md +++ b/build/_committees/1405474.md @@ -2,6 +2,6 @@ filer_id: '1405474' name: Sheilagh Polk "Cat Brooks" for Mayor 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Sheilagh Polk "Cat Brooks" for Mayor 2018 --- diff --git a/build/_committees/1405491.md b/build/_committees/1405491.md index 3696634..f2c7370 100644 --- a/build/_committees/1405491.md +++ b/build/_committees/1405491.md @@ -2,6 +2,6 @@ filer_id: '1405491' name: East Bay Alliance for a Sustainable Economy (EBASE) nonprofit 501(c)(3) candidate_controlled_id: '' -data_warning: +data_warning: title: East Bay Alliance for a Sustainable Economy (EBASE) nonprofit 501(c)(3) --- diff --git a/build/_committees/1405565.md b/build/_committees/1405565.md index 8bfa459..fda6d4c 100644 --- a/build/_committees/1405565.md +++ b/build/_committees/1405565.md @@ -2,6 +2,6 @@ filer_id: '1405565' name: Chris Young for City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Chris Young for City Council 2018 --- diff --git a/build/_committees/1406153.md b/build/_committees/1406153.md index 2d1d02a.. ```
mikeubell commented 6 months ago
Build diff from Commit 2e4c9604a5ffb3f42701a5572dabb8c5769cb0ed: ```diff diff --git a/build/_data/committees/1342695.json b/build/_data/committees/1342695.json index 05a5948..b3a7490 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,7 +39,7 @@ "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", @@ -55,7 +55,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, @@ -65,10 +65,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, @@ -78,7 +78,7 @@ "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", @@ -94,7 +94,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", @@ -104,10 +104,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", @@ -117,10 +117,10 @@ "Tran_NamF": "Louise", "Tran_NamL": "Parker", "Tran_Zip4": "94703-1830", - "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": "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", @@ -172,7 +172,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, @@ -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, 2016 Election", + "title": "Oakland November 3rd, 2020 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-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -250,7 +250,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", @@ -260,10 +260,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 8th, 2022 General 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-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": "Retired", @@ -286,7 +286,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", @@ -302,7 +302,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", @@ -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, 2016 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-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, @@ -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, 2022 General Election", + "title": "Oakland November 8th, 2016 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-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, @@ -364,10 +364,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": null, @@ -377,7 +377,7 @@ "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", @@ -406,7 +406,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": "Elementay School Teacher (Retired)", @@ -416,10 +416,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "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": "Elementay School Teacher (Retired)", @@ -429,10 +429,10 @@ "Tran_NamF": "Diane", "Tran_NamL": "Henry", "Tran_Zip4": "94610", - "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": "Elementay School Teacher (Retired)", @@ -442,10 +442,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)", @@ -455,10 +455,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 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, 2022 General Election", + "title": "Oakland November 3rd, 2020 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-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, @@ -494,10 +494,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, @@ -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", @@ -549,7 +549,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 - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -559,7 +559,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -575,7 +575,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 - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -585,7 +585,7 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "Tran_Zip4": "94611", - "election_name": "oakland-2022" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -601,7 +601,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", @@ -611,10 +611,10 @@ "Tran_NamF": "David", "Tran_NamL": "Bruck", "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 - Bruck", "Tran_Occ": "Real Estate Programming Manager", @@ -624,10 +624,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": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -637,7 +637,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", @@ -653,7 +653,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", @@ -663,10 +663,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", @@ -676,10 +676,10 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "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": "Belair Apartments, LLC", "Tran_Occ": "Owner/Manager", @@ -689,7 +689,7 @@ "Tran_NamF": "Robert", "Tran_NamL": "Zolly", "Tran_Zip4": "94619", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -705,7 +705,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", @@ -715,10 +715,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "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", @@ -728,10 +728,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", @@ -741,10 +741,10 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "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": "Retired", @@ -754,7 +754,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -770,7 +770,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", @@ -780,7 +780,7 @@ "Tran_NamF": "Bruce", "Tran_NamL": "Whipperman", "Tran_Zip4": "94705", - "election_name": "oakland-2022" + "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,10 +819,10 @@ "Tran_NamF": "Ronald", "Tran_NamL": "Stansbury", "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": "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-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", @@ -845,7 +845,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", @@ -861,7 +861,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, @@ -871,10 +871,10 @@ "Tran_NamF": null, "Tran_NamL": "Bay Cliff Apartments", "Tran_Zip4": "94806", - "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, @@ -884,10 +884,10 @@ "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", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -897,7 +897,7 @@ "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", @@ -939,7 +939,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, @@ -949,10 +949,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 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -962,7 +962,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -978,7 +978,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, @@ -988,10 +988,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 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1001,7 +1001,7 @@ "Tran_NamF": null, "Tran_NamL": "J & R Associates", "Tran_Zip4": "94609", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1030,7 +1030,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, @@ -1040,10 +1040,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 8th, 2016 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-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1134,7 +1134,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, @@ -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-2020" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1157,10 +1157,10 @@ "Tran_NamF": null, "Tran_NamL": "South Shore Beach and Tennis Club/Prometh", "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, @@ -1170,10 +1170,10 @@ "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", + "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-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1199,7 +1199,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", @@ -1209,7 +1209,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", @@ -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", @@ -1303,7 +1303,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", @@ -1313,10 +1313,10 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "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", @@ -1326,7 +1326,7 @@ "Tran_NamF": "James", "Tran_NamL": "Harcourt", "Tran_Zip4": "94611-1546", - "election_name": "oakland-2022" + "election_name": "oakland-2016" }, { "title": "Oakland November 8th, 2022 General Election", @@ -1342,7 +1342,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, @@ -1352,10 +1352,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, @@ -1365,7 +1365,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-2022" }, { - "title": "Oakland November 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 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-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, @@ -1404,7 +1404,7 @@ "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", @@ -1420,7 +1420,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, @@ -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 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1443,10 +1443,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "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, @@ -1456,10 +1456,10 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "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, @@ -1469,7 +1469,7 @@ "Tran_NamF": null, "Tran_NamL": "Palmview Apartments", "Tran_Zip4": "94563", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1485,7 +1485,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, @@ -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 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1508,7 +1508,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", @@ -1563,7 +1563,7 @@ "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", @@ -1573,10 +1573,10 @@ "Tran_NamF": null, "Tran_NamL": "Sorensen, Eric", "Tran_Zip4": "94611-2639", - "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": "Cassidy Turley", "Tran_Occ": "Associate Vice President", @@ -1586,7 +1586,7 @@ "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", @@ -1615,7 +1615,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", @@ -1625,10 +1625,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", @@ -1638,7 +1638,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", @@ -1654,7 +1654,7 @@ "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 8th, 2022 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-2022" + "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", @@ -1690,7 +1690,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", @@ -1706,7 +1706,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 - 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, 2022 General 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-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, @@ -1742,7 +1742,7 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1758,7 +1758,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, @@ -1768,7 +1768,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", @@ -1784,7 +1784,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, @@ -1794,10 +1794,10 @@ "Tran_NamF": null, "Tran_NamL": "Rowland Property Management", "Tran_Zip4": "94611", - "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, @@ -1807,7 +1807,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2020" + "election_name": "oakland-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -1823,7 +1823,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, @@ -1833,10 +1833,10 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "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, @@ -1846,10 +1846,10 @@ "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", + "title": "Oakland November 8th, 2022 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-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, @@ -1872,7 +1872,7 @@ "Tran_NamF": null, "Tran_NamL": "Highland Property Group, LLC", "Tran_Zip4": "94708", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -1914,7 +1914,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, @@ -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 3rd, 2020 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -1963,7 +1963,7 @@ "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", @@ -1979,7 +1979,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, @@ -1989,7 +1989,7 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "election_name": "oakland-2016" + "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", @@ -2005,7 +2005,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, @@ -2015,10 +2015,10 @@ "Tran_NamF": null, "Tran_NamL": "S&H Properties", "Tran_Zip4": "94611-4131", - "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, @@ -2028,10 +2028,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, 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, 2016 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-2016" + "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", @@ -2093,10 +2093,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "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": "Bitzer Realty", "Tran_Occ": "Owner", @@ -2106,10 +2106,10 @@ "Tran_NamF": "Mark", "Tran_NamL": "Bitzer", "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, @@ -2119,10 +2119,10 @@ "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", + "title": "Oakland November 8th, 2022 General 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-2022" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2145,10 +2145,10 @@ "Tran_NamF": null, "Tran_NamL": "Martinez Real Estate Inv.", "Tran_Zip4": "94502", - "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, @@ -2158,7 +2158,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", @@ -2174,7 +2174,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, @@ -2184,10 +2184,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, 2022 General Election", + "title": "Oakland November 3rd, 2020 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-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", @@ -2210,10 +2210,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", @@ -2223,10 +2223,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", @@ -2236,10 +2236,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", @@ -2249,10 +2249,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", @@ -2262,10 +2262,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": null, "Tran_Occ": null, @@ -2275,7 +2275,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", @@ -2291,7 +2291,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, @@ -2301,10 +2301,10 @@ "Tran_NamF": null, "Tran_NamL": "DiMaggio Investment Co.", "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, @@ -2314,10 +2314,10 @@ "Tran_NamF": null, "Tran_NamL": "Pacific Coast Real Estate", "Tran_Zip4": "94502-6505", - "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, @@ -2327,7 +2327,7 @@ "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, 2022 General Election", @@ -2343,7 +2343,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, @@ -2353,10 +2353,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 3rd, 2020 General Election", + "title": "Oakland November 8th, 2022 General Election", "Filer_ID": "1342695", "Tran_Emp": null, "Tran_Occ": null, @@ -2366,7 +2366,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", @@ -2382,7 +2382,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 - Selby", "Tran_Occ": "Property Manager", @@ -2392,10 +2392,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, 2022 General 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-2022" }, { "title": "Oakland November 8th, 2016 Election", @@ -2421,7 +2421,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 - Selby", "Tran_Occ": "Property Manager", @@ -2431,10 +2431,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "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", @@ -2444,10 +2444,10 @@ "Tran_NamF": "Loren", "Tran_NamL": "Selby", "Tran_Zip4": "94602", - "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 - 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 8th, 2016 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-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, @@ -2483,10 +2483,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, 2022 General 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-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, @@ -2509,7 +2509,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", @@ -2525,7 +2525,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, @@ -2535,10 +2535,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": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2548,7 +2548,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", @@ -2564,7 +2564,7 @@ "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", @@ -2574,10 +2574,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "Tran_Zip4": "94611", - "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": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2587,10 +2587,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "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": "Merker Realty Group", "Tran_Occ": "Realtor", @@ -2600,10 +2600,10 @@ "Tran_NamF": "Rob", "Tran_NamL": "Merker", "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": "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 3rd, 2020 General Election", @@ -2629,7 +2629,7 @@ "election_name": "oakland-2020" }, { - "title": "Oakland November 8th, 2022 General Election", + "title": "Oakland November 8th, 2016 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-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", @@ -2652,10 +2652,10 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "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": "Self - Cox", "Tran_Occ": "Property Owner", @@ -2665,10 +2665,10 @@ "Tran_NamF": "Dennis", "Tran_NamL": "Cox", "Tran_Zip4": "94606", - "election_name": "oakland-2020" + "election_name": "oakland-2016" }, { - "title": "Oakland November 8th, 2016 Election", + "title": "Oakland November 3rd, 2020 General Election", ```
mikeubell commented 6 months ago
Build diff from Commit 794d9345f9e74285582534bf3273705ad9255ba5: ```diff diff --git a/build/_committees/.md b/build/_committees/.md index 5971f16..2d96965 100644 --- a/build/_committees/.md +++ b/build/_committees/.md @@ -2,6 +2,6 @@ filer_id: '' name: No committee registered candidate_controlled_id: '' -data_warning: +data_warning: title: No committee registered --- diff --git a/build/_committees/1229791.md b/build/_committees/1229791.md index b71f0b5..308b89e 100644 --- a/build/_committees/1229791.md +++ b/build/_committees/1229791.md @@ -2,6 +2,6 @@ filer_id: '1229791' name: EMERALD FUND, INC. candidate_controlled_id: '' -data_warning: +data_warning: title: EMERALD FUND, INC. --- diff --git a/build/_committees/1236617.md b/build/_committees/1236617.md index 99e13cf..c5c3bda 100644 --- a/build/_committees/1236617.md +++ b/build/_committees/1236617.md @@ -2,6 +2,6 @@ filer_id: '1236617' name: Desley Brooks for City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Desley Brooks for City Council 2018 --- diff --git a/build/_committees/1250247.md b/build/_committees/1250247.md index 1777153..cb33a88 100644 --- a/build/_committees/1250247.md +++ b/build/_committees/1250247.md @@ -2,6 +2,6 @@ filer_id: '1250247' name: SAN FRANCISCO ASSOCIATION OF REALTORS candidate_controlled_id: '' -data_warning: +data_warning: title: SAN FRANCISCO ASSOCIATION OF REALTORS --- diff --git a/build/_committees/1253609.md b/build/_committees/1253609.md index 810aa11..6096db1 100644 --- a/build/_committees/1253609.md +++ b/build/_committees/1253609.md @@ -2,6 +2,6 @@ filer_id: '1253609' name: OUTFRONT MEDIA LLC candidate_controlled_id: '' -data_warning: +data_warning: title: OUTFRONT MEDIA LLC --- diff --git a/build/_committees/1256357.md b/build/_committees/1256357.md index 6da498d..eee02a9 100644 --- a/build/_committees/1256357.md +++ b/build/_committees/1256357.md @@ -2,6 +2,6 @@ filer_id: '1256357' name: Re-Elect Larry Reid 2008 candidate_controlled_id: '1387905' -data_warning: +data_warning: title: Re-Elect Larry Reid 2008 --- diff --git a/build/_committees/1273532.md b/build/_committees/1273532.md index a3765ea..160dadd 100644 --- a/build/_committees/1273532.md +++ b/build/_committees/1273532.md @@ -2,6 +2,6 @@ filer_id: '1273532' name: International Brotherhood of Electrical Workers Local 595 PAC candidate_controlled_id: '' -data_warning: +data_warning: title: International Brotherhood of Electrical Workers Local 595 PAC --- diff --git a/build/_committees/1277578.md b/build/_committees/1277578.md index 9cb78ad..db06920 100644 --- a/build/_committees/1277578.md +++ b/build/_committees/1277578.md @@ -2,6 +2,6 @@ filer_id: '1277578' name: Committee to Elect Chris Dobbins to Oakland School Board District 6 candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Elect Chris Dobbins to Oakland School Board District 6 --- diff --git a/build/_committees/1284523.md b/build/_committees/1284523.md index ffad6d8..eb64bf7 100644 --- a/build/_committees/1284523.md +++ b/build/_committees/1284523.md @@ -1,7 +1,7 @@ --- filer_id: '1284523' -name: ALAMEDA LABOR COUNCIL, AFL-CIO SOLIDARITY PAC +name: Alameda Labor Council, AFL-CIO Solidarity PAC candidate_controlled_id: '' -data_warning: -title: ALAMEDA LABOR COUNCIL, AFL-CIO SOLIDARITY PAC +data_warning: +title: Alameda Labor Council, AFL-CIO Solidarity PAC --- diff --git a/build/_committees/1294190.md b/build/_committees/1294190.md index 0b910db..7a2673f 100644 --- a/build/_committees/1294190.md +++ b/build/_committees/1294190.md @@ -1,7 +1,7 @@ --- filer_id: '1294190' -name: Unity PAC, a sponsored committee of the Alameda Labor Council, AFL-CIO +name: Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO candidate_controlled_id: '' -data_warning: -title: Unity PAC, a sponsored committee of the Alameda Labor Council, AFL-CIO +data_warning: +title: Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO --- diff --git a/build/_committees/1295554.md b/build/_committees/1295554.md index 2499257..2a40efb 100644 --- a/build/_committees/1295554.md +++ b/build/_committees/1295554.md @@ -2,6 +2,6 @@ filer_id: '1295554' name: NIBBI BROTHERS ASSOCIATES candidate_controlled_id: '' -data_warning: +data_warning: title: NIBBI BROTHERS ASSOCIATES --- diff --git a/build/_committees/1296947.md b/build/_committees/1296947.md index f2a7d9f..477fe19 100644 --- a/build/_committees/1296947.md +++ b/build/_committees/1296947.md @@ -2,6 +2,6 @@ filer_id: '1296947' name: Service Employees International Union Local 1021 Issues PAC candidate_controlled_id: '' -data_warning: +data_warning: title: Service Employees International Union Local 1021 Issues PAC --- diff --git a/build/_committees/1302433.md b/build/_committees/1302433.md index c9e9881..f68e8e7 100644 --- a/build/_committees/1302433.md +++ b/build/_committees/1302433.md @@ -3,7 +3,7 @@ filer_id: '1302433' name: Charter Public Schools Political Action Committee, sponsored by California Charter Schools Association Advocates candidate_controlled_id: '' -data_warning: +data_warning: title: Charter Public Schools Political Action Committee, sponsored by California Charter Schools Association Advocates --- diff --git a/build/_committees/1303019.md b/build/_committees/1303019.md index e5c7c5c..d4a11ba 100644 --- a/build/_committees/1303019.md +++ b/build/_committees/1303019.md @@ -2,6 +2,6 @@ filer_id: '1303019' name: Friends of Jody London for Oakland School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Friends of Jody London for Oakland School Board 2016 --- diff --git a/build/_committees/1303541.md b/build/_committees/1303541.md index af39bf9..77035e0 100644 --- a/build/_committees/1303541.md +++ b/build/_committees/1303541.md @@ -2,6 +2,6 @@ filer_id: '1303541' name: Kaplan For Oakland candidate_controlled_id: '1406223' -data_warning: +data_warning: title: Kaplan For Oakland --- diff --git a/build/_committees/1304073.md b/build/_committees/1304073.md index 6890279..b8fde37 100644 --- a/build/_committees/1304073.md +++ b/build/_committees/1304073.md @@ -2,6 +2,6 @@ filer_id: '1304073' name: Re-Elect Jumoke Hinton Hodge for Oakland School Board 2012 candidate_controlled_id: '1386416' -data_warning: +data_warning: title: Re-Elect Jumoke Hinton Hodge for Oakland School Board 2012 --- diff --git a/build/_committees/1307016.md b/build/_committees/1307016.md index b4f4396..5b3a89d 100644 --- a/build/_committees/1307016.md +++ b/build/_committees/1307016.md @@ -2,6 +2,6 @@ filer_id: '1307016' name: Oakland Jobs PAC candidate_controlled_id: '' -data_warning: +data_warning: title: Oakland Jobs PAC --- diff --git a/build/_committees/1310647.md b/build/_committees/1310647.md index 63c23ea..7ac5255 100644 --- a/build/_committees/1310647.md +++ b/build/_committees/1310647.md @@ -1,7 +1,7 @@ --- filer_id: '1310647' -name: The Oakland Fund for Measure AA +name: The Oakland Fund candidate_controlled_id: '' -data_warning: -title: The Oakland Fund for Measure AA +data_warning: +title: The Oakland Fund --- diff --git a/build/_committees/1324270.md b/build/_committees/1324270.md index 8c1e191..2334b89 100644 --- a/build/_committees/1324270.md +++ b/build/_committees/1324270.md @@ -2,6 +2,6 @@ filer_id: '1324270' name: Libby Schaaf For Council 2010 candidate_controlled_id: '1395968' -data_warning: +data_warning: title: Libby Schaaf For Council 2010 --- diff --git a/build/_committees/1326919.md b/build/_committees/1326919.md index 9588a21..84f0f70 100644 --- a/build/_committees/1326919.md +++ b/build/_committees/1326919.md @@ -2,6 +2,6 @@ filer_id: '1326919' name: Kaplan For Oakland Mayor 2010 candidate_controlled_id: '1406223' -data_warning: +data_warning: title: Kaplan For Oakland Mayor 2010 --- diff --git a/build/_committees/1331137.md b/build/_committees/1331137.md index 9cd0bd4..15fc4b6 100644 --- a/build/_committees/1331137.md +++ b/build/_committees/1331137.md @@ -1,9 +1,7 @@ --- filer_id: '1331137' -name: Families and Educators for Public Education, Sponsored by Go Public Schools - Advocates +name: GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee candidate_controlled_id: '' -data_warning: -title: Families and Educators for Public Education, Sponsored by Go Public Schools - Advocates +data_warning: +title: GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee --- diff --git a/build/_committees/1332115.md b/build/_committees/1332115.md index 7d3486c..a3dc1fc 100644 --- a/build/_committees/1332115.md +++ b/build/_committees/1332115.md @@ -1,7 +1,7 @@ --- filer_id: '1332115' -name: Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund +name: Oakland Rising Committee sponsored by Center for Empowered Politics candidate_controlled_id: '' -data_warning: -title: Oakland Rising Committee Sponsored by Movement Strategy Center Action Fund +data_warning: +title: Oakland Rising Committee sponsored by Center for Empowered Politics --- diff --git a/build/_committees/1332307.md b/build/_committees/1332307.md index 6e13be7..6e088e4 100644 --- a/build/_committees/1332307.md +++ b/build/_committees/1332307.md @@ -2,6 +2,6 @@ filer_id: '1332307' name: Youth Power PAC, Sponsored by PowerCA Action candidate_controlled_id: '' -data_warning: +data_warning: title: Youth Power PAC, Sponsored by PowerCA Action --- diff --git a/build/_committees/1335572.md b/build/_committees/1335572.md index 74df876..97f9939 100644 --- a/build/_committees/1335572.md +++ b/build/_committees/1335572.md @@ -2,6 +2,6 @@ filer_id: '1335572' name: Mario Juarez for City Council 2012 candidate_controlled_id: '' -data_warning: +data_warning: title: Mario Juarez for City Council 2012 --- diff --git a/build/_committees/1339522.md b/build/_committees/1339522.md index ff4c41d..ec033a5 100644 --- a/build/_committees/1339522.md +++ b/build/_committees/1339522.md @@ -2,6 +2,6 @@ filer_id: '1339522' name: California Charter Schools Association Advocates Independent Expenditure Committee candidate_controlled_id: '' -data_warning: +data_warning: title: California Charter Schools Association Advocates Independent Expenditure Committee --- diff --git a/build/_committees/1341827.md b/build/_committees/1341827.md index c1034ef..ea76c2c 100644 --- a/build/_committees/1341827.md +++ b/build/_committees/1341827.md @@ -2,6 +2,6 @@ filer_id: '1341827' name: Kaplan for Oakland City Council 2012 candidate_controlled_id: '1406223' -data_warning: +data_warning: title: Kaplan for Oakland City Council 2012 --- diff --git a/build/_committees/1342185.md b/build/_committees/1342185.md index 61733e5..0b1fdc3 100644 --- a/build/_committees/1342185.md +++ b/build/_committees/1342185.md @@ -2,6 +2,6 @@ filer_id: '1342185' name: Barbara Parker for Oakland City Attorney 2012 candidate_controlled_id: '1382679' -data_warning: +data_warning: title: Barbara Parker for Oakland City Attorney 2012 --- diff --git a/build/_committees/1342416.md b/build/_committees/1342416.md index d83f846..c9f4b0c 100644 --- a/build/_committees/1342416.md +++ b/build/_committees/1342416.md @@ -2,6 +2,6 @@ filer_id: '1342416' name: Lynette Gibson-McElhaney for City Council 2012 Officeholder Committee candidate_controlled_id: '1375179' -data_warning: +data_warning: title: Lynette Gibson-McElhaney for City Council 2012 Officeholder Committee --- diff --git a/build/_committees/1342695.md b/build/_committees/1342695.md index d67a774..dd90c2e 100644 --- a/build/_committees/1342695.md +++ b/build/_committees/1342695.md @@ -2,6 +2,6 @@ filer_id: '1342695' name: East Bay Rental Housing Association PAC candidate_controlled_id: '' -data_warning: +data_warning: title: East Bay Rental Housing Association PAC --- diff --git a/build/_committees/1344093.md b/build/_committees/1344093.md index 9455e74..6fcd543 100644 --- a/build/_committees/1344093.md +++ b/build/_committees/1344093.md @@ -2,6 +2,6 @@ filer_id: '1344093' name: NATIONAL ASSOCIATION OF REALTORS FUND (NONPROFIT 527 ORGANIZATION) candidate_controlled_id: '' -data_warning: +data_warning: title: NATIONAL ASSOCIATION OF REALTORS FUND (NONPROFIT 527 ORGANIZATION) --- diff --git a/build/_committees/1344506.md b/build/_committees/1344506.md index 19b8e90..6ddd201 100644 --- a/build/_committees/1344506.md +++ b/build/_committees/1344506.md @@ -2,6 +2,6 @@ filer_id: '1344506' name: American Beverage Association California PAC candidate_controlled_id: '' -data_warning: +data_warning: title: American Beverage Association California PAC --- diff --git a/build/_committees/1345259.md b/build/_committees/1345259.md index f09c722..eb7d8f7 100644 --- a/build/_committees/1345259.md +++ b/build/_committees/1345259.md @@ -2,7 +2,6 @@ filer_id: '1345259' name: Oakland Education Association Political Action Committee candidate_controlled_id: '' -data_warning: A filer error is causing duplicate contributions to appear in this committee's - data. +data_warning: title: Oakland Education Association Political Action Committee --- diff --git a/build/_committees/1345905.md b/build/_committees/1345905.md index 1727302..d5aa845 100644 --- a/build/_committees/1345905.md +++ b/build/_committees/1345905.md @@ -2,6 +2,6 @@ filer_id: '1345905' name: Noel Gallo for Oakland City Council 2012 candidate_controlled_id: '1388641' -data_warning: +data_warning: title: Noel Gallo for Oakland City Council 2012 --- diff --git a/build/_committees/1345919.md b/build/_committees/1345919.md index 6357853..31510b6 100644 --- a/build/_committees/1345919.md +++ b/build/_committees/1345919.md @@ -2,6 +2,6 @@ filer_id: '1345919' name: James Harris for Oakland School Board 2012 candidate_controlled_id: '1387803' -data_warning: +data_warning: title: James Harris for Oakland School Board 2012 --- diff --git a/build/_committees/1347517.md b/build/_committees/1347517.md index 7335e4e..1a05c62 100644 --- a/build/_committees/1347517.md +++ b/build/_committees/1347517.md @@ -2,6 +2,6 @@ filer_id: '1347517' name: Macleay for Oakland City Council District 1 2012 candidate_controlled_id: '1384267' -data_warning: +data_warning: title: Macleay for Oakland City Council District 1 2012 --- diff --git a/build/_committees/1348353.md b/build/_committees/1348353.md index f05aae6..efb122f 100644 --- a/build/_committees/1348353.md +++ b/build/_committees/1348353.md @@ -2,6 +2,6 @@ filer_id: '1348353' name: Roseann Torres for Oakland School Board candidate_controlled_id: '1379121' -data_warning: +data_warning: title: Roseann Torres for Oakland School Board --- diff --git a/build/_committees/1348676.md b/build/_committees/1348676.md index f7ee08b..f041ba6 100644 --- a/build/_committees/1348676.md +++ b/build/_committees/1348676.md @@ -2,6 +2,6 @@ filer_id: '1348676' name: Friends of Mike Hutchinson for Oakland School Board 2012 candidate_controlled_id: '1384267' -data_warning: +data_warning: title: Friends of Mike Hutchinson for Oakland School Board 2012 --- diff --git a/build/_committees/134896.md b/build/_committees/134896.md index 9195659..ca40664 100644 --- a/build/_committees/134896.md +++ b/build/_committees/134896.md @@ -2,6 +2,6 @@ filer_id: '134896' name: Mike Hutchinson for School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Mike Hutchinson for School Board 2016 --- diff --git a/build/_committees/1351785.md b/build/_committees/1351785.md index 9e73f39..e2925ed 100644 --- a/build/_committees/1351785.md +++ b/build/_committees/1351785.md @@ -1,7 +1,7 @@ --- filer_id: '1351785' -name: SHEET METAL WORKERS' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES COMMITTEE +name: Sheet Metal Workers' International Association Local Union No. 104 Issues Committee candidate_controlled_id: '' -data_warning: -title: SHEET METAL WORKERS' INTERNATIONAL ASSOCIATION LOCAL UNION NO. 104 ISSUES COMMITTEE +data_warning: +title: Sheet Metal Workers' International Association Local Union No. 104 Issues Committee --- diff --git a/build/_committees/1352921.md b/build/_committees/1352921.md index 622a82b..5fa3772 100644 --- a/build/_committees/1352921.md +++ b/build/_committees/1352921.md @@ -2,6 +2,6 @@ filer_id: '1352921' name: Barbara Parker City Attorney Officeholder Account candidate_controlled_id: '1382679' -data_warning: +data_warning: title: Barbara Parker City Attorney Officeholder Account --- diff --git a/build/_committees/1354678.md b/build/_committees/1354678.md index 608b580..12ca54a 100644 --- a/build/_committees/1354678.md +++ b/build/_committees/1354678.md @@ -2,6 +2,6 @@ filer_id: '1354678' name: Re-Elect Mayor Quan 201 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect Mayor Quan 201 --- diff --git a/build/_committees/1357609.md b/build/_committees/1357609.md index bc713b4..9f83682 100644 --- a/build/_committees/1357609.md +++ b/build/_committees/1357609.md @@ -2,6 +2,6 @@ filer_id: '1357609' name: Parker for Oakland Mayor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Parker for Oakland Mayor 2014 --- diff --git a/build/_committees/1359017.md b/build/_committees/1359017.md index da7781e..e940a1b 100644 --- a/build/_committees/1359017.md +++ b/build/_committees/1359017.md @@ -2,6 +2,6 @@ filer_id: '1359017' name: Joe Tuman for Mayor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Joe Tuman for Mayor 2014 --- diff --git a/build/_committees/1360826.md b/build/_committees/1360826.md index d5ec27b..2745663 100644 --- a/build/_committees/1360826.md +++ b/build/_committees/1360826.md @@ -2,6 +2,6 @@ filer_id: '1360826' name: Committee to Elect Michael V. Johnson candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Elect Michael V. Johnson --- diff --git a/build/_committees/1361954.md b/build/_committees/1361954.md index f6add97..d2f2112 100644 --- a/build/_committees/1361954.md +++ b/build/_committees/1361954.md @@ -2,6 +2,6 @@ filer_id: '1361954' name: Dan Kalb Council Officeholder Committee candidate_controlled_id: '1382408' -data_warning: +data_warning: title: Dan Kalb Council Officeholder Committee --- diff --git a/build/_committees/1362261.md b/build/_committees/1362261.md index 58dbeaa..fec5287 100644 --- a/build/_committees/1362261.md +++ b/build/_committees/1362261.md @@ -2,6 +2,6 @@ filer_id: '1362261' name: Mayor Libby Schaaf 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Mayor Libby Schaaf 2014 --- diff --git a/build/_committees/1362843.md b/build/_committees/1362843.md index b139e14..2bcf88e 100644 --- a/build/_committees/1362843.md +++ b/build/_committees/1362843.md @@ -2,6 +2,6 @@ filer_id: '1362843' name: Jill Broadhurst for Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Jill Broadhurst for Council 2014 --- diff --git a/build/_committees/1362877.md b/build/_committees/1362877.md index c0ac353..ac7c5a4 100644 --- a/build/_committees/1362877.md +++ b/build/_committees/1362877.md @@ -2,6 +2,6 @@ filer_id: '1362877' name: Dan Siegel for Mayor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Dan Siegel for Mayor 2014 --- diff --git a/build/_committees/1363584.md b/build/_committees/1363584.md index bb1c4fe..c3e7152 100644 --- a/build/_committees/1363584.md +++ b/build/_committees/1363584.md @@ -2,6 +2,6 @@ filer_id: '1363584' name: Nicolas Heidorn for City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Nicolas Heidorn for City Council 2014 --- diff --git a/build/_committees/1364029.md b/build/_committees/1364029.md index b63cfb6..a332712 100644 --- a/build/_committees/1364029.md +++ b/build/_committees/1364029.md @@ -1,7 +1,7 @@ --- filer_id: '1364029' -name: +name: candidate_controlled_id: '' -data_warning: -title: +data_warning: +title: --- diff --git a/build/_committees/1364278.md b/build/_committees/1364278.md index 2015454..e4bc459 100644 --- a/build/_committees/1364278.md +++ b/build/_committees/1364278.md @@ -2,6 +2,6 @@ filer_id: '1364278' name: Courtney Ruby for Oakland Mayor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Courtney Ruby for Oakland Mayor 2014 --- diff --git a/build/_committees/1364308.md b/build/_committees/1364308.md index 9cb660b..f52d1b1 100644 --- a/build/_committees/1364308.md +++ b/build/_committees/1364308.md @@ -2,6 +2,6 @@ filer_id: '1364308' name: Andrew Park for City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Andrew Park for City Council 2014 --- diff --git a/build/_committees/1364457.md b/build/_committees/1364457.md index 8f2553c..437fdb5 100644 --- a/build/_committees/1364457.md +++ b/build/_committees/1364457.md @@ -2,6 +2,6 @@ filer_id: '1364457' name: Shanthi Gonzales School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Shanthi Gonzales School Board 2014 --- diff --git a/build/_committees/1364564.md b/build/_committees/1364564.md index 65d3e9e..ccd3e64 100644 --- a/build/_committees/1364564.md +++ b/build/_committees/1364564.md @@ -3,7 +3,7 @@ filer_id: '1364564' name: Committee to Protect Oakland Renters - Yes on Measure JJ, sponsored by labor and community organizations candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Protect Oakland Renters - Yes on Measure JJ, sponsored by labor and community organizations --- diff --git a/build/_committees/1365384.md b/build/_committees/1365384.md index 2aabf2b..966f826 100644 --- a/build/_committees/1365384.md +++ b/build/_committees/1365384.md @@ -2,6 +2,6 @@ filer_id: '1365384' name: Abel Guillen for Oakland City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Abel Guillen for Oakland City Council 2014 --- diff --git a/build/_committees/1365454.md b/build/_committees/1365454.md index 9487a3c..da97ae9 100644 --- a/build/_committees/1365454.md +++ b/build/_committees/1365454.md @@ -2,6 +2,6 @@ filer_id: '1365454' name: Committee to Elect Renato Almanzor to the School Board in 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Elect Renato Almanzor to the School Board in 2014 --- diff --git a/build/_committees/1365610.md b/build/_committees/1365610.md index dd1e484..3df905a 100644 --- a/build/_committees/1365610.md +++ b/build/_committees/1365610.md @@ -2,6 +2,6 @@ filer_id: '1365610' name: Annie Campbell Washington 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Annie Campbell Washington 2014 --- diff --git a/build/_committees/1365733.md b/build/_committees/1365733.md index bae8c95..5c89653 100644 --- a/build/_committees/1365733.md +++ b/build/_committees/1365733.md @@ -2,6 +2,6 @@ filer_id: '1365733' name: Shakir-Gilmore for Oakland School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Shakir-Gilmore for Oakland School Board 2014 --- diff --git a/build/_committees/1365766.md b/build/_committees/1365766.md index a982b4a..199e331 100644 --- a/build/_committees/1365766.md +++ b/build/_committees/1365766.md @@ -2,6 +2,6 @@ filer_id: '1365766' name: Shereda Nosakhare for City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Shereda Nosakhare for City Council 2014 --- diff --git a/build/_committees/1366244.md b/build/_committees/1366244.md index cfa6e3b..5507e21 100644 --- a/build/_committees/1366244.md +++ b/build/_committees/1366244.md @@ -2,6 +2,6 @@ filer_id: '1366244' name: Kevin Blackburn for Oakland City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Kevin Blackburn for Oakland City Council 2014 --- diff --git a/build/_committees/1366759.md b/build/_committees/1366759.md index b9dd2ce..0e87599 100644 --- a/build/_committees/1366759.md +++ b/build/_committees/1366759.md @@ -2,6 +2,6 @@ filer_id: '1366759' name: Treva Reid for Oakland City Council 2020 candidate_controlled_id: '' -data_warning: +data_warning: title: Treva Reid for Oakland City Council 2020 --- diff --git a/build/_committees/1366842.md b/build/_committees/1366842.md index 0f2bdd9..36ae9f7 100644 --- a/build/_committees/1366842.md +++ b/build/_committees/1366842.md @@ -2,6 +2,6 @@ filer_id: '1366842' name: Karl Debro for School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Karl Debro for School Board 2014 --- diff --git a/build/_committees/1367083.md b/build/_committees/1367083.md index e3e9d2f..acb2e9e 100644 --- a/build/_committees/1367083.md +++ b/build/_committees/1367083.md @@ -2,6 +2,6 @@ filer_id: '1367083' name: Cheri Spigner for School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Cheri Spigner for School Board 2014 --- diff --git a/build/_committees/1367207.md b/build/_committees/1367207.md index 9f7591f..8cf732a 100644 --- a/build/_committees/1367207.md +++ b/build/_committees/1367207.md @@ -2,6 +2,6 @@ filer_id: '1367207' name: Charles R. Williams for Mayor of Oakland 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Charles R. Williams for Mayor of Oakland 2014 --- diff --git a/build/_committees/1367270.md b/build/_committees/1367270.md index 3464745..a4a3661 100644 --- a/build/_committees/1367270.md +++ b/build/_committees/1367270.md @@ -1,7 +1,7 @@ --- filer_id: '1367270' -name: +name: candidate_controlled_id: '' -data_warning: -title: +data_warning: +title: --- diff --git a/build/_committees/1367463.md b/build/_committees/1367463.md index 7267f9e..dccec84 100644 --- a/build/_committees/1367463.md +++ b/build/_committees/1367463.md @@ -2,6 +2,6 @@ filer_id: '1367463' name: James Moore for Oakland City Council 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: James Moore for Oakland City Council 2014 --- diff --git a/build/_committees/136810.md b/build/_committees/136810.md index f923719..d5235dc 100644 --- a/build/_committees/136810.md +++ b/build/_committees/136810.md @@ -2,6 +2,6 @@ filer_id: '136810' name: Brenda Roberts for Oakland City Auditor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Brenda Roberts for Oakland City Auditor 2014 --- diff --git a/build/_committees/1368410.md b/build/_committees/1368410.md index 259924b..bca82f6 100644 --- a/build/_committees/1368410.md +++ b/build/_committees/1368410.md @@ -2,6 +2,6 @@ filer_id: '1368410' name: Brenda Roberts for Oakland City Auditor 2014 candidate_controlled_id: '1403762' -data_warning: +data_warning: title: Brenda Roberts for Oakland City Auditor 2014 --- diff --git a/build/_committees/1368416.md b/build/_committees/1368416.md index cef9db5..1fc27a2 100644 --- a/build/_committees/1368416.md +++ b/build/_committees/1368416.md @@ -2,6 +2,6 @@ filer_id: '1368416' name: Nina Senn for Oakland School Board 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Nina Senn for Oakland School Board 2014 --- diff --git a/build/_committees/1368984.md b/build/_committees/1368984.md index 718029c..cd5c001 100644 --- a/build/_committees/1368984.md +++ b/build/_committees/1368984.md @@ -2,6 +2,6 @@ filer_id: '1368984' name: Aimee Eng for School Board 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Aimee Eng for School Board 2018 --- diff --git a/build/_committees/1369263.md b/build/_committees/1369263.md index dd67187..e445d2e 100644 --- a/build/_committees/1369263.md +++ b/build/_committees/1369263.md @@ -2,6 +2,6 @@ filer_id: '1369263' name: Len Raphael for Oakland City Auditor 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Len Raphael for Oakland City Auditor 2014 --- diff --git a/build/_committees/1369363.md b/build/_committees/1369363.md index b6bebbc..10c22aa 100644 --- a/build/_committees/1369363.md +++ b/build/_committees/1369363.md @@ -2,6 +2,6 @@ filer_id: '1369363' name: Nancy Sidebotham for Mayor 11/4/14 candidate_controlled_id: '1386741' -data_warning: +data_warning: title: Nancy Sidebotham for Mayor 11/4/14 --- diff --git a/build/_committees/1369536.md b/build/_committees/1369536.md index e3b0a90..199a8b3 100644 --- a/build/_committees/1369536.md +++ b/build/_committees/1369536.md @@ -2,6 +2,6 @@ filer_id: '1369536' name: Saied Karamooz For Oakland Mayor Movement 2014 candidate_controlled_id: '' -data_warning: +data_warning: title: Saied Karamooz For Oakland Mayor Movement 2014 --- diff --git a/build/_committees/1370519.md b/build/_committees/1370519.md index dc666a4..dfd653d 100644 --- a/build/_committees/1370519.md +++ b/build/_committees/1370519.md @@ -2,6 +2,6 @@ filer_id: '1370519' name: Citizens for Oakland candidate_controlled_id: '' -data_warning: +data_warning: title: Citizens for Oakland --- diff --git a/build/_committees/1372459.md b/build/_committees/1372459.md index be52f2c..4c36bda 100644 --- a/build/_committees/1372459.md +++ b/build/_committees/1372459.md @@ -2,6 +2,6 @@ filer_id: '1372459' name: Oakland Civil Liberties Alliance candidate_controlled_id: '' -data_warning: +data_warning: title: Oakland Civil Liberties Alliance --- diff --git a/build/_committees/1374343.md b/build/_committees/1374343.md index 5066ae8..b101ac8 100644 --- a/build/_committees/1374343.md +++ b/build/_committees/1374343.md @@ -2,6 +2,6 @@ filer_id: '1374343' name: Councilmember Rebecca Kaplan 2016 Officeholder Committee candidate_controlled_id: '1406223' -data_warning: +data_warning: title: Councilmember Rebecca Kaplan 2016 Officeholder Committee --- diff --git a/build/_committees/1375179.md b/build/_committees/1375179.md index 8727623..70ac8e3 100644 --- a/build/_committees/1375179.md +++ b/build/_committees/1375179.md @@ -2,6 +2,6 @@ filer_id: '1375179' name: Re-Elect McElhaney for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect McElhaney for City Council 2016 --- diff --git a/build/_committees/1376660.md b/build/_committees/1376660.md index c9df25f..b3ff364 100644 --- a/build/_committees/1376660.md +++ b/build/_committees/1376660.md @@ -2,6 +2,6 @@ filer_id: '1376660' name: Annie Campbell Washington for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Annie Campbell Washington for Oakland City Council 2018 --- diff --git a/build/_committees/1379121.md b/build/_committees/1379121.md index f150293..bd7f4a0 100644 --- a/build/_committees/1379121.md +++ b/build/_committees/1379121.md @@ -2,6 +2,6 @@ filer_id: '1379121' name: Roseann Torres for Oakland School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Roseann Torres for Oakland School Board 2016 --- diff --git a/build/_committees/1379188.md b/build/_committees/1379188.md index e91d5ec..b158ec8 100644 --- a/build/_committees/1379188.md +++ b/build/_committees/1379188.md @@ -2,6 +2,6 @@ filer_id: '1379188' name: Mayor Libby Schaaf for Oakland candidate_controlled_id: '1395968' -data_warning: +data_warning: title: Mayor Libby Schaaf for Oakland --- diff --git a/build/_committees/1379618.md b/build/_committees/1379618.md index 2531d0f..4a19964 100644 --- a/build/_committees/1379618.md +++ b/build/_committees/1379618.md @@ -2,6 +2,6 @@ filer_id: '1379618' name: Transport Oakland candidate_controlled_id: '' -data_warning: +data_warning: title: Transport Oakland --- diff --git a/build/_committees/1380387.md b/build/_committees/1380387.md index 8b3f2d9..41fc147 100644 --- a/build/_committees/1380387.md +++ b/build/_committees/1380387.md @@ -2,6 +2,6 @@ filer_id: '1380387' name: Oakland Charter Advocates for Excellent Public Schools candidate_controlled_id: '' -data_warning: +data_warning: title: Oakland Charter Advocates for Excellent Public Schools --- diff --git a/build/_committees/1380610.md b/build/_committees/1380610.md index c4cf81a..e83684c 100644 --- a/build/_committees/1380610.md +++ b/build/_committees/1380610.md @@ -2,6 +2,6 @@ filer_id: '1380610' name: Jordan for City Council 16 candidate_controlled_id: '' -data_warning: +data_warning: title: Jordan for City Council 16 --- diff --git a/build/_committees/1381041.md b/build/_committees/1381041.md index aed57fb..d2003a9 100644 --- a/build/_committees/1381041.md +++ b/build/_committees/1381041.md @@ -2,6 +2,6 @@ filer_id: '1381041' name: Yes on Measure HH, Citizens for Healthy Oakland Children candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on Measure HH, Citizens for Healthy Oakland Children --- diff --git a/build/_committees/1381183.md b/build/_committees/1381183.md index 23b4fdc..11a957c 100644 --- a/build/_committees/1381183.md +++ b/build/_committees/1381183.md @@ -2,6 +2,6 @@ filer_id: '1381183' name: Kaplan for Oakland City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Kaplan for Oakland City Council 2016 --- diff --git a/build/_committees/1381519.md b/build/_committees/1381519.md index f7cb5f1..36601b8 100644 --- a/build/_committees/1381519.md +++ b/build/_committees/1381519.md @@ -2,6 +2,6 @@ filer_id: '1381519' name: PROGRESS SAN FRANCISCO candidate_controlled_id: '' -data_warning: +data_warning: title: PROGRESS SAN FRANCISCO --- diff --git a/build/_committees/1382194.md b/build/_committees/1382194.md index 228845f..7a12c26 100644 --- a/build/_committees/1382194.md +++ b/build/_committees/1382194.md @@ -2,6 +2,6 @@ filer_id: '1382194' name: Letitia Henderson for School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Letitia Henderson for School Board 2016 --- diff --git a/build/_committees/1382223.md b/build/_committees/1382223.md index 96d8f05..0e27d0b 100644 --- a/build/_committees/1382223.md +++ b/build/_committees/1382223.md @@ -2,6 +2,6 @@ filer_id: '1382223' name: Yes on Public Health and Safety Bond 2016, Yes on A candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on Public Health and Safety Bond 2016, Yes on A --- diff --git a/build/_committees/1382408.md b/build/_committees/1382408.md index abeec89..b941fc5 100644 --- a/build/_committees/1382408.md +++ b/build/_committees/1382408.md @@ -2,6 +2,6 @@ filer_id: '1382408' name: Re-Elect Dan Kalb Oakland City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect Dan Kalb Oakland City Council 2016 --- diff --git a/build/_committees/1382679.md b/build/_committees/1382679.md index 404191c..221747d 100644 --- a/build/_committees/1382679.md +++ b/build/_committees/1382679.md @@ -2,6 +2,6 @@ filer_id: '1382679' name: Re-elect City Attorney Barbara Parker 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-elect City Attorney Barbara Parker 2016 --- diff --git a/build/_committees/1382995.md b/build/_committees/1382995.md index ae2ec65..dce57f4 100644 --- a/build/_committees/1382995.md +++ b/build/_committees/1382995.md @@ -3,7 +3,7 @@ filer_id: '1382995' name: 'NO ON V, ENOUGH IS ENOUGH: DON''T TAX OUR GROCERIES, WITH MAJOR FUNDING BY AMERICAN BEVERAGE ASSOCIATION CALIFORNIA PAC' candidate_controlled_id: '' -data_warning: +data_warning: title: 'NO ON V, ENOUGH IS ENOUGH: DON''T TAX OUR GROCERIES, WITH MAJOR FUNDING BY AMERICAN BEVERAGE ASSOCIATION CALIFORNIA PAC' --- diff --git a/build/_committees/1384267.md b/build/_committees/1384267.md index 8bf425b..d02b692 100644 --- a/build/_committees/1384267.md +++ b/build/_committees/1384267.md @@ -2,6 +2,6 @@ filer_id: '1384267' name: Macleay for Oakland School Board, District 1, 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Macleay for Oakland School Board, District 1, 2016 --- diff --git a/build/_committees/1384926.md b/build/_committees/1384926.md index bf18613..dd1b932 100644 --- a/build/_committees/1384926.md +++ b/build/_committees/1384926.md @@ -2,6 +2,6 @@ filer_id: '1384926' name: Chris Jackson for School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Chris Jackson for School Board 2016 --- diff --git a/build/_committees/1385180.md b/build/_committees/1385180.md index 43ff3f2..ac8c2b8 100644 --- a/build/_committees/1385180.md +++ b/build/_committees/1385180.md @@ -3,7 +3,7 @@ filer_id: '1385180' name: 'No on HH: No Oakland Grocery Tax, with Major Funding by American Beverage Association California PAC' candidate_controlled_id: '' -data_warning: +data_warning: title: 'No on HH: No Oakland Grocery Tax, with Major Funding by American Beverage Association California PAC' --- diff --git a/build/_committees/1385949.md b/build/_committees/1385949.md index 6793ae5..58ec850 100644 --- a/build/_committees/1385949.md +++ b/build/_committees/1385949.md @@ -2,6 +2,6 @@ filer_id: '1385949' name: 'Causa Justa :: Just Cause (nonprofit 501(c)(3))' candidate_controlled_id: '' -data_warning: +data_warning: title: 'Causa Justa :: Just Cause (nonprofit 501(c)(3))' --- diff --git a/build/_committees/1386081.md b/build/_committees/1386081.md index c51594e..d1b2d59 100644 --- a/build/_committees/1386081.md +++ b/build/_committees/1386081.md @@ -2,6 +2,6 @@ filer_id: '1386081' name: Kevin Corbett for Oakland City Council 2016, District 1 candidate_controlled_id: '' -data_warning: +data_warning: title: Kevin Corbett for Oakland City Council 2016, District 1 --- diff --git a/build/_committees/1386145.md b/build/_committees/1386145.md index 3d6fc9c..799c05a 100644 --- a/build/_committees/1386145.md +++ b/build/_committees/1386145.md @@ -1,7 +1,7 @@ --- filer_id: '1386145' -name: Coalition for Police Accountability Yes on LL +name: Coalition for Police Accountability Yes on Measure S1 candidate_controlled_id: '' -data_warning: -title: Coalition for Police Accountability Yes on LL +data_warning: +title: Coalition for Police Accountability Yes on Measure S1 --- diff --git a/build/_committees/1386416.md b/build/_committees/1386416.md index 7b76285..5ae0673 100644 --- a/build/_committees/1386416.md +++ b/build/_committees/1386416.md @@ -2,6 +2,6 @@ filer_id: '1386416' name: Re-Elect Jumoke Hinton Hodge for Oakland School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect Jumoke Hinton Hodge for Oakland School Board 2016 --- diff --git a/build/_committees/1386655.md b/build/_committees/1386655.md index 4a16f4b..4aa5fa0 100644 --- a/build/_committees/1386655.md +++ b/build/_committees/1386655.md @@ -3,7 +3,7 @@ filer_id: '1386655' name: Yes on E, Coalition for Healthy Trees and Safe Sidewalks, with Major Funding by Friends of the Urban Forest Committee and Mitzi Johnson candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on E, Coalition for Healthy Trees and Safe Sidewalks, with Major Funding by Friends of the Urban Forest Committee and Mitzi Johnson --- diff --git a/build/_committees/1386741.md b/build/_committees/1386741.md index c33e364..2d9a175 100644 --- a/build/_committees/1386741.md +++ b/build/_committees/1386741.md @@ -2,6 +2,6 @@ filer_id: '1386741' name: Committee to Elect Nancy Sidebotham, Councilmember At Large, 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Committee to Elect Nancy Sidebotham, Councilmember At Large, 2016 --- diff --git a/build/_committees/1386749.md b/build/_committees/1386749.md index 161a977..7579240 100644 --- a/build/_committees/1386749.md +++ b/build/_committees/1386749.md @@ -2,6 +2,6 @@ filer_id: '1386749' name: Huber Trenado for OUSD School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Huber Trenado for OUSD School Board 2016 --- diff --git a/build/_committees/1386922.md b/build/_committees/1386922.md index da6128f..ff916f7 100644 --- a/build/_committees/1386922.md +++ b/build/_committees/1386922.md @@ -2,6 +2,6 @@ filer_id: '1386922' name: Noni D. Session for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Noni D. Session for City Council 2016 --- diff --git a/build/_committees/1386929.md b/build/_committees/1386929.md index 487b310..e709387 100644 --- a/build/_committees/1386929.md +++ b/build/_committees/1386929.md @@ -2,6 +2,6 @@ filer_id: '1386929' name: Kharyshi Wiginton for School Board 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Kharyshi Wiginton for School Board 2016 --- diff --git a/build/_committees/1386932.md b/build/_committees/1386932.md index 19865c9..6277280 100644 --- a/build/_committees/1386932.md +++ b/build/_committees/1386932.md @@ -2,6 +2,6 @@ filer_id: '1386932' name: Nehanda Imara for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Nehanda Imara for City Council 2016 --- diff --git a/build/_committees/1387128.md b/build/_committees/1387128.md index dc12741..e1042c4 100644 --- a/build/_committees/1387128.md +++ b/build/_committees/1387128.md @@ -2,6 +2,6 @@ filer_id: '1387128' name: Friends of the Urban Forest (nonprofit 501(c) (3)), Yes on E candidate_controlled_id: '' -data_warning: +data_warning: title: Friends of the Urban Forest (nonprofit 501(c) (3)), Yes on E --- diff --git a/build/_committees/1387192.md b/build/_committees/1387192.md index 5353c22..86823ab 100644 --- a/build/_committees/1387192.md +++ b/build/_committees/1387192.md @@ -2,6 +2,6 @@ filer_id: '1387192' name: Viola Gonzales for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Viola Gonzales for City Council 2016 --- diff --git a/build/_committees/1387267.md b/build/_committees/1387267.md index 4a0de1f..174643b 100644 --- a/build/_committees/1387267.md +++ b/build/_committees/1387267.md @@ -2,6 +2,6 @@ filer_id: '1387267' name: Bruce Quan for City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Bruce Quan for City Council 2016 --- diff --git a/build/_committees/1387393.md b/build/_committees/1387393.md index 647beb5..5724d6a 100644 --- a/build/_committees/1387393.md +++ b/build/_committees/1387393.md @@ -3,7 +3,7 @@ filer_id: '1387393' name: Living Wage for Educators Committee with Support from United Educators of San Francisco and Major Funding from Phil Halperin candidate_controlled_id: '' -data_warning: +data_warning: title: Living Wage for Educators Committee with Support from United Educators of San Francisco and Major Funding from Phil Halperin --- diff --git a/build/_committees/1387803.md b/build/_committees/1387803.md index 568af20..2e39be0 100644 --- a/build/_committees/1387803.md +++ b/build/_committees/1387803.md @@ -2,6 +2,6 @@ filer_id: '1387803' name: Re-Elect James Harris for School Board candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect James Harris for School Board --- diff --git a/build/_committees/1387861.md b/build/_committees/1387861.md index 6a96e03..ab092e4 100644 --- a/build/_committees/1387861.md +++ b/build/_committees/1387861.md @@ -2,6 +2,6 @@ filer_id: '1387861' name: Lynette Gibson McElhaney Legal Defense Fund candidate_controlled_id: '1375179' -data_warning: +data_warning: title: Lynette Gibson McElhaney Legal Defense Fund --- diff --git a/build/_committees/1387905.md b/build/_committees/1387905.md index d63ef9c..ea60db7 100644 --- a/build/_committees/1387905.md +++ b/build/_committees/1387905.md @@ -2,6 +2,6 @@ filer_id: '1387905' name: Re-Elect Larry Reid for Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Re-Elect Larry Reid for Council 2016 --- diff --git a/build/_committees/1387983.md b/build/_committees/1387983.md index eaf3241..d00b772 100644 --- a/build/_committees/1387983.md +++ b/build/_committees/1387983.md @@ -3,7 +3,7 @@ filer_id: '1387983' name: Invest in Oakland's Infrastructure and Affordable Housing -- Yes on KK, a Coalition of Business, Community Leaders and Oakland Residents candidate_controlled_id: '' -data_warning: +data_warning: title: Invest in Oakland's Infrastructure and Affordable Housing -- Yes on KK, a Coalition of Business, Community Leaders and Oakland Residents --- diff --git a/build/_committees/1388133.md b/build/_committees/1388133.md index 98fbda2..8afeca0 100644 --- a/build/_committees/1388133.md +++ b/build/_committees/1388133.md @@ -2,6 +2,6 @@ filer_id: '1388133' name: Friends of Hassid for School Board Director 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Friends of Hassid for School Board Director 2016 --- diff --git a/build/_committees/1388641.md b/build/_committees/1388641.md index b306910..91f9cc1 100644 --- a/build/_committees/1388641.md +++ b/build/_committees/1388641.md @@ -2,6 +2,6 @@ filer_id: '1388641' name: ReElect Noel Gallo for Oakland City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: ReElect Noel Gallo for Oakland City Council 2016 --- diff --git a/build/_committees/1388731.md b/build/_committees/1388731.md index 32a293e..a31aa13 100644 --- a/build/_committees/1388731.md +++ b/build/_committees/1388731.md @@ -2,6 +2,6 @@ filer_id: '1388731' name: Hodge 4 Oakland City Council 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Hodge 4 Oakland City Council 2016 --- diff --git a/build/_committees/1389717.md b/build/_committees/1389717.md index 7e1ad2e..2de7992 100644 --- a/build/_committees/1389717.md +++ b/build/_committees/1389717.md @@ -2,6 +2,6 @@ filer_id: '1389717' name: Matt Hummel 4 the People candidate_controlled_id: '' -data_warning: +data_warning: title: Matt Hummel 4 the People --- diff --git a/build/_committees/1390351.md b/build/_committees/1390351.md index dec65ab..8332333 100644 --- a/build/_committees/1390351.md +++ b/build/_committees/1390351.md @@ -1,7 +1,7 @@ --- filer_id: '1390351' -name: East Bay Working Families, a coalition of unions and community groups +name: East Bay Working Families candidate_controlled_id: '' -data_warning: -title: East Bay Working Families, a coalition of unions and community groups +data_warning: +title: East Bay Working Families --- diff --git a/build/_committees/1390722.md b/build/_committees/1390722.md index f3c5957..d4bf935 100644 --- a/build/_committees/1390722.md +++ b/build/_committees/1390722.md @@ -2,6 +2,6 @@ filer_id: '1390722' name: Coalition for Immigrant Parent Empowerment, Yes on N, 2016 candidate_controlled_id: '' -data_warning: +data_warning: title: Coalition for Immigrant Parent Empowerment, Yes on N, 2016 --- diff --git a/build/_committees/1391606.md b/build/_committees/1391606.md index 3684d9d..6fca1ae 100644 --- a/build/_committees/1391606.md +++ b/build/_committees/1391606.md @@ -3,7 +3,7 @@ filer_id: '1391606' name: Coalition to Improve Oakland Government - NO on Measure KK sponsored by Oakland small business and property owners, home owners and renters candidate_controlled_id: '' -data_warning: +data_warning: title: Coalition to Improve Oakland Government - NO on Measure KK sponsored by Oakland small business and property owners, home owners and renters --- diff --git a/build/_committees/1391632.md b/build/_committees/1391632.md index eabee81..a6f3c85 100644 --- a/build/_committees/1391632.md +++ b/build/_committees/1391632.md @@ -1,7 +1,7 @@ --- filer_id: '1391632' -name: YES ON G1, SPONSORED BY GO PUBLIC SCHOOLS ADVOCATES +name: GO PUBLIC SCHOOLS ADVOCATES COMMUNITY-POWERED BALLOTT MEASURES COMMITTEE candidate_controlled_id: '' -data_warning: -title: YES ON G1, SPONSORED BY GO PUBLIC SCHOOLS ADVOCATES +data_warning: +title: GO PUBLIC SCHOOLS ADVOCATES COMMUNITY-POWERED BALLOTT MEASURES COMMITTEE --- diff --git a/build/_committees/1392132.md b/build/_committees/1392132.md index 6a9e120..8804b0f 100644 --- a/build/_committees/1392132.md +++ b/build/_committees/1392132.md @@ -3,7 +3,7 @@ filer_id: '1392132' name: YERBA BUENA NEIGHBORHOOD CONSORTIUM LLC, A 501C3 STATUS NONPROFIT ORGANIZAITON, SPONSORED BY TENANTS AND OWNERS DEVELOPMENT CORP. (MULTIPURPOSE ORGANIZATION) candidate_controlled_id: '' -data_warning: +data_warning: title: YERBA BUENA NEIGHBORHOOD CONSORTIUM LLC, A 501C3 STATUS NONPROFIT ORGANIZAITON, SPONSORED BY TENANTS AND OWNERS DEVELOPMENT CORP. (MULTIPURPOSE ORGANIZATION) --- diff --git a/build/_committees/1392842.md b/build/_committees/1392842.md index b28fbdf..2c9a86a 100644 --- a/build/_committees/1392842.md +++ b/build/_committees/1392842.md @@ -2,6 +2,6 @@ filer_id: '1392842' name: Kate Harrison for Berkeley Council 2017 candidate_controlled_id: '' -data_warning: +data_warning: title: Kate Harrison for Berkeley Council 2017 --- diff --git a/build/_committees/1395306.md b/build/_committees/1395306.md index e550508..e4c3a2a 100644 --- a/build/_committees/1395306.md +++ b/build/_committees/1395306.md @@ -2,6 +2,6 @@ filer_id: '1395306' name: JEFF SHEEHY FOR SUPERVISOR JUNE 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: JEFF SHEEHY FOR SUPERVISOR JUNE 2018 --- diff --git a/build/_committees/1395580.md b/build/_committees/1395580.md index 153ae31..382ffdc 100644 --- a/build/_committees/1395580.md +++ b/build/_committees/1395580.md @@ -2,6 +2,6 @@ filer_id: '1395580' name: Abel Guillen for City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Abel Guillen for City Council 2018 --- diff --git a/build/_committees/1395947.md b/build/_committees/1395947.md index 506f3ba..ec3cd23 100644 --- a/build/_committees/1395947.md +++ b/build/_committees/1395947.md @@ -2,6 +2,6 @@ filer_id: '1395947' name: Rafael Mandelman for Supervisor 2018 Primary candidate_controlled_id: '' -data_warning: +data_warning: title: Rafael Mandelman for Supervisor 2018 Primary --- diff --git a/build/_committees/1395968.md b/build/_committees/1395968.md index f6b71a1..6629651 100644 --- a/build/_committees/1395968.md +++ b/build/_committees/1395968.md @@ -2,6 +2,6 @@ filer_id: '1395968' name: Libby Schaaf for Mayor 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Libby Schaaf for Mayor 2018 --- diff --git a/build/_committees/1396338.md b/build/_committees/1396338.md index 48d57dc..b50235f 100644 --- a/build/_committees/1396338.md +++ b/build/_committees/1396338.md @@ -2,6 +2,6 @@ filer_id: '1396338' name: Mark Leno for Mayor 2019 candidate_controlled_id: '' -data_warning: +data_warning: title: Mark Leno for Mayor 2019 --- diff --git a/build/_committees/1397586.md b/build/_committees/1397586.md index 7281b6c..04ee114 100644 --- a/build/_committees/1397586.md +++ b/build/_committees/1397586.md @@ -2,6 +2,6 @@ filer_id: '1397586' name: NO ON PROP E - STOP THE PROHIBITION PROPOSITION candidate_controlled_id: '' -data_warning: +data_warning: title: NO ON PROP E - STOP THE PROHIBITION PROPOSITION --- diff --git a/build/_committees/1398097.md b/build/_committees/1398097.md index bbef53d..7c0adcf 100644 --- a/build/_committees/1398097.md +++ b/build/_committees/1398097.md @@ -2,6 +2,6 @@ filer_id: '1398097' name: Committee for Alameda County Child Care & Early Education candidate_controlled_id: '' -data_warning: +data_warning: title: Committee for Alameda County Child Care & Early Education --- diff --git a/build/_committees/1398329.md b/build/_committees/1398329.md index ee9ab99..5ba3d7e 100644 --- a/build/_committees/1398329.md +++ b/build/_committees/1398329.md @@ -3,7 +3,7 @@ filer_id: '1398329' name: YES ON REGIONAL MEASURE 3-KEEP THE BAY AREA MOVING, SPONSORED BY BAY AREA CIVIC LEADERSHIP ASSOCIATIONS candidate_controlled_id: '' -data_warning: +data_warning: title: YES ON REGIONAL MEASURE 3-KEEP THE BAY AREA MOVING, SPONSORED BY BAY AREA CIVIC LEADERSHIP ASSOCIATIONS --- diff --git a/build/_committees/1398847.md b/build/_committees/1398847.md index 20c222d..45bd0ec 100644 --- a/build/_committees/1398847.md +++ b/build/_committees/1398847.md @@ -2,6 +2,6 @@ filer_id: '1398847' name: Yes on Proposition E San Francisco Kids vs. Big Tobacco candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on Proposition E San Francisco Kids vs. Big Tobacco --- diff --git a/build/_committees/1400325.md b/build/_committees/1400325.md index 642666a..31f87ec 100644 --- a/build/_committees/1400325.md +++ b/build/_committees/1400325.md @@ -2,6 +2,6 @@ filer_id: '1400325' name: Nikki Fortunato Bas for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Nikki Fortunato Bas for Oakland City Council 2018 --- diff --git a/build/_committees/1400467.md b/build/_committees/1400467.md index 67bebe3..1e7cec5 100644 --- a/build/_committees/1400467.md +++ b/build/_committees/1400467.md @@ -2,6 +2,6 @@ filer_id: '1400467' name: Protect Oakland Libraries - Yes on D 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Protect Oakland Libraries - Yes on D 2018 --- diff --git a/build/_committees/1400769.md b/build/_committees/1400769.md index 8c822d2..b825eb9 100644 --- a/build/_committees/1400769.md +++ b/build/_committees/1400769.md @@ -2,6 +2,6 @@ filer_id: '1400769' name: Alfred Twu for Berkeley City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Alfred Twu for Berkeley City Council 2018 --- diff --git a/build/_committees/1400773.md b/build/_committees/1400773.md index 9adf3fb..f21bf04 100644 --- a/build/_committees/1400773.md +++ b/build/_committees/1400773.md @@ -3,7 +3,7 @@ filer_id: '1400773' name: Yes on H, Safe Neighborhoods for All, sponsored by the SF Community Alliance for Jobs and Housing and the San Francisco Police Officers Association candidate_controlled_id: '' -data_warning: +data_warning: title: Yes on H, Safe Neighborhoods for All, sponsored by the SF Community Alliance for Jobs and Housing and the San Francisco Police Officers Association --- diff --git a/build/_committees/1400832.md b/build/_committees/1400832.md index 6a2a478..7ebaa45 100644 --- a/build/_committees/1400832.md +++ b/build/_committees/1400832.md @@ -2,6 +2,6 @@ filer_id: '1400832' name: Jane Kim for Mayor 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Jane Kim for Mayor 2018 --- diff --git a/build/_committees/1400908.md b/build/_committees/1400908.md index fe2b187..cc2a29f 100644 --- a/build/_committees/1400908.md +++ b/build/_committees/1400908.md @@ -1,7 +1,7 @@ --- filer_id: '1400908' -name: East Bay Community Foundation (nonprofit 501(c)(3)) +name: East Bay Community Foundation candidate_controlled_id: '' -data_warning: -title: East Bay Community Foundation (nonprofit 501(c)(3)) +data_warning: +title: East Bay Community Foundation --- diff --git a/build/_committees/1401499.md b/build/_committees/1401499.md index 04a2eca..9b87ff6 100644 --- a/build/_committees/1401499.md +++ b/build/_committees/1401499.md @@ -2,6 +2,6 @@ filer_id: '1401499' name: Loren Taylor for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Loren Taylor for Oakland City Council 2018 --- diff --git a/build/_committees/1401516.md b/build/_committees/1401516.md index 41100c0..6c12a7e 100644 --- a/build/_committees/1401516.md +++ b/build/_committees/1401516.md @@ -3,7 +3,7 @@ filer_id: '1401516' name: CALIFORNIANS FOR RESPONSIBLE HOUSING, SPONSORED BY THE CALIFORNIA APARTMENT ASSOCIATION candidate_controlled_id: '' -data_warning: +data_warning: title: CALIFORNIANS FOR RESPONSIBLE HOUSING, SPONSORED BY THE CALIFORNIA APARTMENT ASSOCIATION --- diff --git a/build/_committees/1401571.md b/build/_committees/1401571.md index e6d647e..cd26ae5 100644 --- a/build/_committees/1401571.md +++ b/build/_committees/1401571.md @@ -2,6 +2,6 @@ filer_id: '1401571' name: UNIVERSAL CHILDCARE IN SAN FRANCISCO candidate_controlled_id: '' -data_warning: +data_warning: title: UNIVERSAL CHILDCARE IN SAN FRANCISCO --- diff --git a/build/_committees/1401632.md b/build/_committees/1401632.md index b1b5f40..1d4f657 100644 --- a/build/_committees/1401632.md +++ b/build/_committees/1401632.md @@ -2,6 +2,6 @@ filer_id: '1401632' name: Clean, Safe & Affordable Energy candidate_controlled_id: '' -data_warning: +data_warning: title: Clean, Safe & Affordable Energy --- diff --git a/build/_committees/1401694.md b/build/_committees/1401694.md index 0175b05..744bfe5 100644 --- a/build/_committees/1401694.md +++ b/build/_committees/1401694.md @@ -2,6 +2,6 @@ filer_id: '1401694' name: Saied Karamooz for Oakland Mayor 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Saied Karamooz for Oakland Mayor 2018 --- diff --git a/build/_committees/1401958.md b/build/_committees/1401958.md index 08f04eb..74a4c88 100644 --- a/build/_committees/1401958.md +++ b/build/_committees/1401958.md @@ -2,6 +2,6 @@ filer_id: '1401958' name: It's Our Time, Supporting Stephanie Dominguez Walton for City Council 2020 candidate_controlled_id: '' -data_warning: +data_warning: title: It's Our Time, Supporting Stephanie Dominguez Walton for City Council 2020 --- diff --git a/build/_committees/1402139.md b/build/_committees/1402139.md index e12d2cd..8d40adb 100644 --- a/build/_committees/1402139.md +++ b/build/_committees/1402139.md @@ -2,6 +2,6 @@ filer_id: '1402139' name: Citizens Against Nuclear Weapons candidate_controlled_id: '' -data_warning: +data_warning: title: Citizens Against Nuclear Weapons --- diff --git a/build/_committees/1402425.md b/build/_committees/1402425.md index f42cd24..a9eda84 100644 --- a/build/_committees/1402425.md +++ b/build/_committees/1402425.md @@ -2,6 +2,6 @@ filer_id: '1402425' name: Affordable Housing for All, Yes on D candidate_controlled_id: '' -data_warning: +data_warning: title: Affordable Housing for All, Yes on D --- diff --git a/build/_committees/1402995.md b/build/_committees/1402995.md index bb80d98..907d7aa 100644 --- a/build/_committees/1402995.md +++ b/build/_committees/1402995.md @@ -2,6 +2,6 @@ filer_id: '1402995' name: SAN FRANCISCO COMMUNITY ALLIANCE FOR JOBS & HOUSING PAC candidate_controlled_id: '' -data_warning: +data_warning: title: SAN FRANCISCO COMMUNITY ALLIANCE FOR JOBS & HOUSING PAC --- diff --git a/build/_committees/1403124.md b/build/_committees/1403124.md index b74ffd9..7e8ab0d 100644 --- a/build/_committees/1403124.md +++ b/build/_committees/1403124.md @@ -2,6 +2,6 @@ filer_id: '1403124' name: Natasha Middleton for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Natasha Middleton for Oakland City Council 2018 --- diff --git a/build/_committees/1403165.md b/build/_committees/1403165.md index 4c04c48..7bf7af9 100644 --- a/build/_committees/1403165.md +++ b/build/_committees/1403165.md @@ -3,7 +3,7 @@ filer_id: '1403165' name: 'Time''s Up Oakland: Yes on Measure Z Committee for Fair Workplaces & Ending Sexual Assault on the Job' candidate_controlled_id: '' -data_warning: +data_warning: title: 'Time''s Up Oakland: Yes on Measure Z Committee for Fair Workplaces & Ending Sexual Assault on the Job' --- diff --git a/build/_committees/1403436.md b/build/_committees/1403436.md index ab6d4df..2644888 100644 --- a/build/_committees/1403436.md +++ b/build/_committees/1403436.md @@ -2,6 +2,6 @@ filer_id: '1403436' name: Marchon Tatmon Mayor for Oakland 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Marchon Tatmon Mayor for Oakland 2018 --- diff --git a/build/_committees/1403502.md b/build/_committees/1403502.md index b3152bc..0521fe5 100644 --- a/build/_committees/1403502.md +++ b/build/_committees/1403502.md @@ -3,7 +3,7 @@ filer_id: '1403502' name: Berkeley Community for Police Oversight Committee Supporting Police Commission Oversight Charter Amendment candidate_controlled_id: '' -data_warning: +data_warning: title: Berkeley Community for Police Oversight Committee Supporting Police Commission Oversight Charter Amendment --- diff --git a/build/_committees/1403762.md b/build/_committees/1403762.md index 07aa71b..86114da 100644 --- a/build/_committees/1403762.md +++ b/build/_committees/1403762.md @@ -2,6 +2,6 @@ filer_id: '1403762' name: Brenda Roberts for Oakland City Auditor 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Brenda Roberts for Oakland City Auditor 2018 --- diff --git a/build/_committees/1404060.md b/build/_committees/1404060.md index 93c718a..ea4e577 100644 --- a/build/_committees/1404060.md +++ b/build/_committees/1404060.md @@ -2,6 +2,6 @@ filer_id: '1404060' name: COMMITTEE FOR AN AFFORDABLE SAN FRANCISCO, NO ON PROPOSITIONS C AND D candidate_controlled_id: '' -data_warning: +data_warning: title: COMMITTEE FOR AN AFFORDABLE SAN FRANCISCO, NO ON PROPOSITIONS C AND D --- diff --git a/build/_committees/1404085.md b/build/_committees/1404085.md index 90ea5b7..d210506 100644 --- a/build/_committees/1404085.md +++ b/build/_committees/1404085.md @@ -2,6 +2,6 @@ filer_id: '1404085' name: Doutherd for School Board 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Doutherd for School Board 2018 --- diff --git a/build/_committees/1404347.md b/build/_committees/1404347.md index cfc8d53..cee6dd0 100644 --- a/build/_committees/1404347.md +++ b/build/_committees/1404347.md @@ -2,6 +2,6 @@ filer_id: '1404347' name: Gonzales for School Board 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Gonzales for School Board 2018 --- diff --git a/build/_committees/1404405.md b/build/_committees/1404405.md index 2aaec9f..5b57893 100644 --- a/build/_committees/1404405.md +++ b/build/_committees/1404405.md @@ -2,6 +2,6 @@ filer_id: '1404405' name: GO PUBLIC SCHOOLS CALIFORNIA, SPONSORED BY GO PUBLIC SCHOOLS ADVOCATE candidate_controlled_id: '' -data_warning: +data_warning: title: GO PUBLIC SCHOOLS CALIFORNIA, SPONSORED BY GO PUBLIC SCHOOLS ADVOCATE --- diff --git a/build/_committees/1404416.md b/build/_committees/1404416.md index 6e11619..abb727c 100644 --- a/build/_committees/1404416.md +++ b/build/_committees/1404416.md @@ -2,6 +2,6 @@ filer_id: '1404416' name: Marlo Rodriguez for City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Marlo Rodriguez for City Council 2018 --- diff --git a/build/_committees/1404992.md b/build/_committees/1404992.md index 72a5ae7..709087c 100644 --- a/build/_committees/1404992.md +++ b/build/_committees/1404992.md @@ -2,6 +2,6 @@ filer_id: '1404992' name: Ebony S Edgerson for Oakland School Board District 6 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Ebony S Edgerson for Oakland School Board District 6 2018 --- diff --git a/build/_committees/1405137.md b/build/_committees/1405137.md index 1a4d134..4ff66b0 100644 --- a/build/_committees/1405137.md +++ b/build/_committees/1405137.md @@ -2,6 +2,6 @@ filer_id: '1405137' name: SOMA HOTEL, LLC candidate_controlled_id: '' -data_warning: +data_warning: title: SOMA HOTEL, LLC --- diff --git a/build/_committees/1405187.md b/build/_committees/1405187.md index 8b973ea..24a76f5 100644 --- a/build/_committees/1405187.md +++ b/build/_committees/1405187.md @@ -2,6 +2,6 @@ filer_id: '1405187' name: Nayeli Maxson for Oakland City Council candidate_controlled_id: '' -data_warning: +data_warning: title: Nayeli Maxson for Oakland City Council --- diff --git a/build/_committees/1405266.md b/build/_committees/1405266.md index 1618025..d6085dd 100644 --- a/build/_committees/1405266.md +++ b/build/_committees/1405266.md @@ -2,6 +2,6 @@ filer_id: '1405266' name: Whitaker for Oakland City Council 2018 candidate_controlled_id: '' -data_warning: +data_warning: title: Whitaker for Oakland City Council 2018 --- diff --git a/build/_committees/1405422.md b/build/_committees/1405422.md index d89ab2e..e1e83bf 100644 --- a/build/_committees/1405422.md +++ b/build/_committees/1405422.md @@ -2,6 +2,6 @@ filer_id: '1405422' name: Pamela Harris for Oaklan ```
mikeubell commented 6 months ago
Build diff from Commit 206f986f6d15ef4f90b48b7c085fbbbdfc159447: ```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 5 months ago
Build diff from Commit 969df8a1058ac01419cf7d9ceb2f2c5c11af5766: ```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 5 months ago
Build diff from Commit a3cc106b7b970bee8e16ad596989cd321591a3be: ```diff diff --git a/build/_data/elections/oakland/2024-11-05.json b/build/_data/elections/oakland/2024-11-05.json index 187996b..8440b5b 100644 --- a/build/_data/elections/oakland/2024-11-05.json +++ b/build/_data/elections/oakland/2024-11-05.json @@ -91,7 +91,7 @@ "total_contributions": 2400.0 }, { - "name": "Todd Scanlin", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 diff --git a/build/_data/totals.json b/build/_data/totals.json index 1e9a566..0c48ba7 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -1658,7 +1658,7 @@ "total_contributions": 2400.0 }, { - "name": "Todd Scanlin", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 diff --git a/build/digests.json b/build/digests.json index f146c52..c578743 100644 --- a/build/digests.json +++ b/build/digests.json @@ -6323,7 +6323,7 @@ "build/_data/elections/berkeley/2018-11-06.json:total_contributions": "30565a8911a6bb487e3745c0ea3c8224", "build/_data/elections/berkeley/2018-11-06.json:total_contributions_by_source": "99914b932bd37a50b983c5e7c90ae93b", "build/_data/elections/oakland/2014-11-04.json:contributions_by_type": "e618ec8ba2b1224fbc3ab7456e1626ed", - "build/_data/elections/oakland/2014-11-04.json:largest_independent_expenditures": "2cce8a42088bcdac60000f94b9ff5d0e", + "build/_data/elections/oakland/2014-11-04.json:largest_independent_expenditures": "5cbc878d9409bf4f2307b5b0a40e28bd", "build/_data/elections/oakland/2014-11-04.json:largest_small_proportion": "e7674c3f02caabf2f94a90f772b3359a", "build/_data/elections/oakland/2014-11-04.json:most_expensive_races": "a5ed19fb9a37babf9209141f3cef94d2", "build/_data/elections/oakland/2014-11-04.json:top_contributors": "87e172dd6621ea16d56995c9d8ef4e01", @@ -7218,7 +7218,7 @@ "build/_data/referendum_supporting/oakland/2022-11-08/progressive-and-equitable-oakland-gross-receipts-tax.json:voters_edge_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/stats.json:date_processed": "cda05e11d2adbf38316f33f18680c106", "build/_data/totals.json:berkeley-2018": "b5797ed81b73878816ce4a247f1b1c2e", - "build/_data/totals.json:oakland-2014": "d18551b05699ed34f2d5d6065d96ee4a", + "build/_data/totals.json:oakland-2014": "4a98d47a8e2391749eb0fd8215464139", "build/_data/totals.json:oakland-2016": "ad77a1a3506d018f0a55cec025659d58", "build/_data/totals.json:oakland-2018": "a82daa67fc35f3e6468d1d7895b216a9", "build/_data/totals.json:oakland-2020": "7c71233b779e5bd899af69727d050890", @@ -7232,4 +7232,4 @@ "build/_data/totals.json:sf-2016": "b5797ed81b73878816ce4a247f1b1c2e", "build/_data/totals.json:sf-2018": "b5797ed81b73878816ce4a247f1b1c2e", "build/_data/totals.json:sf-june-2018": "b5797ed81b73878816ce4a247f1b1c2e" -} +} \ No newline at end of file ```
ChenglimEar commented 5 months ago

@mikeubell There are some differences in the build output that are due to DISTINCT in SQL picking out different rows when there are multiple committees for the same Filer_ID. As an example, take a look at the difference for build/_data/candidates/oakland/2014-11-04/bryan-parker.json. The value for Filer_NamL is different and it comes from this query in the independent_candidate_expenditures view:

SELECT DISTINCT ON ("Filer_ID") "Filer_ID", "Filer_NamL"
    FROM committees WHERE "Filer_ID" = '983545';

The following query shows that there are two rows for the same Filer_ID and so the DISTINCT portion of the query picks a different one before and after the csvkit upgrade:

disclosure-backend=# SELECT "Filer_ID", "Filer_NamL"
    FROM committees WHERE "Filer_ID" = '983545';
 Filer_ID |                    Filer_NamL                     
----------+---------------------------------------------------
 983545   | OAKPAC, Oakland Metropolitan Chamber of Commerce
 983545   | OAK PAC, Oakland Metropolitan Chamber of Commerce
(2 rows)

If we force it to always pick the same one (like always pick the most recent one), it will help reduce the noise so that we can verify that there aren't any other differences that are more serious. How do you feel about that? Otherwise, if you think the current set of build output differences are all legit, we can maybe merge them as is. If you're ok with current differences as is, please approve this PR and I can finally merge it. Thanks.

mikeubell commented 5 months ago

It would be better to join the committees table on Ballot_Measure_Election to election_name since committees change names to reflect what they are supporting or opposing for an election. If that does not work then using the newest one would be ok since we are mostly interested in the current election.

On Apr 7, 2024, at 11:11 PM, ChenglimEar @.***> wrote:

@mikeubell https://github.com/mikeubell There are some differences in the build output that are due to DISTINCT in SQL picking out different rows when there are multiple committees for the same Filer_ID. As an example, take a look at the difference for build/_data/candidates/oakland/2014-11-04/bryan-parker.json. The value for Filer_NamL is different and it comes from this query in the independent_candidate_expenditures view:

SELECT DISTINCT ON ("Filer_ID") "Filer_ID", "Filer_NamL" FROM committees WHERE "Filer_ID" = '983545'; The following query shows that there are two rows for the same Filer_ID and so the DISTINCT portion of the query picks a different one before and after the csvkit upgrade:

disclosure-backend=# SELECT "Filer_ID", "Filer_NamL" FROM committees WHERE "Filer_ID" = '983545'; Filer_ID | Filer_NamL
----------+--------------------------------------------------- 983545 | OAKPAC, Oakland Metropolitan Chamber of Commerce 983545 | OAK PAC, Oakland Metropolitan Chamber of Commerce (2 rows) If we force it to always pick the same one (like always pick the most recent one), it will help reduce the noise so that we can verify that there aren't any other differences that are more serious. How do you feel about that? Otherwise, if you think the current set of build output differences are all legit, we can maybe merge them as is. If you're ok with current differences as is, please approve this PR and I can finally merge it. Thanks.

— Reply to this email directly, view it on GitHub https://github.com/caciviclab/disclosure-backend-static/pull/330#issuecomment-2041937064, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABTSH6BX3OBFWZD7TAOFRGTY4IYIXAVCNFSM6AAAAAA62FZEYGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANBRHEZTOMBWGQ. You are receiving this because you were mentioned.

ChenglimEar commented 5 months ago

I'll create a different issue for joining committees on Ballot_Measure_Election since that might open another can of worms and do an interim fix to pick the newest one instead of using DISTINCT to randomly pick one. Hopefully that will remove noise and we can close up this PR.

mikeubell commented 5 months ago
Build diff from Commit 881733eb02e1dfc8fbef40455ede5c01b526ee35: ```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 ec60b9d..d791619 100644 --- a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json +++ b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json @@ -57,7 +57,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/aimee-eng.json b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json index 0118832..d356b76 100644 --- a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json +++ b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json @@ -31,7 +31,7 @@ "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": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2014" } ], @@ -69,7 +69,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/andrew-park.json b/build/_data/candidates/oakland/2014-11-04/andrew-park.json index fec2d0a..8ca87bd 100644 --- a/build/_data/candidates/oakland/2014-11-04/andrew-park.json +++ b/build/_data/candidates/oakland/2014-11-04/andrew-park.json @@ -60,7 +60,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/annie-campbell-washington.json b/build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json index df4117c..02bd05a 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,7 @@ "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" } ], @@ -67,7 +67,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/brenda-roberts.json b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json index 7cc2965..49b2b76 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -58,7 +58,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/bryan-parker.json b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json index 9301ff5..a59f3a1 100644 --- a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json +++ b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json @@ -25,15 +25,8 @@ "total_contributions": 237608.59, "total_expenditures": 376955.55, "total_loans_received": 0.0, - "total_supporting_independent": 18896.26, + "total_supporting_independent": 10446.26, "support_list": [ - { - "Total": 8450.0, - "Cand_ID": 1357609, - "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland", - "election_name": "oakland-2014" - }, { "Total": 10446.26, "Cand_ID": 1357609, @@ -81,7 +74,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/charles-williams.json b/build/_data/candidates/oakland/2014-11-04/charles-williams.json index 7e3256a..97f35c1 100644 --- a/build/_data/candidates/oakland/2014-11-04/charles-williams.json +++ b/build/_data/candidates/oakland/2014-11-04/charles-williams.json @@ -56,7 +56,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/cheri-spigner.json b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json index 9644056..85ea35e 100644 --- a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json +++ b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json @@ -57,7 +57,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/christopher-dobbins.json b/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json index 6e6468e..0357ace 100644 --- a/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json +++ b/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json @@ -43,7 +43,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/courtney-ruby.json b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json index 1670908..72b015c 100644 --- a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json +++ b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json @@ -62,7 +62,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/dan-siegel.json b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json index 4390ec2..f6142f6 100644 --- a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json +++ b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json @@ -63,7 +63,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/dana-king.json b/build/_data/candidates/oakland/2014-11-04/dana-king.json index 0171f3f..b0c7349 100644 --- a/build/_data/candidates/oakland/2014-11-04/dana-king.json +++ b/build/_data/candidates/oakland/2014-11-04/dana-king.json @@ -66,7 +66,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/desley-brooks.json b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json index 00f760b..e2eb75b 100644 --- a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json +++ b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json @@ -69,7 +69,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/eric-wilson.json b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json index faae215..552c92a 100644 --- a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json +++ b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json @@ -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 6de3dca..1251145 100644 --- a/build/_data/candidates/oakland/2014-11-04/james-moore.json +++ b/build/_data/candidates/oakland/2014-11-04/james-moore.json @@ -51,7 +51,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/jason-anderson.json b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json index 9eeec22..19eebb5 100644 --- a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json +++ b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json @@ -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 dc62084..c915a72 100644 --- a/build/_data/candidates/oakland/2014-11-04/jean-quan.json +++ b/build/_data/candidates/oakland/2014-11-04/jean-quan.json @@ -56,18 +56,12 @@ } }, "opposing_money": { - "opposing_expenditures": 8450.0, + "opposing_expenditures": null, "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", - "election_name": "oakland-2014" - } + ] }, "total_contributions": 242342.31, 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 4ae79be..59b45e2 100644 --- a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json +++ b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json @@ -59,7 +59,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/joe-tuman.json b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json index d9a4948..cfd6e51 100644 --- a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json +++ b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json @@ -25,15 +25,9 @@ "total_contributions": 115502.98, "total_expenditures": 250571.9, "total_loans_received": -4211.02, - "total_supporting_independent": 8450.0, + "total_supporting_independent": 0.0, "support_list": [ - { - "Total": 8450.0, - "Cand_ID": 1359017, - "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland", - "election_name": "oakland-2014" - } + ], "contributions_by_type": { "Individual": 102747.0, @@ -70,7 +64,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/karl-debro.json b/build/_data/candidates/oakland/2014-11-04/karl-debro.json index d96e639..dfa6963 100644 --- a/build/_data/candidates/oakland/2014-11-04/karl-debro.json +++ b/build/_data/candidates/oakland/2014-11-04/karl-debro.json @@ -52,7 +52,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-houston.json b/build/_data/candidates/oakland/2014-11-04/ken-houston.json index 2aacde9..809e942 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-houston.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-houston.json @@ -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 df41991..1f1c480 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json @@ -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 ad30c58..49ed08e 100644 --- a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json +++ b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json @@ -61,7 +61,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/len-raphael.json b/build/_data/candidates/oakland/2014-11-04/len-raphael.json index 66a729e..baf5b13 100644 --- a/build/_data/candidates/oakland/2014-11-04/len-raphael.json +++ b/build/_data/candidates/oakland/2014-11-04/len-raphael.json @@ -54,7 +54,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/libby-schaaf.json b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json index 332fa18..bc3910a 100644 --- a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json +++ b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json @@ -25,15 +25,8 @@ "total_contributions": 334897.66, "total_expenditures": 433858.34, "total_loans_received": -1050.0, - "total_supporting_independent": 9194.45, + "total_supporting_independent": 744.45, "support_list": [ - { - "Total": 8450.0, - "Cand_ID": 1362261, - "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland", - "election_name": "oakland-2014" - }, { "Total": 744.45, "Cand_ID": 1362261, @@ -62,7 +55,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/michael-johnson.json b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json index 0bf523f..807e455 100644 --- a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json +++ b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json @@ -55,7 +55,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/nancy-sidebotham.json b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json index 013d9c6..1b72032 100644 --- a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json +++ b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json @@ -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/nicolas-heidorn.json b/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json index 01991a7..2b985dc 100644 --- a/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json +++ b/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json @@ -46,7 +46,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 7770371..0da496a 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,7 @@ "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": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2014" } ], @@ -67,7 +67,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/pat-mccullough.json b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json index baa4dcb..1c7a341 100644 --- a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json +++ b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json @@ -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 e7d19bd..f16dbbe 100644 --- a/build/_data/candidates/oakland/2014-11-04/paul-lim.json +++ b/build/_data/candidates/oakland/2014-11-04/paul-lim.json @@ -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 8e0d9c5..d67f351 100644 --- a/build/_data/candidates/oakland/2014-11-04/peter-liu.json +++ b/build/_data/candidates/oakland/2014-11-04/peter-liu.json @@ -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 012c3c2..e18c962 100644 --- a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json @@ -25,15 +25,8 @@ "total_contributions": 347445.36, "total_expenditures": 349939.31, "total_loans_received": 0.0, - "total_supporting_independent": 10744.45, + "total_supporting_independent": 744.45, "support_list": [ - { - "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", - "election_name": "oakland-2014" - }, { "Total": 744.45, "Cand_ID": 1367270, @@ -82,7 +75,7 @@ } }, "opposing_money": { - "opposing_expenditures": 8450.0, + "opposing_expenditures": null, "opposing_by_type": { "MON": 1500.0, "Cable ads": 150000.0, @@ -90,13 +83,7 @@ "Independent Expenditure Supporting/Opposing Others": 43450.0 }, "opposition_list": [ - { - "Total": 8450.0, - "Cand_ID": 1367270, - "Filer_ID": "1370519", - "Filer_NamL": "Citizens for Oakland", - "election_name": "oakland-2014" - } + ] }, "total_contributions": 347445.36, 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 e91c373..0743b10 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,7 @@ "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": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2014" } ], @@ -62,7 +62,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/saied-karamooz.json b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json index c08acb0..c06b9c9 100644 --- a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json +++ b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json @@ -46,7 +46,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/saleem-shakir-gilmore.json b/build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json index 54fa295..21d748f 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,7 @@ "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": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2014" } ], @@ -62,7 +62,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/shanthi-gonzales.json b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json index 03d1aef..8e63e14 100644 --- a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json @@ -58,7 +58,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/shereda-nosakhare.json b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json index 8ee69fa..2ce3a31 100644 --- a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json +++ b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json @@ -56,7 +56,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/summuel-washington.json b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json index 59cb31d..e937f97 100644 --- a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json @@ -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 035ebbe..ff89915 100644 --- a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json +++ b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json @@ -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 4c58e1d..4ab6f73 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 @@ -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/chris-jackson.json b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json index 3e39664..a56797e 100644 --- a/build/_data/candidates/oakland/2016-11-08/chris-jackson.json +++ b/build/_data/candidates/oakland/2016-11-08/chris-jackson.json @@ -63,7 +63,7 @@ "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": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "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 7ac2708..943859a 100644 --- a/build/_data/candidates/oakland/2016-11-08/dan-kalb.json +++ b/build/_data/candidates/oakland/2016-11-08/dan-kalb.json @@ -77,7 +77,7 @@ "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/huber-trenado.json b/build/_data/candidates/oakland/2016-11-08/huber-trenado.json index 131f0d8..81992e2 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,7 @@ "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": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2016" } ], 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 208f199..6ba509a 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,7 @@ "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": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2016" } ], diff --git a/build/_data/candidates/oakland/2016-11-08/jody-london.json b/build/_data/candidates/oakland/2016-11-08/jody-london.json index d332388..3512da7 100644 --- a/build/_data/candidates/oakland/2016-11-08/jody-london.json +++ b/build/_data/candidates/oakland/2016-11-08/jody-london.json @@ -31,7 +31,7 @@ "Total": 5780.41, "Cand_ID": 1303019, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2016" } ], diff --git a/build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json b/build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json index cb50bc1..fa653ee 100644 --- a/build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json +++ b/build/_data/candidates/oakland/2016-11-08/jumoke-hinton-hodge.json @@ -31,7 +31,7 @@ "Total": 151789.87, "Cand_ID": 1386416, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2016" } ], diff --git a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json index 26c8e12..2ef368e 100644 --- a/build/_data/candidates/oakland/2016-11-08/noel-gallo.json +++ b/build/_data/candidates/oakland/2016-11-08/noel-gallo.json @@ -68,7 +68,7 @@ "Total": 39316.35, "Cand_ID": 1388641, "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/roseann-torres.json b/build/_data/candidates/oakland/2016-11-08/roseann-torres.json index ce2b1ef..136cf52 100644 --- a/build/_data/candidates/oakland/2016-11-08/roseann-torres.json +++ b/build/_data/candidates/oakland/2016-11-08/roseann-torres.json @@ -31,7 +31,7 @@ "Total": 6987.5, "Cand_ID": 1379121, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2016" } ], diff --git a/build/_data/candidates/oakland/2018-11-06/abel-guillen.json b/build/_data/candidates/oakland/2018-11-06/abel-guillen.json index 7b00689..bc01171 100644 --- a/build/_data/candidates/oakland/2018-11-06/abel-guillen.json +++ b/build/_data/candidates/oakland/2018-11-06/abel-guillen.json @@ -31,7 +31,7 @@ "Total": 47523.0, "Cand_ID": 1395580, "Filer_ID": "892160", - "Filer_NamL": "International Association of Firefighter Local 55 Political Action, Sponsored by: Int'l Assoc. of Firefighter Local 55", + "Filer_NamL": "International Association of Firefighter Local 55 Political Action, sponsored by: Int'l Assoc. of Firefighter Local 55", "election_name": "oakland-2018" } ], diff --git a/build/_data/candidates/oakland/2018-11-06/gary-yee.json b/build/_data/candidates/oakland/2018-11-06/gary-yee.json index a6b10d2..46d71ac 100644 --- a/build/_data/candidates/oakland/2018-11-06/gary-yee.json +++ b/build/_data/candidates/oakland/2018-11-06/gary-yee.json @@ -31,7 +31,7 @@ "Total": 149368.03, "Cand_ID": 1409088, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2018" } ], diff --git a/build/_data/candidates/oakland/2018-11-06/pamela-price.json b/build/_data/candidates/oakland/2018-11-06/pamela-price.json index 06c4c6e..a6bb840 100644 --- a/build/_data/candidates/oakland/2018-11-06/pamela-price.json +++ b/build/_data/candidates/oakland/2018-11-06/pamela-price.json @@ -70,7 +70,7 @@ "Total": 2500.0, "Cand_ID": 1407729, "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-2018" } ] diff --git a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json index 8182eb8..52b23d2 100644 --- a/build/_data/candidates/oakland/2018-11-06/sheng-thao.json +++ b/build/_data/candidates/oakland/2018-11-06/sheng-thao.json @@ -31,7 +31,7 @@ "Total": 8117.0, "Cand_ID": 1405456, "Filer_ID": "892160", - "Filer_NamL": "International Association of Firefighter Local 55 Political Action, Sponsored by: Int'l Assoc. of Firefighter Local 55", + "Filer_NamL": "International Association of Firefighter Local 55 Political Action, sponsored by: Int'l Assoc. of Firefighter Local 55", "election_name": "oakland-2018" }, { @@ -45,7 +45,7 @@ "Total": 105973.64, "Cand_ID": 1405456, "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-2018" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json b/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json index 640da18..8093f41 100644 --- a/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json +++ b/build/_data/candidates/oakland/2020-11-03/austin-dannhaus.json @@ -28,17 +28,17 @@ "total_supporting_independent": 233834.24, "support_list": [ { - "Total": 17656.23, + "Total": 216178.01, "Cand_ID": 1427828, - "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "Filer_ID": "1431009", + "Filer_NamL": "Families in Action for Justice Fund", "election_name": "oakland-2020" }, { - "Total": 216178.01, + "Total": 17656.23, "Cand_ID": 1427828, - "Filer_ID": "1431009", - "Filer_NamL": "Families in Action for Justice Fund", + "Filer_ID": "1331137", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json b/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json index 89ff633..81fd693 100644 --- a/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json +++ b/build/_data/candidates/oakland/2020-11-03/clifford-thompson.json @@ -35,17 +35,17 @@ "election_name": "oakland-2020" }, { - "Total": 33214.74, + "Total": 14491.25, "Cand_ID": 1427679, - "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "Filer_ID": "1431009", + "Filer_NamL": "Families in Action for Justice Fund", "election_name": "oakland-2020" }, { - "Total": 14491.25, + "Total": 33214.74, "Cand_ID": 1427679, - "Filer_ID": "1431009", - "Filer_NamL": "Families in Action for Justice Fund", + "Filer_ID": "1331137", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json index f622e75..694925d 100644 --- a/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json +++ b/build/_data/candidates/oakland/2020-11-03/derreck-b-johnson.json @@ -38,7 +38,7 @@ "Total": 133700.0, "Cand_ID": 1426780, "Filer_ID": "1428904", - "Filer_NamL": "Committee for an Affordable East Bay supporting Derreck Johnson and opposing Rebecca Kaplan for Oakland City Council At-Large 2020", + "Filer_NamL": "Committee for an Affordable East Bay", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json b/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json index 215559d..107d6b7 100644 --- a/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json +++ b/build/_data/candidates/oakland/2020-11-03/leroy-gaines.json @@ -28,17 +28,17 @@ "total_supporting_independent": 155285.13, "support_list": [ { - "Total": 137796.16, + "Total": 17488.97, "Cand_ID": 1431908, - "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "Filer_ID": "1431009", + "Filer_NamL": "Families in Action for Justice Fund", "election_name": "oakland-2020" }, { - "Total": 17488.97, + "Total": 137796.16, "Cand_ID": 1431908, - "Filer_ID": "1431009", - "Filer_NamL": "Families in Action for Justice Fund", + "Filer_ID": "1331137", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json b/build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json index 613b7ee..61e5c93 100644 --- a/build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json +++ b/build/_data/candidates/oakland/2020-11-03/maiya-edgerly.json @@ -28,17 +28,17 @@ "total_supporting_independent": 209329.51, "support_list": [ { - "Total": 154626.1, + "Total": 54703.41, "Cand_ID": 1430558, - "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "Filer_ID": "1431009", + "Filer_NamL": "Families in Action for Justice Fund", "election_name": "oakland-2020" }, { - "Total": 54703.41, + "Total": 154626.1, "Cand_ID": 1430558, - "Filer_ID": "1431009", - "Filer_NamL": "Families in Action for Justice Fund", + "Filer_ID": "1331137", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/mark-hurty.json b/build/_data/candidates/oakland/2020-11-03/mark-hurty.json index 1550d49..11fa01a 100644 --- a/build/_data/candidates/oakland/2020-11-03/mark-hurty.json +++ b/build/_data/candidates/oakland/2020-11-03/mark-hurty.json @@ -31,7 +31,7 @@ "Total": 40444.65, "Cand_ID": 1422177, "Filer_ID": "1331137", - "Filer_NamL": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "Filer_NamL": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020" } ], diff --git a/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json b/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json index 827eec2..17eccfd 100644 --- a/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2020-11-03/rebecca-kaplan.json @@ -97,7 +97,7 @@ "Total": 35000.0, "Cand_ID": 1419466, "Filer_ID": "1428904", - "Filer_NamL": "Committee for an Affordable East Bay supporting Derreck Johnson and opposing Rebecca Kaplan for Oakland City Council At-Large 2020", + "Filer_NamL": "Committee for an Affordable East Bay", "election_name": "oakland-2020" } ] diff --git a/build/_data/candidates/oakland/2022-11-08/nenna-joiner.json b/build/_data/candidates/oakland/2022-11-08/nenna-joiner.json index 30bddb3..6d2736a 100644 --- a/build/_data/candidates/oakland/2022-11-08/nenna-joiner.json +++ b/build/_data/candidates/oakland/2022-11-08/nenna-joiner.json @@ -45,7 +45,7 @@ "Total": 44935.0, "Cand_ID": 1450180, "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-2022" } ], diff --git a/build/_data/committees/1421001.json b/build/_data/committees/1421001.json index df32b3d..05f9af2 100644 --- a/build/_data/committees/1421001.json +++ b/build/_data/committees/1421001.json @@ -1416,7 +1416,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94603", + "Tran_Zip4": "94602", "election_name": "oakland-2020" }, { @@ -1429,7 +1429,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94602", + "Tran_Zip4": "94603", "election_name": "oakland-2020" }, { @@ -1774,26 +1774,26 @@ "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1421001", "Tran_Emp": "Jordan Custom Builders", - "Tran_Occ": "Operations Manager", + "Tran_Occ": "Owner", "Entity_Cd": "Individual", "Tran_Amt1": 200.0, "Tran_Date": "2020-07-21", "Tran_NamF": "Billy", "Tran_NamL": "Jordan", - "Tran_Zip4": "75154", + "Tran_Zip4": "75204", "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1421001", "Tran_Emp": "Jordan Custom Builders", - "Tran_Occ": "Owner", + "Tran_Occ": "Operations Manager", "Entity_Cd": "Individual", "Tran_Amt1": 200.0, "Tran_Date": "2020-07-21", "Tran_NamF": "Billy", "Tran_NamL": "Jordan", - "Tran_Zip4": "75204", + "Tran_Zip4": "75154", "election_name": "oakland-2020" }, { diff --git a/build/_data/elections/oakland/2014-11-04.json b/build/_data/elections/oakland/2014-11-04.json index 0e31d85..ce06eda 100644 --- a/build/_data/elections/oakland/2014-11-04.json +++ b/build/_data/elections/oakland/2014-11-04.json @@ -60,12 +60,12 @@ ], "largest_independent_expenditures": [ { - "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "name": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2014", "total_spending": 107576.9 }, { - "name": "Unity PAC, a sponsored committee of the Alameda Labor Council, AFL-CIO", + "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", "election_name": "oakland-2014", "total_spending": 89243.48 }, diff --git a/build/_data/elections/oakland/2016-11-08.json b/build/_data/elections/oakland/2016-11-08.json index 16820bd..99e9877 100644 --- a/build/_data/elections/oakland/2016-11-08.json +++ b/build/_data/elections/oakland/2016-11-08.json @@ -60,12 +60,12 @@ ], "largest_independent_expenditures": [ { - "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "name": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2016", "total_spending": 486753.01 }, { - "name": "Oakland Police Officer’s Association - Political Action Committee", + "name": "Oakland Police Officer's Association - Political Action Committee", "election_name": "oakland-2016", "total_spending": 50759.88 }, diff --git a/build/_data/elections/oakland/2018-11-06.json b/build/_data/elections/oakland/2018-11-06.json index 4f06e65..44ae9e8 100644 --- a/build/_data/elections/oakland/2018-11-06.json +++ b/build/_data/elections/oakland/2018-11-06.json @@ -60,7 +60,7 @@ ], "largest_independent_expenditures": [ { - "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "name": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2018", "total_spending": 149368.03 }, diff --git a/build/_data/elections/oakland/2020-11-03.json b/build/_data/elections/oakland/2020-11-03.json index 108e714..099ed9f 100644 --- a/build/_data/elections/oakland/2020-11-03.json +++ b/build/_data/elections/oakland/2020-11-03.json @@ -65,7 +65,7 @@ "total_spending": 395215.85 }, { - "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "name": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020", "total_spending": 340009.22 }, diff --git a/build/_data/stats.json b/build/_data/stats.json index e10709c..74f4147 100644 --- a/build/_data/stats.json +++ b/build/_data/stats.json @@ -1,3 +1,3 @@ { - "date_processed": "2024-04-12 00:09:26 -0700" + "date_processed": "2024-04-13 00:08:40 -0700" } diff --git a/build/_data/totals.json b/build/_data/totals.json index 0c48ba7..311068d 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -94,12 +94,12 @@ ], "largest_independent_expenditures": [ { - "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "name": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2014", "total_spending": 107576.9 }, { - "name": "Unity PAC, a sponsored committee of the Alameda Labor Council, AFL-CIO", + "name": "Unity PAC, a Sponsored Committee of the Alameda Labor Council, AFL-CIO", "election_name": "oakland-2014", "total_spending": 89243.48 }, @@ -255,12 +255,12 @@ ], "largest_independent_expenditures": [ { - "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "name": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2016", "total_spending": 486753.01 }, { - "name": "Oakland Police Officer’s Association - Political Action Committee", + "name": "Oakland Police Officer's Association - Political Action Committee", "election_name": "oakland-2016", "total_spending": 50759.88 }, @@ -450,7 +450,7 @@ ], "largest_independent_expenditures": [ { - "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "name": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2018", "total_spending": 149368.03 }, @@ -650,7 +650,7 @@ "total_spending": 395215.85 }, { - "name": "Families and Educators for Public Education, Sponsored by Go Public Schools Advocates", + "name": "GO PUBLIC SCHOOLS ADVOCATES Community-Powered Candidate Committee", "election_name": "oakland-2020", "total_spending": 340009.22 }, diff --git a/build/digests.json b/build/digests.json index c578743..35d7e0a 100644 --- a/build/digests.json +++ b/build/digests.json @@ -147,7 +147,7 @@ "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:name": "3bafca4830eb6221ef7507093c554607", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", - "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:supporting_money": "1f2510d6ea78d5c843ee29b424d0bbdd", @@ -173,10 +173,10 @@ "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:name": "b3c8327c721ad8cf3972fa59fe240fe8", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:office_election": "1679091c5a880faf6fb5e6087eb1b2dc", - "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", - "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:supporting_money": "76a3c91f10178ed5d6749106c245736d", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:supporting_money": "239ed89a8fa897809549120baaeab135", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:total_contributions": "de3b02372ae781826f4e9d939c701b67", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:total_expenditures": "32cd0bd92a6a22ae661637898d23976d", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:total_loans_received": "50a12fc5b383f2a9a5b2fa9dc4f03970", @@ -199,7 +199,7 @@ "build/_data/candidates/oakland/2014-11-04/andrew-park.json:name": "8bb24ba9079b9dcb2a59766952876314", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", - "build/_data/candidates/oakland/2014-11-04/andrew-park.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:supporting_money": "88d510309349c40e4bbbdf2b39a5fc9f", @@ -225,10 +225,10 @@ "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:name": "1040e1eaf0afb1a73b6ae2ebd403db3e", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", - "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", - "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:supporting_money": "1e580ed6fffab565fb116a37342dcb27", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:supporting_money": "48381fafb67e3ed47319d00619f933af", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:total_contributions": "d0199ba440e72f1f77b0eb7c443ececf", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:total_expenditures": "3953014b118ea61804956ea39e20eb7b", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:total_loans_received": "ac9b657f0751dd78c0711f2154b0a531", @@ -251,7 +251,7 @@ "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:name": "d9911ee528c99cd5789e366d1658d5b6", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:office_election": "c81e728d9d4c2f636f067f89cc14862c", - "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:supporting_money": "df4fb24802ed66740e2700b789159d2b", @@ -277,10 +277,10 @@ "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:name": "62cf42ff63e6044ad6c96da7dfa55a2f", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", - "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:supporting_money": "bd4a5a0ccdc6651697fea97c3db3ec57", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:supporting_money": "dbcaaf56785aeed53e535a416ab67cae", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:total_contributions": "3f590ec68ea817ed4bc67bcfed6f0571", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:total_expenditures": "2344b3dcee2084b99b8f20e6597eb2d7", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", @@ -303,7 +303,7 @@ "build/_data/candidates/oakland/2014-11-04/charles-williams.json:name": "09ee4270a18428ae375b17897df79cc6", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/charles-williams.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:supporting_money": "c662cbd448735429cac64c70b10f5e4c", @@ -329,7 +329,7 @@ "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:name": "22c2a747501eaf822df16ebb83372197", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:office_election": "8f14e45fceea167a5a36dedd4bea2543", - "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:supporting_money": "3bfebbf878203c92a71b0b87acc3cf4b", @@ -355,7 +355,7 @@ "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:name": "b985b1cfd6d248381a61d10a35808b20", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:office_election": "c9f0f895fb98ab9159f51fd0297e236d", - "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:supporting_money": "7148c4732f5e679e2172179eab04178c", @@ -381,7 +381,7 @@ "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:name": "76884662ac75e9979f6b9b68f6426a1b", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:supporting_money": "8bef800fd7d749c2cda4ba308c26d354", @@ -407,7 +407,7 @@ "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:name": "4a206a603d548ae4cfb5ea0f5a00a724", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:supporting_money": "f91667805e2ab6a11d0e91c519546827", @@ -433,7 +433,7 @@ "build/_data/candidates/oakland/2014-11-04/dana-king.json:name": "8141c520652fc3c573e60d6508ca685a", "build/_data/candidates/oakland/2014-11-04/dana-king.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dana-king.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", - "build/_data/candidates/oakland/2014-11-04/dana-king.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/dana-king.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dana-king.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dana-king.json:supporting_money": "db5297a2c12b26a44f25237ec6afa2d2", @@ -459,7 +459,7 @@ "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:name": "fe2bf21862b0e32634ffbaf4ac782bbe", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", - "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:supporting_money": "03220387bbd132d79dcfad682f82a31d", @@ -485,7 +485,7 @@ "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:name": "6ac1046830bc17c3d2ae469f93fb1870", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -511,7 +511,7 @@ "build/_data/candidates/oakland/2014-11-04/james-moore.json:name": "c4b1f5bd9c64853862922d4dfeeec964", "build/_data/candidates/oakland/2014-11-04/james-moore.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/james-moore.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", - "build/_data/candidates/oakland/2014-11-04/james-moore.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/james-moore.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/james-moore.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/james-moore.json:supporting_money": "bb9695eae1425746d8d3a86004a5badc", @@ -537,7 +537,7 @@ "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:name": "fb70326ee47f4bdfe60d92815dd6fe53", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:supporti ```
mikeubell commented 5 months ago
Build diff from Commit a828a72ac86a1874b24ea359cecb0fa8ba7c82a2: ```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 d791619..ec60b9d 100644 --- a/build/_data/candidates/oakland/2014-11-04/abel-guillen.json +++ b/build/_data/candidates/oakland/2014-11-04/abel-guillen.json @@ -57,7 +57,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 d356b76..902ecba 100644 --- a/build/_data/candidates/oakland/2014-11-04/aimee-eng.json +++ b/build/_data/candidates/oakland/2014-11-04/aimee-eng.json @@ -69,7 +69,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 8ca87bd..fec2d0a 100644 --- a/build/_data/candidates/oakland/2014-11-04/andrew-park.json +++ b/build/_data/candidates/oakland/2014-11-04/andrew-park.json @@ -60,7 +60,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 02bd05a..a25b766 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 @@ -67,7 +67,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 49b2b76..7cc2965 100644 --- a/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json +++ b/build/_data/candidates/oakland/2014-11-04/brenda-roberts.json @@ -58,7 +58,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 a59f3a1..9301ff5 100644 --- a/build/_data/candidates/oakland/2014-11-04/bryan-parker.json +++ b/build/_data/candidates/oakland/2014-11-04/bryan-parker.json @@ -25,8 +25,15 @@ "total_contributions": 237608.59, "total_expenditures": 376955.55, "total_loans_received": 0.0, - "total_supporting_independent": 10446.26, + "total_supporting_independent": 18896.26, "support_list": [ + { + "Total": 8450.0, + "Cand_ID": 1357609, + "Filer_ID": "1370519", + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" + }, { "Total": 10446.26, "Cand_ID": 1357609, @@ -74,7 +81,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 97f35c1..7e3256a 100644 --- a/build/_data/candidates/oakland/2014-11-04/charles-williams.json +++ b/build/_data/candidates/oakland/2014-11-04/charles-williams.json @@ -56,7 +56,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 85ea35e..9644056 100644 --- a/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json +++ b/build/_data/candidates/oakland/2014-11-04/cheri-spigner.json @@ -57,7 +57,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 0357ace..6e6468e 100644 --- a/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json +++ b/build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json @@ -43,7 +43,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 72b015c..1670908 100644 --- a/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json +++ b/build/_data/candidates/oakland/2014-11-04/courtney-ruby.json @@ -62,7 +62,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 f6142f6..4390ec2 100644 --- a/build/_data/candidates/oakland/2014-11-04/dan-siegel.json +++ b/build/_data/candidates/oakland/2014-11-04/dan-siegel.json @@ -63,7 +63,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 b0c7349..0171f3f 100644 --- a/build/_data/candidates/oakland/2014-11-04/dana-king.json +++ b/build/_data/candidates/oakland/2014-11-04/dana-king.json @@ -66,7 +66,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 e2eb75b..00f760b 100644 --- a/build/_data/candidates/oakland/2014-11-04/desley-brooks.json +++ b/build/_data/candidates/oakland/2014-11-04/desley-brooks.json @@ -69,7 +69,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 552c92a..faae215 100644 --- a/build/_data/candidates/oakland/2014-11-04/eric-wilson.json +++ b/build/_data/candidates/oakland/2014-11-04/eric-wilson.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 1251145..6de3dca 100644 --- a/build/_data/candidates/oakland/2014-11-04/james-moore.json +++ b/build/_data/candidates/oakland/2014-11-04/james-moore.json @@ -51,7 +51,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 19eebb5..9eeec22 100644 --- a/build/_data/candidates/oakland/2014-11-04/jason-anderson.json +++ b/build/_data/candidates/oakland/2014-11-04/jason-anderson.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 c915a72..dc62084 100644 --- a/build/_data/candidates/oakland/2014-11-04/jean-quan.json +++ b/build/_data/candidates/oakland/2014-11-04/jean-quan.json @@ -56,12 +56,18 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "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", + "election_name": "oakland-2014" + } ] }, "total_contributions": 242342.31, 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 59b45e2..4ae79be 100644 --- a/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json +++ b/build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json @@ -59,7 +59,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 cfd6e51..d9a4948 100644 --- a/build/_data/candidates/oakland/2014-11-04/joe-tuman.json +++ b/build/_data/candidates/oakland/2014-11-04/joe-tuman.json @@ -25,9 +25,15 @@ "total_contributions": 115502.98, "total_expenditures": 250571.9, "total_loans_received": -4211.02, - "total_supporting_independent": 0.0, + "total_supporting_independent": 8450.0, "support_list": [ - + { + "Total": 8450.0, + "Cand_ID": 1359017, + "Filer_ID": "1370519", + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" + } ], "contributions_by_type": { "Individual": 102747.0, @@ -64,7 +70,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 dfa6963..d96e639 100644 --- a/build/_data/candidates/oakland/2014-11-04/karl-debro.json +++ b/build/_data/candidates/oakland/2014-11-04/karl-debro.json @@ -52,7 +52,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 809e942..2aacde9 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-houston.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-houston.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 1f1c480..df41991 100644 --- a/build/_data/candidates/oakland/2014-11-04/ken-maxey.json +++ b/build/_data/candidates/oakland/2014-11-04/ken-maxey.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 49ed08e..ad30c58 100644 --- a/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json +++ b/build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json @@ -61,7 +61,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 baf5b13..66a729e 100644 --- a/build/_data/candidates/oakland/2014-11-04/len-raphael.json +++ b/build/_data/candidates/oakland/2014-11-04/len-raphael.json @@ -54,7 +54,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 bc3910a..332fa18 100644 --- a/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json +++ b/build/_data/candidates/oakland/2014-11-04/libby-schaaf.json @@ -25,8 +25,15 @@ "total_contributions": 334897.66, "total_expenditures": 433858.34, "total_loans_received": -1050.0, - "total_supporting_independent": 744.45, + "total_supporting_independent": 9194.45, "support_list": [ + { + "Total": 8450.0, + "Cand_ID": 1362261, + "Filer_ID": "1370519", + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" + }, { "Total": 744.45, "Cand_ID": 1362261, @@ -55,7 +62,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 807e455..0bf523f 100644 --- a/build/_data/candidates/oakland/2014-11-04/michael-johnson.json +++ b/build/_data/candidates/oakland/2014-11-04/michael-johnson.json @@ -55,7 +55,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 1b72032..013d9c6 100644 --- a/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json +++ b/build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 2b985dc..01991a7 100644 --- a/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json +++ b/build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json @@ -46,7 +46,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 0da496a..fde9362 100644 --- a/build/_data/candidates/oakland/2014-11-04/nina-senn.json +++ b/build/_data/candidates/oakland/2014-11-04/nina-senn.json @@ -67,7 +67,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 1c7a341..baa4dcb 100644 --- a/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json +++ b/build/_data/candidates/oakland/2014-11-04/pat-mccullough.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 f16dbbe..e7d19bd 100644 --- a/build/_data/candidates/oakland/2014-11-04/paul-lim.json +++ b/build/_data/candidates/oakland/2014-11-04/paul-lim.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 d67f351..8e0d9c5 100644 --- a/build/_data/candidates/oakland/2014-11-04/peter-liu.json +++ b/build/_data/candidates/oakland/2014-11-04/peter-liu.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 e18c962..012c3c2 100644 --- a/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json +++ b/build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json @@ -25,8 +25,15 @@ "total_contributions": 347445.36, "total_expenditures": 349939.31, "total_loans_received": 0.0, - "total_supporting_independent": 744.45, + "total_supporting_independent": 10744.45, "support_list": [ + { + "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", + "election_name": "oakland-2014" + }, { "Total": 744.45, "Cand_ID": 1367270, @@ -75,7 +82,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 8450.0, "opposing_by_type": { "MON": 1500.0, "Cable ads": 150000.0, @@ -83,7 +90,13 @@ "Independent Expenditure Supporting/Opposing Others": 43450.0 }, "opposition_list": [ - + { + "Total": 8450.0, + "Cand_ID": 1367270, + "Filer_ID": "1370519", + "Filer_NamL": "Citizens for Oakland", + "election_name": "oakland-2014" + } ] }, "total_contributions": 347445.36, 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 0743b10..e9b2369 100644 --- a/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json +++ b/build/_data/candidates/oakland/2014-11-04/renato-almanzor.json @@ -62,7 +62,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 c06b9c9..c08acb0 100644 --- a/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json +++ b/build/_data/candidates/oakland/2014-11-04/saied-karamooz.json @@ -46,7 +46,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 21d748f..991c884 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 @@ -62,7 +62,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 8e63e14..03d1aef 100644 --- a/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json +++ b/build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json @@ -58,7 +58,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 2ce3a31..8ee69fa 100644 --- a/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json +++ b/build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json @@ -56,7 +56,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ 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 e937f97..59cb31d 100644 --- a/build/_data/candidates/oakland/2014-11-04/summuel-washington.json +++ b/build/_data/candidates/oakland/2014-11-04/summuel-washington.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 ff89915..035ebbe 100644 --- a/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json +++ b/build/_data/candidates/oakland/2014-11-04/vicente-cruz.json @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "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 4ab6f73..4c58e1d 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 @@ -40,7 +40,7 @@ } }, "opposing_money": { - "opposing_expenditures": null, + "opposing_expenditures": 0.0, "opposing_by_type": { }, "opposition_list": [ diff --git a/build/digests.json b/build/digests.json index 35d7e0a..7d5bd58 100644 --- a/build/digests.json +++ b/build/digests.json @@ -147,7 +147,7 @@ "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:name": "3bafca4830eb6221ef7507093c554607", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", - "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/abel-guillen.json:supporting_money": "1f2510d6ea78d5c843ee29b424d0bbdd", @@ -173,7 +173,7 @@ "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:name": "b3c8327c721ad8cf3972fa59fe240fe8", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:office_election": "1679091c5a880faf6fb5e6087eb1b2dc", - "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/aimee-eng.json:supporting_money": "239ed89a8fa897809549120baaeab135", @@ -199,7 +199,7 @@ "build/_data/candidates/oakland/2014-11-04/andrew-park.json:name": "8bb24ba9079b9dcb2a59766952876314", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", - "build/_data/candidates/oakland/2014-11-04/andrew-park.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/andrew-park.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/andrew-park.json:supporting_money": "88d510309349c40e4bbbdf2b39a5fc9f", @@ -225,7 +225,7 @@ "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:name": "1040e1eaf0afb1a73b6ae2ebd403db3e", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", - "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/annie-campbell-washington.json:supporting_money": "48381fafb67e3ed47319d00619f933af", @@ -251,7 +251,7 @@ "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:name": "d9911ee528c99cd5789e366d1658d5b6", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:office_election": "c81e728d9d4c2f636f067f89cc14862c", - "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/brenda-roberts.json:supporting_money": "df4fb24802ed66740e2700b789159d2b", @@ -277,10 +277,10 @@ "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:name": "62cf42ff63e6044ad6c96da7dfa55a2f", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", - "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:supporting_money": "dbcaaf56785aeed53e535a416ab67cae", + "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:supporting_money": "bd4a5a0ccdc6651697fea97c3db3ec57", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:total_contributions": "3f590ec68ea817ed4bc67bcfed6f0571", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:total_expenditures": "2344b3dcee2084b99b8f20e6597eb2d7", "build/_data/candidates/oakland/2014-11-04/bryan-parker.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", @@ -303,7 +303,7 @@ "build/_data/candidates/oakland/2014-11-04/charles-williams.json:name": "09ee4270a18428ae375b17897df79cc6", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/charles-williams.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/charles-williams.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/charles-williams.json:supporting_money": "c662cbd448735429cac64c70b10f5e4c", @@ -329,7 +329,7 @@ "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:name": "22c2a747501eaf822df16ebb83372197", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:office_election": "8f14e45fceea167a5a36dedd4bea2543", - "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/cheri-spigner.json:supporting_money": "3bfebbf878203c92a71b0b87acc3cf4b", @@ -355,7 +355,7 @@ "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:name": "b985b1cfd6d248381a61d10a35808b20", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:office_election": "c9f0f895fb98ab9159f51fd0297e236d", - "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/christopher-dobbins.json:supporting_money": "7148c4732f5e679e2172179eab04178c", @@ -381,7 +381,7 @@ "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:name": "76884662ac75e9979f6b9b68f6426a1b", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/courtney-ruby.json:supporting_money": "8bef800fd7d749c2cda4ba308c26d354", @@ -407,7 +407,7 @@ "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:name": "4a206a603d548ae4cfb5ea0f5a00a724", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dan-siegel.json:supporting_money": "f91667805e2ab6a11d0e91c519546827", @@ -433,7 +433,7 @@ "build/_data/candidates/oakland/2014-11-04/dana-king.json:name": "8141c520652fc3c573e60d6508ca685a", "build/_data/candidates/oakland/2014-11-04/dana-king.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dana-king.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", - "build/_data/candidates/oakland/2014-11-04/dana-king.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/dana-king.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/dana-king.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dana-king.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/dana-king.json:supporting_money": "db5297a2c12b26a44f25237ec6afa2d2", @@ -459,7 +459,7 @@ "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:name": "fe2bf21862b0e32634ffbaf4ac782bbe", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", - "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/desley-brooks.json:supporting_money": "03220387bbd132d79dcfad682f82a31d", @@ -485,7 +485,7 @@ "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:name": "6ac1046830bc17c3d2ae469f93fb1870", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/eric-wilson.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -511,7 +511,7 @@ "build/_data/candidates/oakland/2014-11-04/james-moore.json:name": "c4b1f5bd9c64853862922d4dfeeec964", "build/_data/candidates/oakland/2014-11-04/james-moore.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/james-moore.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", - "build/_data/candidates/oakland/2014-11-04/james-moore.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/james-moore.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/james-moore.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/james-moore.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/james-moore.json:supporting_money": "bb9695eae1425746d8d3a86004a5badc", @@ -537,7 +537,7 @@ "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:name": "fb70326ee47f4bdfe60d92815dd6fe53", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jason-anderson.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -563,7 +563,7 @@ "build/_data/candidates/oakland/2014-11-04/jean-quan.json:name": "890dc099a1f9812c9e380e63b0ea28a2", "build/_data/candidates/oakland/2014-11-04/jean-quan.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jean-quan.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/jean-quan.json:opposing_money": "bec26be4a0715fdf43dbb06a5dee3080", + "build/_data/candidates/oakland/2014-11-04/jean-quan.json:opposing_money": "d00febecafc7ba080207bb5bf7acc0c3", "build/_data/candidates/oakland/2014-11-04/jean-quan.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jean-quan.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jean-quan.json:supporting_money": "4c774d6d6aba7dbe756fc619a060ad1f", @@ -589,7 +589,7 @@ "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:name": "98939522234435cff26b2c844d69f83e", "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", - "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/jill-broadhurst.json:supporting_money": "fb87aadb9b76428c3a112471cb0979bf", @@ -615,10 +615,10 @@ "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:name": "adc6ac3747e1dbabf1d8c1d240f06d2c", "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", - "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:supporting_money": "c42b1d76c26da1234f95a0f588e73941", + "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:supporting_money": "5b17acc30b39820c913b887c6c9bf82d", "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:total_contributions": "83ac9251889f4d988b7ee8a79e48fa66", "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:total_expenditures": "d7261decbdc6e540258223092a96439c", "build/_data/candidates/oakland/2014-11-04/joe-tuman.json:total_loans_received": "292f6c757f81f418aa1fc5a59ffb2b2a", @@ -641,7 +641,7 @@ "build/_data/candidates/oakland/2014-11-04/karl-debro.json:name": "74b10897a07570a9a6c87225cee380a9", "build/_data/candidates/oakland/2014-11-04/karl-debro.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/karl-debro.json:office_election": "8f14e45fceea167a5a36dedd4bea2543", - "build/_data/candidates/oakland/2014-11-04/karl-debro.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/karl-debro.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/karl-debro.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/karl-debro.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/karl-debro.json:supporting_money": "ca245cf5833462c261f0503059c9b5f1", @@ -667,7 +667,7 @@ "build/_data/candidates/oakland/2014-11-04/ken-houston.json:name": "b751a99fdd99b0b8391218f916449659", "build/_data/candidates/oakland/2014-11-04/ken-houston.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/ken-houston.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/ken-houston.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/ken-houston.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/ken-houston.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/ken-houston.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/ken-houston.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -693,7 +693,7 @@ "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:name": "aa94c67efec88209cec9c407b9ff2313", "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", - "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/ken-maxey.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -719,7 +719,7 @@ "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:name": "7520aaa39e242642d26bce0e4b03f636", "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:office_election": "eccbc87e4b5ce2fe28308fd9f2a7baf3", - "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/kevin-blackburn.json:supporting_money": "2d5181877a82e30cc90d587aae67b2f8", @@ -745,7 +745,7 @@ "build/_data/candidates/oakland/2014-11-04/len-raphael.json:name": "bfe450b9bdc461f4ca1fdbe890596dd0", "build/_data/candidates/oakland/2014-11-04/len-raphael.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/len-raphael.json:office_election": "c81e728d9d4c2f636f067f89cc14862c", - "build/_data/candidates/oakland/2014-11-04/len-raphael.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/len-raphael.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/len-raphael.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/len-raphael.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/len-raphael.json:supporting_money": "f55db40929515d6ad4c4afe3ba567195", @@ -771,10 +771,10 @@ "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:name": "378a3e0cfa58d0d874e68866132769af", "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", - "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:supporting_money": "a632306fd909848e35eb59847d1322fd", + "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:supporting_money": "ad602223006b2d363139ad30dcf85679", "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:total_contributions": "6aada6ada23cc7845a9cd19772a9c415", "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:total_expenditures": "e895f4fe6c886f05f392d2960e7a1135", "build/_data/candidates/oakland/2014-11-04/libby-schaaf.json:total_loans_received": "d2fd3a26fd8cb522144c351c806d612d", @@ -797,7 +797,7 @@ "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:name": "acd5e6f23fe8dd524cc270b1682ae049", "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", - "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/michael-johnson.json:supporting_money": "09fb748405487dc6d2d01fb19e283545", @@ -823,7 +823,7 @@ "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:name": "33f6b74cdf3f39b3a61cf14a3ff0d4c4", "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/nancy-sidebotham.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -849,7 +849,7 @@ "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:name": "8a20692e2c8a8d44ab450cac57daccc4", "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", - "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/nicolas-heidorn.json:supporting_money": "bf65ff5fac3f5371efdcf8aebd057566", @@ -875,7 +875,7 @@ "build/_data/candidates/oakland/2014-11-04/nina-senn.json:name": "790246bb98609572c65568c5f82520f3", "build/_data/candidates/oakland/2014-11-04/nina-senn.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/nina-senn.json:office_election": "8f14e45fceea167a5a36dedd4bea2543", - "build/_data/candidates/oakland/2014-11-04/nina-senn.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/nina-senn.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/nina-senn.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/nina-senn.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/nina-senn.json:supporting_money": "aa1abc8e36bcc88f199c12e5ee615e8b", @@ -901,7 +901,7 @@ "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:name": "dfc6bbc22954b35bbc426844b61c61de", "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/pat-mccullough.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -927,7 +927,7 @@ "build/_data/candidates/oakland/2014-11-04/paul-lim.json:name": "db4aa076aedbf15892b09756f081afa3", "build/_data/candidates/oakland/2014-11-04/paul-lim.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/paul-lim.json:office_election": "a87ff679a2f3e71d9181a67b7542122c", - "build/_data/candidates/oakland/2014-11-04/paul-lim.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/paul-lim.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/paul-lim.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/paul-lim.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/paul-lim.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -953,7 +953,7 @@ "build/_data/candidates/oakland/2014-11-04/peter-liu.json:name": "50cbacf626cd9b94c665da7e3887e23b", "build/_data/candidates/oakland/2014-11-04/peter-liu.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/peter-liu.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/peter-liu.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/peter-liu.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/peter-liu.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/peter-liu.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/peter-liu.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -979,10 +979,10 @@ "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:name": "2e2e05a62560df239578c47adfeeb68c", "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:opposing_money": "235bcfb93e944e515ecb7581f823a238", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:opposing_money": "b0bb6e5df0300f661f3475f7ed3f4631", "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", - "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:supporting_money": "ded56ad189169badd8950409353d798f", + "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:supporting_money": "f364b4dc82dad50d218f8a9de0b55e5a", "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:total_contributions": "6de62951634412781c85e659183a030a", "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:total_expenditures": "c5ac2ff1bc3a261070ade927fdbb0a68", "build/_data/candidates/oakland/2014-11-04/rebecca-kaplan.json:total_loans_received": "30565a8911a6bb487e3745c0ea3c8224", @@ -1005,7 +1005,7 @@ "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:name": "5e6145e1a07991542b53976fa219407c", "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:office_election": "c9f0f895fb98ab9159f51fd0297e236d", - "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/renato-almanzor.json:supporting_money": "71493456708e8fa13ac3f0c045431958", @@ -1031,7 +1031,7 @@ "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:name": "39fe6bd8794e8cb4adf6d497a96472aa", "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/saied-karamooz.json:supporting_money": "6cee454c8b46848ef0259360c7e97e86", @@ -1057,7 +1057,7 @@ "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:name": "f8bf69645879afcf194e1d23e08d3dba", "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:office_election": "8f14e45fceea167a5a36dedd4bea2543", - "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/saleem-shakir-gilmore.json:supporting_money": "a98ff95e2570cd1812c2adc5d5d0c4ed", @@ -1083,7 +1083,7 @@ "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:name": "0f0f9afac3485860904c106d2b1904cc", "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:office_election": "c9f0f895fb98ab9159f51fd0297e236d", - "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/shanthi-gonzales.json:supporting_money": "ff818ca42e06ae11d03b5e831460c419", @@ -1109,7 +1109,7 @@ "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:name": "04e68149a40fff77be1c7b3c72c8629f", "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", - "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/shereda-nosakhare.json:supporting_money": "8dbdfc260094510a6c43c811dae6097f", @@ -1135,7 +1135,7 @@ "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:name": "6d33a4a9091e4cb65b78a092d83c3604", "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:office_election": "c4ca4238a0b923820dcc509a6f75849b", - "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/summuel-washington.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -1161,7 +1161,7 @@ "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:name": "f0e7ed2a32eae0b54e27ed4a8f8b0950", "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:office_election": "e4da3b7fbbce2345d7772b0674a318d5", - "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/vicente-cruz.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", @@ -1187,7 +1187,7 @@ "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:name": "e9f4c9366ab2790915ec351cf3fc77ad", "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:occupation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:office_election": "1679091c5a880faf6fb5e6087eb1b2dc", - "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:opposing_money": "afbcf2c18f150bac0905ceffb9c94bbc", + "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:opposing_money": "1e4c58a37447b1f9cc678d3b2061b4e5", "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:party_affiliation": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:photo_url": "37a6259cc0c1dae299a7866489dff0bd", "build/_data/candidates/oakland/2014-11-04/william-bo-ghirardelli.json:supporting_money": "6ac3c9c1b176b8840eeefc612dc0e8d5", diff --git a/build/schema.sql b/build/schema.sql index 7ddc4cf..0e830b9 100644 --- a/build/schema.sql +++ b/build/schema.sql @@ -1918,8 +1918,7 @@ CREATE VIEW public.independent_candidate_expenditures AS FROM ( SELECT committees."Filer_ID", committees."Filer_NamL", ```
mikeubell commented 5 months ago
Build diff from Commit 5006c2879b1bfbd1077871a7c40b164f20f62898: ```diff diff --git a/build/_data/elections/oakland/2018-06-05.json b/build/_data/elections/oakland/2018-06-05.json index b39b338..140316d 100644 --- a/build/_data/elections/oakland/2018-06-05.json +++ b/build/_data/elections/oakland/2018-06-05.json @@ -57,7 +57,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_contributions": 10000.0 diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index b6947b7..31324e7 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -73,13 +73,13 @@ ], "top_contributors_for_offices": [ { - "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": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 diff --git a/build/_data/elections/oakland/2024-03-05.json b/build/_data/elections/oakland/2024-03-05.json index db9ca88..a6261f2 100644 --- a/build/_data/elections/oakland/2024-03-05.json +++ b/build/_data/elections/oakland/2024-03-05.json @@ -48,13 +48,13 @@ ], "top_contributors_for_offices": [ { - "name": "Steven Von Stade", + "name": "Monique C Houston", "type": "Office", "election_name": "oakland-march-2024", "total_contributions": 600.0 }, { - "name": "Monique C Houston", + "name": "Steven Von Stade", "type": "Office", "election_name": "oakland-march-2024", "total_contributions": 600.0 diff --git a/build/_data/elections/oakland/2024-11-05.json b/build/_data/elections/oakland/2024-11-05.json index 8440b5b..8bd5599 100644 --- a/build/_data/elections/oakland/2024-11-05.json +++ b/build/_data/elections/oakland/2024-11-05.json @@ -79,19 +79,19 @@ ], "top_contributors_for_offices": [ { - "name": "International Federation of Professional and Technical Engineers-Local 21 TJ Anthony PAC Fund", + "name": "International Association of Firefighters Local 55", "type": "Office", "election_name": "oakland-2024", "total_contributions": 2400.0 }, { - "name": "International Association of Firefighters Local 55", + "name": "International Federation of Professional and Technical Engineers-Local 21 TJ Anthony PAC Fund", "type": "Office", "election_name": "oakland-2024", "total_contributions": 2400.0 }, { - "name": "Weylin White", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 diff --git a/build/_data/totals.json b/build/_data/totals.json index 311068d..b90fe44 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -1032,7 +1032,7 @@ "total_contributions": 15000.0 }, { - "name": "Service Employees International Union Local 1021 Issues PAC", + "name": "Oakland Athletics Baseball Company", "type": "Measure", "election_name": "oakland-june-2018", "total_contributions": 10000.0 @@ -1385,13 +1385,13 @@ ], "top_contributors_for_offices": [ { - "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": "Oakland Education Association PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -1500,13 +1500,13 @@ ], "top_contributors_for_offices": [ { - "name": "Steven Von Stade", + "name": "Monique C Houston", "type": "Office", "election_name": "oakland-march-2024", "total_contributions": 600.0 }, { - "name": "Monique C Houston", + "name": "Steven Von Stade", "type": "Office", "election_name": "oakland-march-2024", "total_contributions": 600.0 @@ -1646,19 +1646,19 @@ ], "top_contributors_for_offices": [ { - "name": "International Federation of Professional and Technical Engineers-Local 21 TJ Anthony PAC Fund", + "name": "International Association of Firefighters Local 55", "type": "Office", "election_name": "oakland-2024", "total_contributions": 2400.0 }, { - "name": "International Association of Firefighters Local 55", + "name": "International Federation of Professional and Technical Engineers-Local 21 TJ Anthony PAC Fund", "type": "Office", "election_name": "oakland-2024", "total_contributions": 2400.0 }, { - "name": "Weylin White", + "name": "Todd Scanlin", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 ```
ChenglimEar commented 5 months ago

@mikeubell Looking at changes to the build directory, it's looking pretty good. Can you take a final look and approve the changes in this branch?

mikeubell commented 5 months ago
Build diff from Commit ba07c05d92d950f9d46c90561c0511d4aa80c62f: ```diff ```
ChenglimEar commented 5 months ago

@mikeubell after latest auto-update when I merged from master, I'm seeing more changes to the build directory that needs explanation. Almost there, but not quite yet.

ChenglimEar commented 5 months ago

@mikeubell After taking a look at the changes to the build directory, it looks like it's due to an ordering difference for things like top lists where there's a tie between multiple choices. I think this is ok for moving forward with the csvkit upgrade. Please let me know if you'd like any other change before approving this PR.

ChenglimEar commented 5 months ago

This was not a normal change, which is evident by how long it has taken to get it to an approvable place. The messy history is representative of how upgrading csvkit was not a simple matter due to lots of hidden and intertwined problems that got in the way. The whole thing broke when it was upgraded and each fix uncovered another complex problem that needed to be fixed, so i would not interpret the commit history as representative of any kind of practice.

There will be no future view of these commits, because at the end of day, all these commits will be squashed when merged into master because the changes are tied to one thing: upgrade csvkit. I would focus more on the file changes and making sure that they are correct.

As for dbschema/ vs schema.sql, they are for two purposes: 1) The csvkit upgrade requires using an explicit schema instead of having csvkit auto-detect, which is buggy from version to version. The dbschema directory was created to accommodate this. It contains the schema of all the tables that is created explicitly so that csvkit can import data into them. I'll see if I can add something to the README about this to make sure it's clear what these files are for. 2) In order to confidently upgrade csvkit, I had to make sure that the resulting changes to the database schema was visible in the PR through file diffs. The code for creating the schema.sql file was created in another PR. It is a dump of the resulting database schema in postgres after make import. This allows us to verify anything done to change the schema, such as upgrading csvkit and modifying the files in dbschema.

ChenglimEar commented 5 months ago

@mikeubell Please have a look at the changes to the README file to explain dbschema/ and schema.sql

mikeubell commented 5 months ago
Build diff from Commit fe22a81cc8cfaf064357b450b063a916b82e5e61: ```diff diff --git a/build/_data/committees/1421001.json b/build/_data/committees/1421001.json index df32b3d..05f9af2 100644 --- a/build/_data/committees/1421001.json +++ b/build/_data/committees/1421001.json @@ -1416,7 +1416,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94603", + "Tran_Zip4": "94602", "election_name": "oakland-2020" }, { @@ -1429,7 +1429,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94602", + "Tran_Zip4": "94603", "election_name": "oakland-2020" }, { @@ -1774,26 +1774,26 @@ "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1421001", "Tran_Emp": "Jordan Custom Builders", - "Tran_Occ": "Operations Manager", + "Tran_Occ": "Owner", "Entity_Cd": "Individual", "Tran_Amt1": 200.0, "Tran_Date": "2020-07-21", "Tran_NamF": "Billy", "Tran_NamL": "Jordan", - "Tran_Zip4": "75154", + "Tran_Zip4": "75204", "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1421001", "Tran_Emp": "Jordan Custom Builders", - "Tran_Occ": "Owner", + "Tran_Occ": "Operations Manager", "Entity_Cd": "Individual", "Tran_Amt1": 200.0, "Tran_Date": "2020-07-21", "Tran_NamF": "Billy", "Tran_NamL": "Jordan", - "Tran_Zip4": "75204", + "Tran_Zip4": "75154", "election_name": "oakland-2020" }, { ```
mikeubell commented 5 months ago
Build diff from Commit df1954890b834e7857a8c6dc854c8f7173566f17: ```diff diff --git a/build/_data/elections/oakland/2018-06-05.json b/build/_data/elections/oakland/2018-06-05.json index 140316d..b39b338 100644 --- a/build/_data/elections/oakland/2018-06-05.json +++ b/build/_data/elections/oakland/2018-06-05.json @@ -57,7 +57,7 @@ "total_contributions": 15000.0 }, { - "name": "Oakland Athletics Baseball Company", + "name": "Service Employees International Union Local 1021 Issues PAC", "type": "Measure", "election_name": "oakland-june-2018", "total_contributions": 10000.0 diff --git a/build/_data/elections/oakland/2023-11-07.json b/build/_data/elections/oakland/2023-11-07.json index 31324e7..b6947b7 100644 --- a/build/_data/elections/oakland/2023-11-07.json +++ b/build/_data/elections/oakland/2023-11-07.json @@ -73,13 +73,13 @@ ], "top_contributors_for_offices": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 diff --git a/build/_data/elections/oakland/2024-03-05.json b/build/_data/elections/oakland/2024-03-05.json index a6261f2..db9ca88 100644 --- a/build/_data/elections/oakland/2024-03-05.json +++ b/build/_data/elections/oakland/2024-03-05.json @@ -48,13 +48,13 @@ ], "top_contributors_for_offices": [ { - "name": "Monique C Houston", + "name": "Steven Von Stade", "type": "Office", "election_name": "oakland-march-2024", "total_contributions": 600.0 }, { - "name": "Steven Von Stade", + "name": "Monique C Houston", "type": "Office", "election_name": "oakland-march-2024", "total_contributions": 600.0 diff --git a/build/_data/elections/oakland/2024-11-05.json b/build/_data/elections/oakland/2024-11-05.json index 8bd5599..8440b5b 100644 --- a/build/_data/elections/oakland/2024-11-05.json +++ b/build/_data/elections/oakland/2024-11-05.json @@ -79,19 +79,19 @@ ], "top_contributors_for_offices": [ { - "name": "International Association of Firefighters Local 55", + "name": "International Federation of Professional and Technical Engineers-Local 21 TJ Anthony PAC Fund", "type": "Office", "election_name": "oakland-2024", "total_contributions": 2400.0 }, { - "name": "International Federation of Professional and Technical Engineers-Local 21 TJ Anthony PAC Fund", + "name": "International Association of Firefighters Local 55", "type": "Office", "election_name": "oakland-2024", "total_contributions": 2400.0 }, { - "name": "Todd Scanlin", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 diff --git a/build/_data/totals.json b/build/_data/totals.json index b90fe44..311068d 100644 --- a/build/_data/totals.json +++ b/build/_data/totals.json @@ -1032,7 +1032,7 @@ "total_contributions": 15000.0 }, { - "name": "Oakland Athletics Baseball Company", + "name": "Service Employees International Union Local 1021 Issues PAC", "type": "Measure", "election_name": "oakland-june-2018", "total_contributions": 10000.0 @@ -1385,13 +1385,13 @@ ], "top_contributors_for_offices": [ { - "name": "Service Employees International Union Local 1021 Candidate PAC", + "name": "UA Local 342", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 }, { - "name": "Oakland Education Association PAC", + "name": "Service Employees International Union Local 1021 Candidate PAC", "type": "Office", "election_name": "oakland-2023", "total_contributions": 1200.0 @@ -1500,13 +1500,13 @@ ], "top_contributors_for_offices": [ { - "name": "Monique C Houston", + "name": "Steven Von Stade", "type": "Office", "election_name": "oakland-march-2024", "total_contributions": 600.0 }, { - "name": "Steven Von Stade", + "name": "Monique C Houston", "type": "Office", "election_name": "oakland-march-2024", "total_contributions": 600.0 @@ -1646,19 +1646,19 @@ ], "top_contributors_for_offices": [ { - "name": "International Association of Firefighters Local 55", + "name": "International Federation of Professional and Technical Engineers-Local 21 TJ Anthony PAC Fund", "type": "Office", "election_name": "oakland-2024", "total_contributions": 2400.0 }, { - "name": "International Federation of Professional and Technical Engineers-Local 21 TJ Anthony PAC Fund", + "name": "International Association of Firefighters Local 55", "type": "Office", "election_name": "oakland-2024", "total_contributions": 2400.0 }, { - "name": "Todd Scanlin", + "name": "Weylin White", "type": "Office", "election_name": "oakland-2024", "total_contributions": 1800.0 ```
mikeubell commented 4 months ago
Build diff from Commit 15abc5f9624769f95e91d753a815ba30946ab7ac: ```diff diff --git a/build/_data/committees/1421001.json b/build/_data/committees/1421001.json index df32b3d..05f9af2 100644 --- a/build/_data/committees/1421001.json +++ b/build/_data/committees/1421001.json @@ -1416,7 +1416,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94603", + "Tran_Zip4": "94602", "election_name": "oakland-2020" }, { @@ -1429,7 +1429,7 @@ "Tran_Date": "2020-07-15", "Tran_NamF": "Jonathan", "Tran_NamL": "Williams", - "Tran_Zip4": "94602", + "Tran_Zip4": "94603", "election_name": "oakland-2020" }, { @@ -1774,26 +1774,26 @@ "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1421001", "Tran_Emp": "Jordan Custom Builders", - "Tran_Occ": "Operations Manager", + "Tran_Occ": "Owner", "Entity_Cd": "Individual", "Tran_Amt1": 200.0, "Tran_Date": "2020-07-21", "Tran_NamF": "Billy", "Tran_NamL": "Jordan", - "Tran_Zip4": "75154", + "Tran_Zip4": "75204", "election_name": "oakland-2020" }, { "title": "Oakland November 3rd, 2020 General Election", "Filer_ID": "1421001", "Tran_Emp": "Jordan Custom Builders", - "Tran_Occ": "Owner", + "Tran_Occ": "Operations Manager", "Entity_Cd": "Individual", "Tran_Amt1": 200.0, "Tran_Date": "2020-07-21", "Tran_NamF": "Billy", "Tran_NamL": "Jordan", - "Tran_Zip4": "75204", + "Tran_Zip4": "75154", "election_name": "oakland-2020" }, { diff --git a/build/_data/stats.json b/build/_data/stats.json index 1dcd131..4aabb76 100644 --- a/build/_data/stats.json +++ b/build/_data/stats.json @@ -1,3 +1,3 @@ { - "date_processed": "2024-04-20 00:08:19 -0700" + "date_processed": "2024-04-21 00:08:14 -0700" } ```