govkit 0.7.2 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +2 -0
- data/Gemfile +11 -5
- data/README.md +1 -1
- data/Rakefile +29 -13
- data/VERSION +1 -1
- data/govkit.gemspec +25 -36
- data/lib/gov_kit.rb +16 -5
- data/lib/gov_kit/configuration.rb +5 -5
- data/lib/gov_kit/follow_the_money.rb +5 -2
- data/lib/gov_kit/open_congress.rb +3 -11
- data/lib/gov_kit/open_congress/bill.rb +32 -29
- data/lib/gov_kit/open_congress/person.rb +21 -20
- data/lib/gov_kit/open_states.rb +10 -15
- data/lib/gov_kit/railtie.rb +0 -2
- data/lib/gov_kit/resource.rb +0 -1
- data/lib/gov_kit/transparency_data.rb +1 -1
- data/lib/gov_kit/vote_smart.rb +81 -6
- data/{init.rb → rails/init.rb} +0 -0
- data/spec/fixtures/open_states/401.response +9 -9
- data/spec/fixtures/open_states/404.response +9 -9
- data/spec/fixtures/open_states/bill.response +9 -240
- data/spec/fixtures/open_states/bill_find.response +9 -0
- data/spec/fixtures/open_states/bill_query.response +9 -1990
- data/spec/fixtures/open_states/committee_find.response +9 -53
- data/spec/fixtures/open_states/committee_query.response +9 -190
- data/spec/fixtures/open_states/legislator_find.response +9 -0
- data/spec/fixtures/open_states/legislator_query.response +9 -144
- data/spec/fixtures/open_states/state.response +9 -60
- data/spec/follow_the_money_spec.rb +20 -16
- data/spec/open_congress_spec.rb +23 -35
- data/spec/open_states_spec.rb +63 -78
- data/spec/search_engines_spec.rb +10 -13
- data/spec/spec_helper.rb +16 -8
- data/spec/transparency_data_spec.rb +19 -35
- metadata +140 -145
- data/spec/fixtures/open_states/410.response +0 -6
- data/spec/fixtures/open_states/legislator.response +0 -34
@@ -1,53 +1,9 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx/1.
|
3
|
-
Date: Fri,
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
{
|
11
|
-
"leg_id": "MDL000194",
|
12
|
-
"role": "member",
|
13
|
-
"name": "Joan Carter Conway"
|
14
|
-
},
|
15
|
-
{
|
16
|
-
"leg_id": "MDL000226",
|
17
|
-
"role": "member",
|
18
|
-
"name": "Paul G. Pinsky"
|
19
|
-
},
|
20
|
-
{
|
21
|
-
"leg_id": "MDL000379",
|
22
|
-
"role": "member",
|
23
|
-
"name": "Bill Ferguson"
|
24
|
-
},
|
25
|
-
{
|
26
|
-
"leg_id": "MDL000381",
|
27
|
-
"role": "member",
|
28
|
-
"name": "J. B. Jennings"
|
29
|
-
},
|
30
|
-
{
|
31
|
-
"leg_id": "MDL000384",
|
32
|
-
"role": "member",
|
33
|
-
"name": "Karen S. Montgomery"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"leg_id": "MDL000387",
|
37
|
-
"role": "member",
|
38
|
-
"name": "Ronald N. Young"
|
39
|
-
}
|
40
|
-
],
|
41
|
-
"updated_at": "2011-04-29 01:19:52",
|
42
|
-
"parent_id": "MDC000009",
|
43
|
-
"state": "md",
|
44
|
-
"sources": [
|
45
|
-
{
|
46
|
-
"url": "http://www.msa.md.gov/msa/mdmanual/05sen/html/com/02eco.html"
|
47
|
-
}
|
48
|
-
],
|
49
|
-
"subcommittee": "ENVIRONMENT SUBCOMMITTEE",
|
50
|
-
"committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE",
|
51
|
-
"chamber": "upper",
|
52
|
-
"id": "MDC000012"
|
53
|
-
}
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
Server: nginx/1.2.1
|
3
|
+
Date: Fri, 16 Nov 2012 23:40:35 GMT
|
4
|
+
Content-Type: application/json; charset=utf-8
|
5
|
+
Transfer-Encoding: chunked
|
6
|
+
Connection: keep-alive
|
7
|
+
Vary: Authorization
|
8
|
+
|
9
|
+
{"members": [{"leg_id": "MDL000194", "role": "member", "name": "Joan Carter Conway"}, {"leg_id": "MDL000226", "role": "member", "name": "Paul G. Pinsky"}, {"leg_id": "MDL000379", "role": "member", "name": "Bill Ferguson"}, {"leg_id": "MDL000303", "role": "member", "name": "J. B. Jennings"}, {"leg_id": "MDL000331", "role": "member", "name": "Karen S. Montgomery"}, {"leg_id": "MDL000387", "role": "member", "name": "Ronald N. Young"}], "level": "state", "country": "us", "created_at": "2010-11-29 00:00:00", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "sources": [{"url": "http://www.msa.md.gov/msa/mdmanual/05sen/html/com/02eco.html"}], "parent_id": "MDC000008", "committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE", "id": "MDC000012", "subcommittee": "ENVIRONMENT SUBCOMMITTEE"}
|
@@ -1,190 +1,9 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx/1.
|
3
|
-
Date: Fri,
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
"parent_id": "MDC000009",
|
11
|
-
"state": "md",
|
12
|
-
"subcommittee": "ALCOHOLIC BEVERAGES SUBCOMMITTEE",
|
13
|
-
"committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE",
|
14
|
-
"chamber": "upper",
|
15
|
-
"id": "MDC000009"
|
16
|
-
},
|
17
|
-
{
|
18
|
-
"updated_at": "2011-04-29 01:19:52",
|
19
|
-
"parent_id": "MDC000003",
|
20
|
-
"state": "md",
|
21
|
-
"subcommittee": "CAPITAL BUDGET SUBCOMMITTEE",
|
22
|
-
"committee": "BUDGET & TAXATION COMMITTEE",
|
23
|
-
"chamber": "upper",
|
24
|
-
"id": "MDC000004"
|
25
|
-
},
|
26
|
-
{
|
27
|
-
"updated_at": "2011-04-29 01:19:52",
|
28
|
-
"parent_id": "MDC000009",
|
29
|
-
"state": "md",
|
30
|
-
"subcommittee": "ENVIRONMENT SUBCOMMITTEE",
|
31
|
-
"committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE",
|
32
|
-
"chamber": "upper",
|
33
|
-
"id": "MDC000012"
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"updated_at": "2011-04-29 01:19:52",
|
37
|
-
"parent_id": "MDC000009",
|
38
|
-
"state": "md",
|
39
|
-
"subcommittee": "ETHICS & ELECTION LAW SUBCOMMITTEE",
|
40
|
-
"committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE",
|
41
|
-
"chamber": "upper",
|
42
|
-
"id": "MDC000013"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"updated_at": "2011-04-29 01:19:52",
|
46
|
-
"parent_id": null,
|
47
|
-
"state": "md",
|
48
|
-
"subcommittee": null,
|
49
|
-
"committee": "FINANCE COMMITTEE",
|
50
|
-
"chamber": "upper",
|
51
|
-
"id": "MDC000015"
|
52
|
-
},
|
53
|
-
{
|
54
|
-
"updated_at": "2011-04-29 01:19:52",
|
55
|
-
"parent_id": "MDC000015",
|
56
|
-
"state": "md",
|
57
|
-
"subcommittee": "HEALTH SUBCOMMITTEE",
|
58
|
-
"committee": "FINANCE COMMITTEE",
|
59
|
-
"chamber": "upper",
|
60
|
-
"id": "MDC000016"
|
61
|
-
},
|
62
|
-
{
|
63
|
-
"updated_at": "2011-04-29 01:19:53",
|
64
|
-
"parent_id": "MDC000015",
|
65
|
-
"state": "md",
|
66
|
-
"subcommittee": "TRANSPORTATION SUBCOMMITTEE",
|
67
|
-
"committee": "FINANCE COMMITTEE",
|
68
|
-
"chamber": "upper",
|
69
|
-
"id": "MDC000017"
|
70
|
-
},
|
71
|
-
{
|
72
|
-
"updated_at": "2011-04-29 01:19:53",
|
73
|
-
"parent_id": null,
|
74
|
-
"state": "md",
|
75
|
-
"subcommittee": null,
|
76
|
-
"committee": "EXECUTIVE NOMINATIONS COMMITTEE",
|
77
|
-
"chamber": "upper",
|
78
|
-
"id": "MDC000018"
|
79
|
-
},
|
80
|
-
{
|
81
|
-
"updated_at": "2011-04-29 01:19:52",
|
82
|
-
"parent_id": "MDC000003",
|
83
|
-
"state": "md",
|
84
|
-
"subcommittee": "PUBLIC SAFETY, TRANSPORTATION & ENVIRONMENT SUBCOMMITTEE",
|
85
|
-
"committee": "BUDGET & TAXATION COMMITTEE",
|
86
|
-
"chamber": "upper",
|
87
|
-
"id": "MDC000007"
|
88
|
-
},
|
89
|
-
{
|
90
|
-
"created_at": "2011-01-29 00:13:19",
|
91
|
-
"updated_at": "2011-04-29 01:19:52",
|
92
|
-
"parent_id": "MDC000009",
|
93
|
-
"state": "md",
|
94
|
-
"subcommittee": "HEALTH OCCUPATIONS SUBCOMMITTEE",
|
95
|
-
"committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE",
|
96
|
-
"chamber": "upper",
|
97
|
-
"id": "MDC000068"
|
98
|
-
},
|
99
|
-
{
|
100
|
-
"updated_at": "2011-04-29 01:19:52",
|
101
|
-
"parent_id": null,
|
102
|
-
"state": "md",
|
103
|
-
"subcommittee": null,
|
104
|
-
"committee": "BUDGET & TAXATION COMMITTEE",
|
105
|
-
"chamber": "upper",
|
106
|
-
"id": "MDC000003"
|
107
|
-
},
|
108
|
-
{
|
109
|
-
"updated_at": "2011-04-29 01:19:53",
|
110
|
-
"parent_id": null,
|
111
|
-
"state": "md",
|
112
|
-
"subcommittee": null,
|
113
|
-
"committee": "SPECIAL COMMITTEE ON SUBSTANCE ABUSE",
|
114
|
-
"chamber": "upper",
|
115
|
-
"id": "MDC000019"
|
116
|
-
},
|
117
|
-
{
|
118
|
-
"created_at": "2011-01-29 00:13:19",
|
119
|
-
"updated_at": "2011-04-29 01:19:52",
|
120
|
-
"parent_id": "MDC000009",
|
121
|
-
"state": "md",
|
122
|
-
"subcommittee": "LABOR LICENSING, & REGULATION SUBCOMMITTEE",
|
123
|
-
"committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE",
|
124
|
-
"chamber": "upper",
|
125
|
-
"id": "MDC000069"
|
126
|
-
},
|
127
|
-
{
|
128
|
-
"updated_at": "2011-04-29 01:19:52",
|
129
|
-
"parent_id": "MDC000003",
|
130
|
-
"state": "md",
|
131
|
-
"subcommittee": "HEALTH & HUMAN SERVICES SUBCOMMITTEE",
|
132
|
-
"committee": "BUDGET & TAXATION COMMITTEE",
|
133
|
-
"chamber": "upper",
|
134
|
-
"id": "MDC000067"
|
135
|
-
},
|
136
|
-
{
|
137
|
-
"updated_at": "2011-04-29 01:19:52",
|
138
|
-
"parent_id": "MDC000003",
|
139
|
-
"state": "md",
|
140
|
-
"subcommittee": "EDUCATION, BUSINESS & ADMINISTRATION SUBCOMMITTEE",
|
141
|
-
"committee": "BUDGET & TAXATION COMMITTEE",
|
142
|
-
"chamber": "upper",
|
143
|
-
"id": "MDC000066"
|
144
|
-
},
|
145
|
-
{
|
146
|
-
"updated_at": "2011-04-29 01:19:52",
|
147
|
-
"parent_id": "MDC000003",
|
148
|
-
"state": "md",
|
149
|
-
"subcommittee": "PENSIONS SUBCOMMITTEE",
|
150
|
-
"committee": "BUDGET & TAXATION COMMITTEE",
|
151
|
-
"chamber": "upper",
|
152
|
-
"id": "MDC000006"
|
153
|
-
},
|
154
|
-
{
|
155
|
-
"updated_at": "2011-04-29 01:19:52",
|
156
|
-
"parent_id": null,
|
157
|
-
"state": "md",
|
158
|
-
"subcommittee": null,
|
159
|
-
"committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE",
|
160
|
-
"chamber": "upper",
|
161
|
-
"id": "MDC000008"
|
162
|
-
},
|
163
|
-
{
|
164
|
-
"updated_at": "2011-04-29 01:19:52",
|
165
|
-
"parent_id": "MDC000009",
|
166
|
-
"state": "md",
|
167
|
-
"subcommittee": "EDUCATION SUBCOMMITTEE",
|
168
|
-
"committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE",
|
169
|
-
"chamber": "upper",
|
170
|
-
"id": "MDC000011"
|
171
|
-
},
|
172
|
-
{
|
173
|
-
"updated_at": "2011-04-29 01:19:52",
|
174
|
-
"parent_id": null,
|
175
|
-
"state": "md",
|
176
|
-
"subcommittee": null,
|
177
|
-
"committee": "RULES COMMITTEE",
|
178
|
-
"chamber": "upper",
|
179
|
-
"id": "MDC000001"
|
180
|
-
},
|
181
|
-
{
|
182
|
-
"updated_at": "2011-04-29 01:19:52",
|
183
|
-
"parent_id": null,
|
184
|
-
"state": "md",
|
185
|
-
"subcommittee": null,
|
186
|
-
"committee": "JUDICIAL PROCEEDINGS COMMITTEE",
|
187
|
-
"chamber": "upper",
|
188
|
-
"id": "MDC000002"
|
189
|
-
}
|
190
|
-
]
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
Server: nginx/1.2.1
|
3
|
+
Date: Fri, 16 Nov 2012 23:40:35 GMT
|
4
|
+
Content-Type: application/json; charset=utf-8
|
5
|
+
Transfer-Encoding: chunked
|
6
|
+
Connection: keep-alive
|
7
|
+
Vary: Authorization
|
8
|
+
|
9
|
+
[{"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": null, "committee": "RULES COMMITTEE", "id": "MDC000001", "subcommittee": null}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": null, "committee": "JUDICIAL PROCEEDINGS COMMITTEE", "id": "MDC000002", "subcommittee": null}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": null, "committee": "BUDGET & TAXATION COMMITTEE", "id": "MDC000003", "subcommittee": null}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000003", "committee": "BUDGET & TAXATION COMMITTEE", "id": "MDC000004", "subcommittee": "CAPITAL BUDGET SUBCOMMITTEE"}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000003", "committee": "BUDGET & TAXATION COMMITTEE", "id": "MDC000006", "subcommittee": "PENSIONS SUBCOMMITTEE"}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000003", "committee": "BUDGET & TAXATION COMMITTEE", "id": "MDC000007", "subcommittee": "PUBLIC SAFETY, TRANSPORTATION & ENVIRONMENT SUBCOMMITTEE"}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": null, "committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE", "id": "MDC000008", "subcommittee": null}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000008", "committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE", "id": "MDC000011", "subcommittee": "EDUCATION SUBCOMMITTEE"}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000008", "committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE", "id": "MDC000012", "subcommittee": "ENVIRONMENT SUBCOMMITTEE"}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000008", "committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE", "id": "MDC000013", "subcommittee": "ETHICS & ELECTION LAW SUBCOMMITTEE"}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": null, "committee": "FINANCE COMMITTEE", "id": "MDC000015", "subcommittee": null}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000015", "committee": "FINANCE COMMITTEE", "id": "MDC000016", "subcommittee": "HEALTH SUBCOMMITTEE"}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000015", "committee": "FINANCE COMMITTEE", "id": "MDC000017", "subcommittee": "TRANSPORTATION SUBCOMMITTEE"}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": null, "committee": "EXECUTIVE NOMINATIONS COMMITTEE", "id": "MDC000018", "subcommittee": null}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": null, "committee": "SPECIAL COMMITTEE ON SUBSTANCE ABUSE", "id": "MDC000019", "subcommittee": null}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000003", "committee": "BUDGET & TAXATION COMMITTEE", "id": "MDC000066", "subcommittee": "EDUCATION, BUSINESS & ADMINISTRATION SUBCOMMITTEE"}, {"country": "us", "created_at": "2010-11-29 00:00:00", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000003", "committee": "BUDGET & TAXATION COMMITTEE", "id": "MDC000067", "subcommittee": "HEALTH & HUMAN SERVICES SUBCOMMITTEE"}, {"country": "us", "created_at": "2011-01-29 00:13:19", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000008", "committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE", "id": "MDC000068", "subcommittee": "HEALTH OCCUPATIONS SUBCOMMITTEE"}, {"country": "us", "created_at": "2011-01-29 00:13:19", "level": "state", "updated_at": "2012-11-07 00:07:01", "chamber": "upper", "state": "md", "parent_id": "MDC000008", "committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE", "id": "MDC000069", "subcommittee": "LABOR LICENSING, & REGULATION SUBCOMMITTEE"}, {"level": "state", "country": "us", "created_at": "2011-12-08 01:25:23", "updated_at": "2012-11-07 00:07:01", "parent_id": "MDC000008", "state": "md", "subcommittee": "ALCOHOLIC BEVERAGES SUBCOMMITTEE", "committee": "EDUCATION, HEALTH & ENVIRONMENTAL AFFAIRS COMMITTEE", "chamber": "upper", "id": "MDC000077"}, {"level": "state", "country": "us", "created_at": "2012-01-10 00:08:03", "updated_at": "2012-11-07 00:07:02", "parent_id": null, "state": "md", "subcommittee": null, "committee": "SPECIAL COMMITTEE ON ETHICS REFORM", "chamber": "upper", "id": "MDC000078"}]
|
@@ -0,0 +1,9 @@
|
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
Server: nginx/1.2.1
|
3
|
+
Date: Fri, 16 Nov 2012 23:40:34 GMT
|
4
|
+
Content-Type: application/json; charset=utf-8
|
5
|
+
Transfer-Encoding: chunked
|
6
|
+
Connection: keep-alive
|
7
|
+
Vary: Authorization
|
8
|
+
|
9
|
+
{"last_name": "Blumenfield", "updated_at": "2012-11-07 00:27:19", "sources": [{"url": "http://assembly.ca.gov/assemblymembers"}], "nimsp_candidate_id": null, "full_name": "Bob Blumenfield", "old_roles": {"20092010": [{"term": "20092010", "end_date": null, "district": "40", "+active": true, "level": "state", "country": "us", "chamber": "lower", "state": "ca", "party": "Democratic", "type": "member", "start_date": null}]}, "id": "CAL000088", "first_name": "Bob", "middle_name": "", "district": "40", "state": "ca", "votesmart_id": "104387", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2040", "street": "P.O. Box 942849, Room 6026", "zip": "94249-0040", "city": "Sacramento"}, "leg_id": "CAL000088", "active": true, "transparencydata_id": "58bccc8dbc004d6fb3f245c426469196", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/BLUMENFIELD_0.JPG?1325883125", "+district_offices": [{"phone": "(818) 904-3840", "street": "6150 Van Nys Blvd, Suite 305", "zip": "91401", "city": "Van Nuys"}], "roles": [{"term": "20112012", "end_date": null, "district": "40", "chamber": "lower", "state": "ca", "party": "Democratic", "type": "member", "start_date": null}, {"term": "20112012", "committee_id": "CAC000361", "chamber": "joint", "state": "ca", "subcommittee": null, "committee": "Joint Legislative Budget Committee", "position": "Vice Chair", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000315", "chamber": "lower", "state": "ca", "subcommittee": null, "committee": "Standing Committee on Appropriations", "position": "member", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000318", "chamber": "lower", "state": "ca", "subcommittee": null, "committee": "Standing Committee on Budget", "position": "Chair", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000323", "chamber": "lower", "state": "ca", "subcommittee": null, "committee": "Standing Committee on Governmental Organization", "position": "member", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000338", "chamber": "lower", "state": "ca", "subcommittee": null, "committee": "Standing Committee on Transportation", "position": "member", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000341", "chamber": "lower", "state": "ca", "subcommittee": null, "committee": "Standing Committee on Water, Parks and Wildlife", "position": "member", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000258", "chamber": "lower", "state": "ca", "subcommittee": null, "committee": "Select Committee on Community Resources Impacted by Re-Entry", "position": "member", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000345", "chamber": "lower", "state": "ca", "subcommittee": null, "committee": "Select Committee on Revitalization of the Los Angles River and Pacoima Wash", "position": "member", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000410", "chamber": "lower", "state": "ca", "subcommittee": "Subcommittee No. 1 on Health And Human Services", "committee": "Standing Committee on Budget", "position": "Dem. Alternate", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000411", "chamber": "lower", "state": "ca", "subcommittee": "Subcommittee No. 2 on Education Finance", "committee": "Standing Committee on Budget", "position": "Dem. Alternate", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000412", "chamber": "lower", "state": "ca", "subcommittee": "Subcommittee No. 3 on Resources and Transportation", "committee": "Standing Committee on Budget", "position": "Dem. Alternate", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000413", "chamber": "lower", "state": "ca", "subcommittee": "Subcommittee No. 4 on State Administration", "committee": "Standing Committee on Budget", "position": "Dem. Alternate", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000414", "chamber": "lower", "state": "ca", "subcommittee": "Subcommittee No. 5 on Public Safety", "committee": "Standing Committee on Budget", "position": "Dem. Alternate", "type": "committee member"}, {"term": "20112012", "committee_id": "CAC000415", "chamber": "lower", "state": "ca", "subcommittee": "Subcommittee No. 6 on Budget Process Oversight & Program Evaluation", "committee": "Standing Committee on Budget", "position": "Chair", "type": "committee member"}], "url": "http://asmdc.org/members/a40/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "40", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2040", "address": "P.O. Box 942849, Room 6026\nSacramento, CA 94249-0040", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(818) 904-3840", "address": "6150 Van Nys Blvd, Suite 305\nVan Nuys, CA 91401", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}
|
@@ -1,144 +1,9 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx/
|
3
|
-
Date:
|
4
|
-
Content-Type: application/json; charset=utf-8
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
{
|
10
|
-
"first_name": "Paul",
|
11
|
-
"nimsp_candidate_id": 96302,
|
12
|
-
"middle_name": "",
|
13
|
-
"suffix": "",
|
14
|
-
"roles": [
|
15
|
-
{
|
16
|
-
"end_date": null,
|
17
|
-
"district": "43",
|
18
|
-
"contact_info": [],
|
19
|
-
"chamber": "lower",
|
20
|
-
"state": "ca",
|
21
|
-
"session": "20092010",
|
22
|
-
"committee": "",
|
23
|
-
"party": "Democrat",
|
24
|
-
"votesmart_committee_id": null,
|
25
|
-
"type": "member",
|
26
|
-
"start_date": null
|
27
|
-
}
|
28
|
-
],
|
29
|
-
"updated_at": "2010-03-27 22:06:53",
|
30
|
-
"sources": [],
|
31
|
-
"leg_id": 2560,
|
32
|
-
"last_name": "Krekorian",
|
33
|
-
"votesmart_id": null,
|
34
|
-
"full_name": "Krekorian, Paul"
|
35
|
-
},
|
36
|
-
{
|
37
|
-
"first_name": "Wesley",
|
38
|
-
"nimsp_candidate_id": 97762,
|
39
|
-
"middle_name": "",
|
40
|
-
"suffix": "",
|
41
|
-
"roles": [
|
42
|
-
{
|
43
|
-
"end_date": null,
|
44
|
-
"district": "1",
|
45
|
-
"contact_info": [],
|
46
|
-
"chamber": "lower",
|
47
|
-
"state": "ca",
|
48
|
-
"session": "20092010",
|
49
|
-
"committee": "",
|
50
|
-
"party": "Democrat",
|
51
|
-
"votesmart_committee_id": null,
|
52
|
-
"type": "member",
|
53
|
-
"start_date": null
|
54
|
-
}
|
55
|
-
],
|
56
|
-
"updated_at": "2010-03-27 22:07:47",
|
57
|
-
"sources": [],
|
58
|
-
"leg_id": 2561,
|
59
|
-
"last_name": "Chesbro",
|
60
|
-
"votesmart_id": 16646,
|
61
|
-
"full_name": "Chesbro, Wesley"
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"first_name": "Ted",
|
65
|
-
"nimsp_candidate_id": 96263,
|
66
|
-
"middle_name": "",
|
67
|
-
"suffix": "",
|
68
|
-
"roles": [
|
69
|
-
{
|
70
|
-
"end_date": null,
|
71
|
-
"district": "4",
|
72
|
-
"contact_info": [],
|
73
|
-
"chamber": "lower",
|
74
|
-
"state": "ca",
|
75
|
-
"session": "20092010",
|
76
|
-
"committee": "",
|
77
|
-
"party": "Republican",
|
78
|
-
"votesmart_committee_id": null,
|
79
|
-
"type": "member",
|
80
|
-
"start_date": null
|
81
|
-
}
|
82
|
-
],
|
83
|
-
"updated_at": "2010-03-27 22:07:48",
|
84
|
-
"sources": [],
|
85
|
-
"leg_id": 2562,
|
86
|
-
"last_name": "Gaines",
|
87
|
-
"votesmart_id": 59841,
|
88
|
-
"full_name": "Gaines, Ted"
|
89
|
-
},
|
90
|
-
{
|
91
|
-
"first_name": "Jim",
|
92
|
-
"nimsp_candidate_id": 97994,
|
93
|
-
"middle_name": "",
|
94
|
-
"suffix": "",
|
95
|
-
"roles": [
|
96
|
-
{
|
97
|
-
"end_date": null,
|
98
|
-
"district": "2",
|
99
|
-
"contact_info": [],
|
100
|
-
"chamber": "lower",
|
101
|
-
"state": "ca",
|
102
|
-
"session": "20092010",
|
103
|
-
"committee": "",
|
104
|
-
"party": "Republican",
|
105
|
-
"votesmart_committee_id": null,
|
106
|
-
"type": "member",
|
107
|
-
"start_date": null
|
108
|
-
}
|
109
|
-
],
|
110
|
-
"updated_at": "2010-03-27 22:07:49",
|
111
|
-
"sources": [],
|
112
|
-
"leg_id": 2563,
|
113
|
-
"last_name": "Nielsen",
|
114
|
-
"votesmart_id": 104331,
|
115
|
-
"full_name": "Nielsen, Jim"
|
116
|
-
},
|
117
|
-
{
|
118
|
-
"first_name": "Tom",
|
119
|
-
"nimsp_candidate_id": 97726,
|
120
|
-
"middle_name": "",
|
121
|
-
"suffix": "",
|
122
|
-
"roles": [
|
123
|
-
{
|
124
|
-
"end_date": null,
|
125
|
-
"district": "13",
|
126
|
-
"contact_info": [],
|
127
|
-
"chamber": "lower",
|
128
|
-
"state": "ca",
|
129
|
-
"session": "20092010",
|
130
|
-
"committee": "",
|
131
|
-
"party": "Democrat",
|
132
|
-
"votesmart_committee_id": null,
|
133
|
-
"type": "member",
|
134
|
-
"start_date": null
|
135
|
-
}
|
136
|
-
],
|
137
|
-
"updated_at": "2010-03-27 22:07:47",
|
138
|
-
"sources": [],
|
139
|
-
"leg_id": 2564,
|
140
|
-
"last_name": "Ammiano",
|
141
|
-
"votesmart_id": 70419,
|
142
|
-
"full_name": "Ammiano, Tom"
|
143
|
-
}
|
144
|
-
]
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
Server: nginx/1.2.1
|
3
|
+
Date: Fri, 16 Nov 2012 23:40:35 GMT
|
4
|
+
Content-Type: application/json; charset=utf-8
|
5
|
+
Transfer-Encoding: chunked
|
6
|
+
Connection: keep-alive
|
7
|
+
Vary: Authorization
|
8
|
+
|
9
|
+
[{"last_name": "Cedillo", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": null, "full_name": "Gilbert Cedillo", "id": "CAL000017", "first_name": "Gilbert", "middle_name": "", "district": "45", "chamber": "lower", "state": "ca", "votesmart_id": "1462", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2045", "street": "P.O. Box 942849, Room 5119", "zip": "94249-0045", "city": "Sacramento"}, "leg_id": "CAL000017", "active": true, "transparencydata_id": "a27cdd86c6c34bf8ad73f29420d057b5", "photo_url": "http://upload.wikimedia.org/wikipedia/en/4/46/Senator_Gilbert_Cedillo.JPG", "+district_offices": [{"phone": "(323) 225-4545", "street": "360 West Avenue 26, Suite 121 & 122", "zip": "90031", "city": "Los Angeles"}], "url": "http://asmdc.org/members/a45/", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "+district": "45", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2045", "address": "P.O. Box 942849, Room 5119\nSacramento, CA 94249-0045", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(323) 225-4545", "address": "360 West Avenue 26, Suite 121 & 122\nLos Angeles, CA 90031", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Logue", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "97970", "full_name": "Dan Logue", "id": "CAL000042", "first_name": "Dan", "middle_name": "", "district": "3", "state": "ca", "votesmart_id": "82026", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2003", "street": "P.O. Box 942849, Room 4158", "zip": "94249-0003", "city": "Sacramento"}, "leg_id": "CAL000042", "active": true, "transparencydata_id": "a95eba8564ff440bbc5fa5a842b75053", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/3.jpg?1320969826", "+district_offices": [{"phone": "(530) 895-4217", "street": "1550 Humboldt Road, Suite 4", "zip": "95928", "city": "Chico"}], "url": "http://arc.asm.ca.gov/member/3", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "3", "nimsp_id": "9106", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2003", "address": "P.O. Box 942849, Room 4158\nSacramento, CA 94249-0003", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(530) 895-4217", "address": "1550 Humboldt Road, Suite 4\nChico, CA 95928", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Huffman", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": null, "full_name": "Jared William Huffman", "id": "CAL000043", "first_name": "Jared", "middle_name": "", "district": "6", "state": "ca", "votesmart_id": "59849", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2006", "street": "P.O. Box 942849, Room 3120", "zip": "94249-0006", "city": "Sacramento"}, "leg_id": "CAL000043", "active": true, "transparencydata_id": "e47a7bc8445541b5b5bbe4ee6875686f", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/6.jpg?1320969453", "+district_offices": [{"phone": "(415) 479-4920", "street": "3501 Civic Center Dr., Room 412", "zip": "94903", "city": "San Rafael"}], "url": "http://asmdc.org/members/a06", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "6", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2006", "address": "P.O. Box 942849, Room 2176\nSacramento, CA 94249-0006", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(415) 479-4920", "address": "3501 Civic Center Dr., Room 412\nSan Rafael, CA 94903", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Block", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "97740", "full_name": "Marty Block", "id": "CAL000044", "first_name": "Marty", "middle_name": "", "district": "78", "chamber": "lower", "state": "ca", "votesmart_id": "104437", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2078", "street": "P.O. Box 942849, Room 3091", "zip": "94249-0078", "city": "Sacramento"}, "leg_id": "CAL000044", "active": true, "transparencydata_id": "67f1c104b73841c3a0aa577617fab379", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/78.jpg?1320966513", "+district_offices": [{"phone": "(619) 462-7878", "street": "7144 Broadway", "zip": "91945", "city": "Lemon Grove"}], "url": "http://asmdc.org/members/a78/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "nimsp_id": "9621", "+district": "78", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2078", "address": "P.O. Box 942849, Room 3091\nSacramento, CA 94249-0078", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(619) 462-7878", "address": "7144 Broadway\nLemon Grove, CA 91945", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Harkey", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "97934", "full_name": "Diane L Harkey", "id": "CAL000045", "first_name": "Diane L.", "middle_name": "L", "district": "73", "state": "ca", "votesmart_id": "70764", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2073", "street": "P.O. Box 942849, Room 6027", "zip": "94249-0073", "city": "Sacramento"}, "leg_id": "CAL000045", "active": true, "transparencydata_id": "3a5161299ca4484499fd21dd9fd060b7", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/73.jpg?1320969044", "+district_offices": [{"phone": "(949) 347-7301", "street": "29122 Rancho Viejo Road, Suite 111", "zip": "92675", "city": "San Juan Capistrano"}], "url": "http://arc.asm.ca.gov/member/73", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "73", "nimsp_id": "9048", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2073", "address": "P.O. Box 942849, Room 6027\nSacramento, CA 94249-0073", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(949) 347-7301", "address": "29122 Rancho Viejo Road, Suite 111\nSan Juan Capistrano, CA 92675", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Eng", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "96254", "full_name": "Mike Eng", "id": "CAL000050", "first_name": "Mike", "middle_name": "", "district": "49", "state": "ca", "votesmart_id": "57437", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2049", "street": "P.O. Box 942849, Room 4016", "zip": "94249-0049", "city": "Sacramento"}, "leg_id": "CAL000050", "active": true, "transparencydata_id": "455f51592a88477280f2242c4ec1619a", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/49.jpg?1320967892", "+district_offices": [{"phone": "(626) 382-0049", "street": "205 South Chapel Avenue, Suite B", "zip": "91801", "city": "Alhambra"}], "url": "http://asmdc.org/members/a49", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "49", "nimsp_id": "7909", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2049", "address": "P.O. Box 942849, Room 5135\nSacramento, CA 94249-0049", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(626) 382-0049", "address": "205 South Chapel Avenue, Suite B\nAlhambra, CA 91801", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Beall", "updated_at": "2012-11-07 00:27:17", "nimsp_candidate_id": null, "full_name": "Jim Beall", "id": "CAL000051", "first_name": "Jim", "middle_name": "", "district": "24", "state": "ca", "votesmart_id": "58229", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2024", "street": "P.O. Box 942849, Room 5016", "zip": "94249-0024", "city": "Sacramento"}, "leg_id": "CAL000051", "active": true, "transparencydata_id": "ca89c34cb4af49d4a69599d3ccf20768", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/24.jpg?1320966288", "+district_offices": [{"phone": "(408) 282-8920", "street": "100 Paseo De San Antonio, Suite 319", "zip": "95113", "city": "San Jose"}], "url": "http://asmdc.org/members/a24/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "24", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2024", "address": "P.O. Box 942849, Room 2137\nSacramento, CA 94249-0024", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(408) 282-8920", "address": "100 Paseo De San Antonio, Suite 319\nSan Jose, CA 95113", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Solorio", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96393", "full_name": "Jose Solorio", "id": "CAL000052", "first_name": "Jose", "middle_name": "", "district": "69", "chamber": "lower", "state": "ca", "votesmart_id": "58190", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2069", "street": "P.O. Box 942849, Room 3146", "zip": "94249-0069", "city": "Sacramento"}, "leg_id": "CAL000052", "active": true, "transparencydata_id": "99d1a1a6b5544a12bb22b5243da34c9d", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/69.jpg?1321660613", "+district_offices": [{"phone": "(714) 939-8469", "street": "2400 E. Katella Avenue, Suite 64", "zip": "92806", "city": "Anaheim"}], "url": "http://asmdc.org/members/a69", "country": "us", "created_at": "2012-01-31 19:25:10", "level": "state", "nimsp_id": "8022", "+district": "69", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2069", "address": "P.O. Box 942849, Room 2003\nSacramento, CA 94249-0069", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(714) 939-8469", "address": "2400 E. Katella Avenue, Suite 64\nAnaheim, CA 92806", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Skinner", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "98018", "full_name": "Nancy Skinner", "id": "CAL000058", "first_name": "Nancy", "middle_name": "", "district": "14", "state": "ca", "votesmart_id": "104350", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2014", "street": "P.O. Box 942849, Room 4126", "zip": "94249-0014", "city": "Sacramento"}, "leg_id": "CAL000058", "active": true, "transparencydata_id": "cac6b3a99da243fda0c17f597478c28f", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/AD-14-Skinner2.jpg?1323914222", "+district_offices": [{"phone": "(510) 286-1400", "street": "1515 Clay Street, Suite 2201", "zip": "94612", "city": "Oakland"}], "url": "http://asmdc.org/members/a14", "country": "us", "created_at": "2012-01-31 19:25:10", "level": "state", "+district": "14", "nimsp_id": "9612", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2014", "address": "P.O. Box 942849, Room 3160\nSacramento, CA 94249-0014", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(510) 286-1400", "address": "1515 Clay Street, Suite 2201\nOakland, CA 94612", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Buchanan", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "97747", "full_name": "Joan Buchanan", "id": "CAL000059", "first_name": "Joan", "middle_name": "", "district": "15", "chamber": "lower", "state": "ca", "votesmart_id": "104351", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2015", "street": "P.O. Box 942849, Room 2148", "zip": "94249-0015", "city": "Sacramento"}, "leg_id": "CAL000059", "active": true, "transparencydata_id": "0e18945b71794146a68787fff7a07fdd", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/a15.jpg?1325794324", "+district_offices": [{"phone": "(925) 328-1515", "street": "2694 Bishop Dr., Suite 275", "zip": "94583", "city": "San Ramon"}], "url": "http://asmdc.org/members/a15/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "nimsp_id": "9613", "+district": "15", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2015", "address": "P.O. Box 942849, Room 2148\nSacramento, CA 94249-0015", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(925) 328-1515", "address": "2694 Bishop Dr., Suite 275\nSan Ramon, CA 94583", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Carter", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "96223", "full_name": "Wilmer Amina Carter", "id": "CAL000061", "first_name": "Wilmer Amina", "middle_name": "", "district": "62", "state": "ca", "votesmart_id": "59942", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2062", "street": "P.O. Box 942849, Room 2136", "zip": "94249-0062", "city": "Sacramento"}, "leg_id": "CAL000061", "active": true, "transparencydata_id": "b59fa3f6315a4f80aa0b036a285c10f5", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/a62.JPG?1325789924", "+district_offices": [{"phone": "(909) 820-5008", "street": "335 N Riverside Avenue", "zip": "92376", "city": "Rialto"}], "url": "http://asmdc.org/members/a62/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "62", "nimsp_id": "8215", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2062", "address": "P.O. Box 942849, Room 2136\nSacramento, CA 94249-0062", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(909) 820-5008", "address": "335 N Riverside Avenue\nRialto, CA 92376", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Galgiani", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96264", "full_name": "Cathleen Galgiani", "id": "CAL000062", "first_name": "Cathleen", "middle_name": "", "district": "17", "chamber": "lower", "state": "ca", "votesmart_id": "57629", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2017", "street": "P.O. Box 942849, Room 5155", "zip": "94249-0017", "city": "Sacramento"}, "leg_id": "CAL000062", "active": true, "transparencydata_id": "b3b1b6a034cf44c4bd990c6d81f19a33", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/17.jpg?1320968403", "+district_offices": [{"phone": "(209) 948-7479", "street": "31 East Channel Street, Suite 306", "zip": "95202", "city": "Stockton"}], "url": "http://asmdc.org/members/a17", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "nimsp_id": "7941", "+district": "17", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2017", "address": "P.O. Box 942849, Room 5150\nSacramento, CA 94249-0017", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(209) 948-7479", "address": "31 East Channel Street, Suite 306\nStockton, CA 95202", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Huber", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "97946", "full_name": "Alyson Huber", "id": "CAL000063", "first_name": "Alyson", "middle_name": "", "district": "10", "state": "ca", "votesmart_id": "104343", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2010", "street": "P.O. Box 942849, Room 2117", "zip": "94249-0010", "city": "Sacramento"}, "leg_id": "CAL000063", "active": true, "transparencydata_id": "a80f0a36c25c4366b9492e63da79380d", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/a10.jpg?1325877127", "+district_offices": [{"phone": "(209) 333-5330", "street": "221 West Oak Street, Suite A", "zip": "95240", "city": "Lodi"}], "url": "http://asmdc.org/members/a10", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "10", "nimsp_id": "9611", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2010", "address": "P.O. Box 942849, Room 4162\nSacramento, CA 94249-0010", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(209) 333-5330", "address": "221 West Oak Street, Suite A\nLodi, CA 95240", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Knight", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "97960", "full_name": "Steve Knight", "id": "CAL000065", "first_name": "Steve", "middle_name": "", "district": "36", "state": "ca", "votesmart_id": "71098", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2036", "street": "P.O. Box 942849, Room 4015", "zip": "94249-0036", "city": "Sacramento"}, "leg_id": "CAL000065", "active": true, "transparencydata_id": "57f44d1575ad4e82be5a487098db4959", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/36.jpg?1320969655", "+district_offices": [{"phone": "(661) 267-7636", "street": "41319 12th Street West, Suite 105", "zip": "93551", "city": "Palmdale"}], "url": "http://arc.asm.ca.gov/member/36", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "36", "nimsp_id": "9050", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2036", "address": "P.O. Box 942849, Room 4015\nSacramento, CA 94249-0036", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(661) 267-7636", "address": "41319 12th Street West, Suite 105\nPalmdale, CA 93551", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Garrick", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96267", "full_name": "Martin Garrick", "id": "CAL000069", "first_name": "Martin", "middle_name": "", "district": "74", "state": "ca", "votesmart_id": "57319", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2074", "street": "P.O. Box 942849, Room 2158", "zip": "94249-0074", "city": "Sacramento"}, "leg_id": "CAL000069", "active": true, "transparencydata_id": "a440e00c273b4f8b93dd4b0139b52ebd", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/74.jpg?1320968482", "+district_offices": [{"phone": "(760) 929-7998", "street": "1910 Palomar Point Way, Suite 106", "zip": "92008", "city": "Carlsbad"}], "url": "http://arc.asm.ca.gov/member/74", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "74", "nimsp_id": "7894", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2074", "address": "P.O. Box 942849, Room 2158\nSacramento, CA 94249-0074", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(760) 929-7998", "address": "1910 Palomar Point Way, Suite 106\nCarlsbad, CA 92008", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Ma", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96316", "full_name": "Fiona Ma", "id": "CAL000070", "first_name": "Fiona", "middle_name": "", "district": "12", "state": "ca", "votesmart_id": "58414", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2012", "street": "P.O. Box 942849, Room 3173", "zip": "94249-0012", "city": "Sacramento"}, "leg_id": "CAL000070", "active": true, "transparencydata_id": "a2f06295cb714157ae40dce71a884eb0", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/a12_0.JPG?1325710181", "+district_offices": [{"phone": "(415) 557-2312", "street": "455 Golden Gate Avenue, Suite 14600", "zip": "94102", "city": "San Francisco"}], "url": "http://asmdc.org/members/a12", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "12", "nimsp_id": "8055", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2012", "address": "P.O. Box 942849, Room 3173\nSacramento, CA 94249-0012", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(415) 557-2312", "address": "455 Golden Gate Avenue, Suite 14600\nSan Francisco, CA 94102", "type": "district", "email": null}], "+party": "Democratic", "suffixes": "Ma"}, {"last_name": "Portantino", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96359", "full_name": "Anthony Portantino", "id": "CAL000071", "first_name": "Anthony J.", "middle_name": "", "district": "44", "chamber": "lower", "state": "ca", "votesmart_id": "69513", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2044", "street": "P.O. Box 942849, Room 2003", "zip": "94249-0044", "city": "Sacramento"}, "leg_id": "CAL000071", "active": true, "transparencydata_id": "c8ad0044a4d94c64994f24a1645fb270", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/44.jpg?1321660362", "+district_offices": [{"phone": "(626) 577-9944", "street": "215 N. Marengo Ave., Suite 115", "zip": "91101", "city": "Pasadena"}], "url": "http://asmdc.org/members/a44", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "nimsp_id": "8960", "+district": "44", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2044", "address": "P.O. Box 942849, Room 5144\nSacramento, CA 94249-0044", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(626) 577-9944", "address": "215 N. Marengo Ave., Suite 115\nPasadena, CA 91101", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Furutani", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "102817", "full_name": "Warren T Furutani", "id": "CAL000073", "first_name": "Warren T.", "middle_name": "T", "district": "55", "chamber": "lower", "state": "ca", "votesmart_id": "58165", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2055", "street": "P.O. Box 942849, Room 6025", "zip": "94249-0055", "city": "Sacramento"}, "leg_id": "CAL000073", "active": true, "transparencydata_id": "3e00dab4d28a48b29fc14cee117e4eac", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/55.jpg?1320968261", "+district_offices": [{"phone": "(562) 989-2919", "street": "4201 Long Beach Blvd., Suite 327", "zip": "90807", "city": "Long Beach"}], "url": "http://asmdc.org/members/a55", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "nimsp_id": "8016", "+district": "55", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2055", "address": "P.O. Box 942849, Room 6025\nSacramento, CA 94249-0055", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(562) 989-2919", "address": "4201 Long Beach Blvd., Suite 327\nLong Beach, CA 90807", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Smyth", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96392", "full_name": "Cameron Smyth", "id": "CAL000074", "first_name": "Cameron", "middle_name": "", "district": "38", "state": "ca", "votesmart_id": "58498", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2038", "street": "P.O. Box 942849, Room 4098", "zip": "94249-0038", "city": "Sacramento"}, "leg_id": "CAL000074", "active": true, "transparencydata_id": "21b53aa8cb6a4933b5bb94b18e4a23d9", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/38.jpg?1321660540", "+district_offices": [{"phone": "(661) 286-1565", "street": "23734 Valencia Blvd, Suite 303", "zip": "91355", "city": "Santa Clarita"}], "url": "http://arc.asm.ca.gov/member/38", "country": "us", "created_at": "2012-01-31 19:25:10", "level": "state", "+district": "38", "nimsp_id": "8073", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2038", "address": "P.O. Box 942849, Room 4098\nSacramento, CA 94249-0038", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(661) 286-1565", "address": "23734 Valencia Blvd, Suite 303\nSanta Clarita, CA 91355", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Lowenthal", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "97971", "full_name": "Bonnie Lowenthal", "id": "CAL000080", "first_name": "Bonnie", "middle_name": "", "district": "54", "state": "ca", "votesmart_id": "70442", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2054", "street": "P.O. Box 942849, Room 3152", "zip": "94249-0054", "city": "Sacramento"}, "leg_id": "CAL000080", "active": true, "transparencydata_id": "23c1b190f8954aa6991f44506c81dc0b", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/a54.JPG?1325880771", "+district_offices": [{"phone": "(562) 495-2915", "street": "110 Pine Avenue, Suite 804", "zip": "90802", "city": "Long Beach"}], "url": "http://asmdc.org/members/a54", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "54", "nimsp_id": "9043", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2054", "address": "P.O. Box 942849, Room 3152\nSacramento, CA 94249-0054", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(562) 495-2915", "address": "110 Pine Avenue, Suite 804\nLong Beach, CA 90802", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Nestande", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "97993", "full_name": "Brian Nestande", "id": "CAL000081", "first_name": "Brian", "middle_name": "", "district": "64", "state": "ca", "votesmart_id": "104422", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2064", "street": "P.O. Box 942849, Room 4139", "zip": "94249-0064", "city": "Sacramento"}, "leg_id": "CAL000081", "active": true, "transparencydata_id": "92af6c6f397144f5bde76e637a6e42b1", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/Nestande.jpg?1326405560", "+district_offices": [{"phone": "(951) 369-6644", "street": "1223 University Avenue, Suite 230", "zip": "92507", "city": "Riverside"}], "url": "http://arc.asm.ca.gov/member/64", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "64", "nimsp_id": "9619", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2064", "address": "P.O. Box 942849, Room 4139\nSacramento, CA 94249-0064", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(951) 369-6644", "address": "1223 University Avenue, Suite 230\nRiverside, CA 92507", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Fletcher", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "97916", "full_name": "Nathan Fletcher", "id": "CAL000082", "first_name": "Nathan", "middle_name": "", "district": "75", "state": "ca", "votesmart_id": "104432", "party": "Independent", "+capitol_office": {"phone": "(916) 319-2075", "street": "P.O. Box 942849, Room 2130", "zip": "94249-0075", "city": "Sacramento"}, "leg_id": "CAL000082", "active": true, "transparencydata_id": "0c1c8d66e04e47e895851324a891cc9d", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/75.jpg?1320968056", "+district_offices": [{"phone": "(858) 689-6290", "street": "9909 Mira Mesa Boulevard, Suite 130", "zip": "92131", "city": "San Diego"}], "url": "http://assembly-independent.org/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "75", "nimsp_id": "9620", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2075", "address": "P.O. Box 942849, Room 2130\nSacramento, CA 94249-0075", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(858) 689-6290", "address": "9909 Mira Mesa Boulevard, Suite 130\nSan Diego, CA 92131", "type": "district", "email": null}], "+party": "Independent", "suffixes": ""}, {"last_name": "Hill", "updated_at": "2012-11-07 00:27:17", "nimsp_candidate_id": "97939", "full_name": "Jerry Hill", "id": "CAL000083", "first_name": "Jerry", "middle_name": "", "district": "19", "chamber": "lower", "state": "ca", "votesmart_id": "81552", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2019", "street": "P.O. Box 942849, Room 3160", "zip": "94249-0019", "city": "Sacramento"}, "leg_id": "CAL000083", "active": true, "transparencydata_id": "674bf977e4ea4c7189d8298445d2b542", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/19.jpg?1320969264", "+district_offices": [{"phone": "(650) 349-1900", "street": "1528 South El Camino Real, Suite 302", "zip": "94402", "city": "San Mateo"}], "url": "http://asmdc.org/members/a19", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "nimsp_id": "9103", "+district": "19", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2019", "address": "P.O. Box 942849, Room 2175\nSacramento, CA 94249-0019", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(650) 349-1900", "address": "1528 South El Camino Real, Suite 302\nSan Mateo, CA 94402", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Fong", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "97918", "full_name": "Paul Fong", "id": "CAL000084", "first_name": "Paul", "middle_name": "", "district": "22", "state": "ca", "votesmart_id": "104363", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2022", "street": "P.O. Box 942849, Room 5135", "zip": "94249-0022", "city": "Sacramento"}, "leg_id": "CAL000084", "active": true, "transparencydata_id": "f5eead2b98f746a892f996104620aa33", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/22.jpg?1320968132", "+district_offices": [{"phone": "(650) 210-2000", "street": "274 Castro Street, Suite 202", "zip": "94041", "city": "Mountain View"}], "url": "http://asmdc.org/members/a22", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "22", "nimsp_id": "9614", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2022", "address": "P.O. Box 942849, Room 5016\nSacramento, CA 94249-0022", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(650) 210-2000", "address": "274 Castro Street, Suite 202\nMountain View, CA 94041", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Blumenfield", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": null, "full_name": "Bob Blumenfield", "id": "CAL000088", "first_name": "Bob", "middle_name": "", "district": "40", "state": "ca", "votesmart_id": "104387", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2040", "street": "P.O. Box 942849, Room 6026", "zip": "94249-0040", "city": "Sacramento"}, "leg_id": "CAL000088", "active": true, "transparencydata_id": "58bccc8dbc004d6fb3f245c426469196", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/BLUMENFIELD_0.JPG?1325883125", "+district_offices": [{"phone": "(818) 904-3840", "street": "6150 Van Nys Blvd, Suite 305", "zip": "91401", "city": "Van Nuys"}], "url": "http://asmdc.org/members/a40/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "40", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2040", "address": "P.O. Box 942849, Room 6026\nSacramento, CA 94249-0040", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(818) 904-3840", "address": "6150 Van Nys Blvd, Suite 305\nVan Nuys, CA 91401", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Pérez", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "John Pérez", "id": "CAL000089", "first_name": "John A.", "middle_name": "", "district": "46", "state": "ca", "votesmart_id": "104400", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2046", "street": "P.O. Box 942849, Room 219", "zip": "94249-0046", "city": "Sacramento"}, "leg_id": "CAL000089", "active": true, "transparencydata_id": "aee228eda8954c609657cef96692d5b4", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/46.jpg?1321660207", "+district_offices": [{"phone": "(213) 620-4646", "street": "320 West 4th Street, Room 1050", "zip": "90013", "city": "Los Angeles"}], "url": "http://www.asmdc.org/speaker/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "46", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2046", "address": "P.O. Box 942849, Room 219\nSacramento, CA 94249-0046", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(213) 620-4646", "address": "320 West 4th Street, Room 1050\nLos Angeles, CA 90013", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Davis", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96239", "full_name": "Mike Davis", "id": "CAL000090", "first_name": "Mike", "middle_name": "", "district": "48", "chamber": "lower", "state": "ca", "votesmart_id": "28657", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2048", "street": "P.O. Box 942849, Room 2160", "zip": "94249-0048", "city": "Sacramento"}, "leg_id": "CAL000090", "active": true, "transparencydata_id": "c2d2c36816d14949998c6194b313fe39", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/48.jpg?1320967693", "+district_offices": [{"phone": "(213) 744-2111", "street": "700 State Drive", "zip": "90037", "city": "Los Angeles"}], "url": "http://asmdc.org/members/a48/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "nimsp_id": "4395", "+district": "48", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2048", "address": "P.O. Box 942849, Room 2160\nSacramento, CA 94249-0048", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(213) 744-2111", "address": "700 State Drive\nLos Angeles, CA 90037", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Mendoza", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96333", "full_name": "Tony Mendoza", "id": "CAL000091", "first_name": "Tony", "middle_name": "", "district": "56", "chamber": "lower", "state": "ca", "votesmart_id": "56753", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2056", "street": "P.O. Box 942849, Room 2196", "zip": "94249-0056", "city": "Sacramento"}, "leg_id": "CAL000091", "active": true, "transparencydata_id": "39c80cc85af94a0db6d161bdde0a2eac", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/56.jpg?1320970069", "+district_offices": [{"phone": "(562) 864-5600", "street": "12501 E. Imperial Highway, Suite 210", "zip": "90650", "city": "Norwalk"}], "url": "http://asmdc.org/members/a56", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "nimsp_id": "7810", "+district": "56", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2056", "address": "P.O. Box 942849, Room 2196\nSacramento, CA 94249-0056", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(562) 864-5600", "address": "12501 E. Imperial Highway, Suite 210\nNorwalk, CA 90650", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Hagman", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "97931", "full_name": "Curt Hagman", "id": "CAL000092", "first_name": "Curt", "middle_name": "", "district": "60", "state": "ca", "votesmart_id": "70547", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2060", "street": "P.O. Box 942849, Room 4130", "zip": "94249-0060", "city": "Sacramento"}, "leg_id": "CAL000092", "active": true, "transparencydata_id": "1386a06a71464b5299773301215a0802", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/60.jpg?1320968843", "+district_offices": [{"phone": "(909) 627-7021", "street": "13920 City Center Drive, Suite 260", "zip": "91709", "city": "Chino Hills"}], "url": "http://arc.asm.ca.gov/member/60", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "60", "nimsp_id": "9045", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2060", "address": "P.O. Box 942849, Room 4130\nSacramento, CA 94249-0060", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(909) 627-7021", "address": "13920 City Center Drive, Suite 260\nChino Hills, CA 91709", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Jeffries", "updated_at": "2012-11-07 00:27:17", "nimsp_candidate_id": "96290", "full_name": "Kevin D Jeffries", "id": "CAL000093", "first_name": "Kevin", "middle_name": "D", "district": "66", "state": "ca", "votesmart_id": "59945", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2066", "street": "P.O. Box 942849, Room 5128", "zip": "94249-0066", "city": "Sacramento"}, "leg_id": "CAL000093", "active": true, "transparencydata_id": "acc4647db2854f46854746f482a8dfef", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/66.jpg?1320969514", "+district_offices": [{"phone": "(951) 894-1232", "street": "41391 Kalmia Street, Suite 220", "zip": "92562", "city": "Murrieta"}], "url": "http://arc.asm.ca.gov/member/66", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "66", "nimsp_id": "8216", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2066", "address": "P.O. Box 942849, Room 5128\nSacramento, CA 94249-0066", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(951) 894-1232", "address": "41391 Kalmia Street, Suite 220\nMurrieta, CA 92562", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Silva", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "96388", "full_name": "Jim Silva", "id": "CAL000094", "first_name": "Jim", "middle_name": "", "district": "67", "state": "ca", "votesmart_id": "59950", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2067", "street": "P.O. Box 942849, Room 2170", "zip": "94249-0067", "city": "Sacramento"}, "leg_id": "CAL000094", "active": true, "transparencydata_id": "803d5051baf448c1a57e4750ea5caf45", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/67.jpg?1321660422", "+district_offices": [{"phone": "(714) 843-4966", "street": "17011 Beach Blvd, Suite 570", "zip": "92647", "city": "Huntington Beach"}], "url": "http://arc.asm.ca.gov/member/67", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "67", "nimsp_id": "8217", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2067", "address": "P.O. Box 942849, Room 2170\nSacramento, CA 94249-0067", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(714) 843-4966", "address": "17011 Beach Blvd, Suite 570\nHuntington Beach, CA 92647", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Miller", "updated_at": "2012-11-07 00:27:17", "nimsp_candidate_id": "97983", "full_name": "Jeff Miller", "id": "CAL000095", "first_name": "Jeff", "middle_name": "", "district": "71", "state": "ca", "votesmart_id": "70681", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2071", "street": "P.O. Box 942849, Room 4144", "zip": "94249-0071", "city": "Sacramento"}, "leg_id": "CAL000095", "active": true, "transparencydata_id": "afb67e74726f450ca9caf8254f40261f", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/71.jpg?1320970123", "+district_offices": [{"phone": "(949) 598-7171", "street": "20532 El Toro Road, Suite 203", "zip": "92692", "city": "Mission Viejo"}], "url": "http://arc.asm.ca.gov/member/71", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "71", "nimsp_id": "9047", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2071", "address": "P.O. Box 942849, Room 4144\nSacramento, CA 94249-0071", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(949) 598-7171", "address": "20532 El Toro Road, Suite 203\nMission Viejo, CA 92692", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Norby", "updated_at": "2012-11-07 00:27:17", "nimsp_candidate_id": null, "full_name": "Chris Norby", "id": "CAL000096", "first_name": "Chris", "middle_name": "", "district": "72", "state": "ca", "votesmart_id": "82734", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2072", "street": "P.O. Box 942849, Room 4116", "zip": "94249-0072", "city": "Sacramento"}, "leg_id": "CAL000096", "active": true, "transparencydata_id": "1576aa512a80476f96c1c1715b44e728", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/72.jpg?1320970572", "+district_offices": [{"phone": "(714) 526-7272", "street": "1400 North Harbor Blvd, Suite 601", "zip": "92835", "city": "Fullerton"}], "url": "http://arc.asm.ca.gov/member/72", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "72", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2072", "address": "P.O. Box 942849, Room 4116\nSacramento, CA 94249-0072", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(714) 526-7272", "address": "1400 North Harbor Blvd, Suite 601\nFullerton, CA 92835", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Pérez", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": null, "full_name": "V. Manuel Pérez", "id": "CAL000098", "first_name": "V. Manuel", "middle_name": "", "district": "80", "chamber": "lower", "state": "ca", "votesmart_id": "104441", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2080", "street": "P.O. Box 942849, Room 4117", "zip": "94249-0080", "city": "Sacramento"}, "leg_id": "CAL000098", "active": true, "transparencydata_id": "aad0d30231594cd9b08414b6e5cc5cbe", "photo_url": "http://asmdc.org/members/a80/images/stories/session005-08-27-09.jpg", "+district_offices": [{"phone": "(760) 342-8047", "street": "45-677 Oasis Street", "zip": "92201", "city": "Indio"}], "url": "http://asmdc.org/members/a80", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "+district": "80", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2080", "address": "P.O. Box 942849, Room 4117\nSacramento, CA 94249-0080", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(760) 342-8047", "address": "45-677 Oasis Street\nIndio, CA 92201", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Yamada", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "98050", "full_name": "Mariko Yamada", "id": "CAL000099", "first_name": "Mariko", "middle_name": "", "district": "8", "state": "ca", "votesmart_id": "81977", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2008", "street": "P.O. Box 942849, Room 5160", "zip": "94249-0008", "city": "Sacramento"}, "leg_id": "CAL000099", "active": true, "transparencydata_id": "28f796040d1f40208b7b37426ac2204a", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/a08.jpg?1325880302", "+district_offices": [{"phone": "(707) 455-8025", "street": "555 Mason Street, Suite 275", "zip": "95688", "city": "Vacaville"}], "url": "http://asmdc.org/members/a08", "country": "us", "created_at": "2012-01-31 19:25:10", "level": "state", "+district": "8", "nimsp_id": "9105", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2008", "address": "P.O. Box 942849, Room 5160\nSacramento, CA 94249-0008", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(707) 455-8025", "address": "555 Mason Street, Suite 275\nVacaville, CA 95688", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Chesbro", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "97762", "full_name": "Wesley Chesbro", "id": "CAL000101", "first_name": "Wesley", "middle_name": "", "district": "1", "state": "ca", "votesmart_id": "16646", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2001", "street": "P.O. Box 942849, Room 2141", "zip": "94249-0001", "city": "Sacramento"}, "leg_id": "CAL000101", "active": true, "transparencydata_id": "8018fc4edf9c41a8ac7ae2de0b3d691b", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/1.jpg?1320967372", "+district_offices": [{"phone": "(707) 576-2526", "street": "50 D Street, Suite 450", "zip": "95404", "city": "Santa Rosa"}], "url": "http://asmdc.org/members/a01/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "1", "nimsp_id": "3246", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2001", "address": "P.O. Box 942849, Room 2141\nSacramento, CA 94249-0001", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(707) 576-2526", "address": "50 D Street, Suite 450\nSanta Rosa, CA 95404", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Nielsen", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "97994", "full_name": "Jim Nielsen", "id": "CAL000103", "first_name": "Jim", "middle_name": "", "district": "2", "state": "ca", "votesmart_id": "104331", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2002", "street": "P.O. Box 942849, Room 6031", "zip": "94249-0002", "city": "Sacramento"}, "leg_id": "CAL000103", "active": true, "transparencydata_id": "fd9441bb3cfd41bbac9d7e574c76439d", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/High_Rez_Headshot_forReporters1.gif?1334002709", "+district_offices": [{"phone": "(530) 223-6300", "street": "280 Hemsted, Suite 110", "zip": "96002", "city": "Redding"}], "url": "http://arc.asm.ca.gov/member/2", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "2", "nimsp_id": "9610", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2002", "address": "P.O. Box 942849, Room 6031\nSacramento, CA 94249-0002", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(530) 223-6300", "address": "280 Hemsted, Suite 110\nRedding, CA 96002", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Ammiano", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "97726", "full_name": "Tom Ammiano", "id": "CAL000104", "first_name": "Tom", "middle_name": "", "district": "13", "chamber": "lower", "state": "ca", "votesmart_id": "70419", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2013", "street": "P.O. Box 942849, Room 4005", "zip": "94249-0013", "city": "Sacramento"}, "leg_id": "CAL000104", "active": true, "transparencydata_id": "50a896ff77f243c5be6dc97496a52e74", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/13.jpg?1320964960", "+district_offices": [{"phone": "(415) 557-3013", "street": "455 Golden Gate Avenue, Suite 14300", "zip": "94102", "city": "San Francisco"}], "url": "http://asmdc.org/members/a13/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "nimsp_id": "9042", "+district": "13", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2013", "address": "P.O. Box 942849, Room 3146\nSacramento, CA 94249-0013", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(415) 557-3013", "address": "455 Golden Gate Avenue, Suite 14300\nSan Francisco, CA 94102", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Swanson", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "96402", "full_name": "Sandré Swanson", "id": "CAL000105", "first_name": "Sandré R.", "middle_name": "R", "district": "16", "chamber": "lower", "state": "ca", "votesmart_id": "59884", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2016", "street": "P.O. Box 942849, Room 6012", "zip": "94249-0016", "city": "Sacramento"}, "leg_id": "CAL000105", "active": true, "transparencydata_id": "267ffc3ae79f49b8b482aa242a88ef1f", "photo_url": "http://democrats.assembly.ca.gov/members/a16/photos/photo014.jpg", "+district_offices": [{"phone": "(510) 286-1670", "street": "1515 Clay Street, Suite 2204", "zip": "94612", "city": "Oakland"}], "url": "http://asmdc.org/members/a16", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "nimsp_id": "8204", "+district": "16", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2016", "address": "P.O. Box 942849, Room 6012\nSacramento, CA 94249-0016", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(510) 286-1670", "address": "1515 Clay Street, Suite 2204\nOakland, CA 94612", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Berryhill", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "97736", "full_name": "Bill Berryhill", "id": "CAL000106", "first_name": "Bill", "middle_name": "", "district": "26", "state": "ca", "votesmart_id": "104368", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2026", "street": "P.O. Box 942849, Room 3141", "zip": "94249-0026", "city": "Sacramento"}, "leg_id": "CAL000106", "active": true, "transparencydata_id": "e8415185c68f44c1912218426d26b50b", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/26.jpg?1320966373", "+district_offices": [{"phone": "(209) 473-6972", "street": "4557 Quail Lake Drive, Suite C3", "zip": "95207", "city": "Stockton"}], "url": "http://arc.asm.ca.gov/member/26/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "26", "nimsp_id": "9615", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2026", "address": "P.O. Box 942849, Room 3141\nSacramento, CA 94249-0026", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(209) 473-6972", "address": "4557 Quail Lake Drive, Suite C3\nStockton, CA 95207", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Monning", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": null, "full_name": "William W Monning", "id": "CAL000107", "first_name": "William W.", "middle_name": "W", "district": "27", "chamber": "lower", "state": "ca", "votesmart_id": "104370", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2027", "street": "P.O. Box 942849, Room 6005", "zip": "94249-0027", "city": "Sacramento"}, "leg_id": "CAL000107", "active": true, "transparencydata_id": "9d4b608dfb61418aa0374a38c1b2e746", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/27.jpg?1320970312", "+district_offices": [{"phone": "(831) 425-1503", "street": "701 Ocean Street, Room 318-B", "zip": "95060", "city": "Santa Cruz"}], "url": "http://asmdc.org/members/a27", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "27", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2027", "address": "P.O. Box 942849, Room 4164\nSacramento, CA 94249-0027", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(831) 425-1503", "address": "701 Ocean Street, Room 318-B\nSanta Cruz, CA 95060", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Conway", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "97766", "full_name": "Connie Conway", "id": "CAL000108", "first_name": "Connie", "middle_name": "", "district": "34", "state": "ca", "votesmart_id": "81797", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2034", "street": "P.O. Box 942849, Room 3104", "zip": "94249-0034", "city": "Sacramento"}, "leg_id": "CAL000108", "active": true, "transparencydata_id": "e58eebb0869344e7ba3bfb1bd9d78ad8", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/34.jpg?1320967454", "+district_offices": [{"phone": "(559) 636-3440", "street": "113 North Church Street, Suite 504 & 505", "zip": "93291", "city": "Visalia"}], "url": "http://arc.asm.ca.gov/member/34/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "34", "nimsp_id": "9104", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2034", "address": "P.O. Box 942849, Room 3104\nSacramento, CA 94249-0034", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(559) 636-3440", "address": "113 North Church Street, Suite 504 & 505\nVisalia, CA 93291", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Brownley", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "96218", "full_name": "Julia Brownley", "id": "CAL000109", "first_name": "Julia", "middle_name": "", "district": "41", "state": "ca", "votesmart_id": "59904", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2041", "street": "P.O. Box 942849, Room 2163", "zip": "94249-0041", "city": "Sacramento"}, "leg_id": "CAL000109", "active": true, "transparencydata_id": "b32fbded0e0c4c938f6f32301cdc3057", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/41.jpg?1320966859", "+district_offices": [{"phone": "(818) 596-4141", "street": "2800 28th Street, Suite 150", "zip": "90405", "city": "Santa Monica"}], "url": "http://asmdc.org/members/a41/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "41", "nimsp_id": "8207", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2041", "address": "P.O. Box 942849, Room 4112\nSacramento, CA 94249-0041", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(818) 596-4141", "address": "2800 28th Street, Suite 150\nSanta Monica, CA 90405", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Feuer", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "96257", "full_name": "Mike Feuer", "id": "CAL000110", "first_name": "Mike", "middle_name": "", "district": "42", "state": "ca", "votesmart_id": "59907", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2042", "street": "P.O. Box 942849, Room 2013", "zip": "94249-0042", "city": "Sacramento"}, "leg_id": "CAL000110", "active": true, "transparencydata_id": "c9c21fa172c64602a1eee643e4bedb4a", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/42.jpg?1320967988", "+district_offices": [{"phone": "(310) 285-5490", "street": "9200 Sunset Blvd., Suite 1212", "zip": "90069", "city": "West Hollywood"}], "url": "http://asmdc.org/members/a42", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "42", "nimsp_id": "8208", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2042", "address": "P.O. Box 942849, Room 4005\nSacramento, CA 94249-0042", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(310) 285-5490", "address": "9200 Sunset Blvd., Suite 1212\nWest Hollywood, CA 90069", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Bradford", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": null, "full_name": "Steven Bradford", "id": "CAL000111", "first_name": "Steven", "middle_name": "", "district": "51", "state": "ca", "votesmart_id": "56752", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2051", "street": "P.O. Box 942849, Room 5136", "zip": "94249-0051", "city": "Sacramento"}, "leg_id": "CAL000111", "active": true, "transparencydata_id": "a2f8842067c545cab87af3e9b13ef5ae", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/51.jpg?1320966798", "+district_offices": [{"phone": "(310) 412-6400", "street": "One Manchester Blvd, Suite 601", "zip": "94249-0051", "city": "Inglewood"}], "url": "http://asmdc.org/members/a51", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "51", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2051", "address": "P.O. Box 942849, Room 5136\nSacramento, CA 94249-0051", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(310) 412-6400", "address": "One Manchester Blvd, Suite 601\nInglewood, CA 94249-0051", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Hall", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "97932", "full_name": "Isadore Hall", "id": "CAL000112", "first_name": "Isadore III", "middle_name": "", "district": "52", "state": "ca", "votesmart_id": "70660", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2052", "street": "P.O. Box 942849, Room 3123", "zip": "94249-0052", "city": "Sacramento"}, "leg_id": "CAL000112", "active": true, "transparencydata_id": "0781d35c22764fd5b1eec57a77da567b", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/52.jpg?1320968976", "+district_offices": [{"phone": "(310) 223-1201", "street": "2200 W. Artesia Blvd., Suite 210", "zip": "90220", "city": "Rancho Dominguez"}], "url": "http://asmdc.org/members/a52", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "52", "nimsp_id": "9046", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2052", "address": "P.O. Box 942849, Room 3123\nSacramento, CA 94249-0052", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(310) 223-1201", "address": "2200 W. Artesia Blvd., Suite 210\nRancho Dominguez, CA 90220", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Torres", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "98032", "full_name": "Norma Torres", "id": "CAL000113", "first_name": "Norma J.", "middle_name": "", "district": "61", "state": "ca", "votesmart_id": "71284", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2061", "street": "P.O. Box 942849, Room 4167", "zip": "94249-0061", "city": "Sacramento"}, "leg_id": "CAL000113", "active": true, "transparencydata_id": "98534af654bd466fa983246863f61650", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/61.jpg?1321660733", "+district_offices": [{"phone": "(909) 902-9606", "street": "13160 7th Street", "zip": "91710", "city": "Chino"}], "url": "http://asmdc.org/members/a61", "country": "us", "created_at": "2012-01-31 19:25:10", "level": "state", "+district": "61", "nimsp_id": "9052", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2061", "address": "P.O. Box 942849, Room 2179\nSacramento, CA 94249-0061", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(909) 902-9606", "address": "13160 7th Street\nChino, CA 91710", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Cook", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96230", "full_name": "Paul J Cook", "id": "CAL000114", "first_name": "Paul", "middle_name": "J", "district": "65", "state": "ca", "votesmart_id": "58121", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2065", "street": "P.O. Box 942849, Room 5164", "zip": "94249-0065", "city": "Sacramento"}, "leg_id": "CAL000114", "active": true, "transparencydata_id": "0d551cb8db49499a99ea821a9f5160e1", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/65.jpg?1320967528", "+district_offices": [{"phone": "(909) 790-4196", "street": "34932 Yucaipa Boulevard", "zip": "92399", "city": "Yucaipa"}], "url": "http://arc.asm.ca.gov/member/65/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "65", "nimsp_id": "8008", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2065", "address": "P.O. Box 942849, Room 5164\nSacramento, CA 94249-0065", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(909) 790-4196", "address": "34932 Yucaipa Boulevard\nYucaipa, CA 92399", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Hayashi", "updated_at": "2012-11-07 00:27:19", "nimsp_candidate_id": "96277", "full_name": "Mary Hayashi", "id": "CAL000117", "first_name": "Mary", "middle_name": "", "district": "18", "state": "ca", "votesmart_id": "59886", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2018", "street": "P.O. Box 942849, Room 3013", "zip": "94249-0018", "city": "Sacramento"}, "leg_id": "CAL000117", "active": true, "transparencydata_id": "b9bcc8b7920644218edfb669750a388f", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/18.jpg?1320969104", "+district_offices": [{"phone": "(510) 583-8818", "street": "22320 Foothill Boulevard, Suite 540", "zip": "94541", "city": "Hayward"}], "url": "http://asmdc.org/members/a18", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "18", "nimsp_id": "8205", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2018", "address": "P.O. Box 942849, Room 5175\nSacramento, CA 94249-0018", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(510) 583-8818", "address": "22320 Foothill Boulevard, Suite 540\nHayward, CA 94541", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Fuentes", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": "96260", "full_name": "Felipe Fuentes", "id": "CAL000121", "first_name": "Felipe", "middle_name": "", "district": "39", "chamber": "lower", "state": "ca", "votesmart_id": "70010", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2039", "street": "P.O. Box 942849, Room 2114", "zip": "94249-0039", "city": "Sacramento"}, "leg_id": "CAL000121", "active": true, "transparencydata_id": "39f2afd2295643c48b11c4760a021007", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/39.jpg?1320968201", "+district_offices": [{"phone": "(818) 504-3911", "street": "9300 Laurel Canyon Blvd., First Floor", "zip": "91331-4314", "city": "Arleta"}], "url": "http://asmdc.org/members/a39", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "nimsp_id": "9039", "+district": "39", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2039", "address": "P.O. Box 942849, Room 4167\nSacramento, CA 94249-0039", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(818) 504-3911", "address": "9300 Laurel Canyon Blvd., First Floor\nArleta, CA 91331-4314", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Gatto", "updated_at": "2012-11-07 00:27:18", "nimsp_candidate_id": null, "full_name": "Mike Gatto", "id": "CAL000123", "first_name": "Mike", "middle_name": "", "district": "43", "state": "ca", "votesmart_id": "120220", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2043", "street": "P.O. Box 942849, Room 4140", "zip": "94249-0043", "city": "Sacramento"}, "leg_id": "CAL000123", "active": true, "transparencydata_id": "76584a5322274b9b892642b7b6ae3db5", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/43.jpg?1320968557", "+district_offices": [{"phone": "(818) 240-6330", "street": "300 East Magnolia, Suite 504", "zip": "91502", "city": "Burbank"}], "url": "http://asmdc.org/members/a43", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "43", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2043", "address": "P.O. Box 942849, Room 2114\nSacramento, CA 94249-0043", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(818) 558-3043", "address": "300 East Magnolia, Suite 504\nBurbank, CA 91502", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Gordon", "updated_at": "2012-11-07 00:27:19", "full_name": "Richard Gordon", "id": "CAL000137", "first_name": "Richard S.", "middle_name": "", "district": "21", "state": "ca", "votesmart_id": "81558", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2021", "street": "P.O. Box 942849, Room 5175", "zip": "94249-0021", "city": "Sacramento"}, "leg_id": "CAL000137", "active": true, "transparencydata_id": "7a9fb7649cd643618a1ea69dd531ef23", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/21.jpg?1320968633", "+district_offices": [{"phone": "(650) 691-2121", "street": "5050 El Camino Real, Suite 117", "zip": "94022", "city": "Los Altos"}], "url": "http://asmdc.org/members/a21", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "21", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2021", "address": "P.O. Box 942849, Room 4126\nSacramento, CA 94249-0021", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(650) 691-2121", "address": "5050 El Camino Real, Suite 117\nLos Altos, CA 94022", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Olsen", "updated_at": "2012-11-07 00:27:18", "full_name": "Kristin Olsen", "id": "CAL000138", "first_name": "Kristin", "middle_name": "", "district": "25", "state": "ca", "votesmart_id": "70651", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2025", "street": "P.O. Box 942849, Room 2111", "zip": "94249-0025", "city": "Sacramento"}, "leg_id": "CAL000138", "active": true, "transparencydata_id": "9e1bb0921bbb435dac31a01d3c8c062f", "photo_url": "http://arc.asm.ca.gov/member/25/media/photo/KO_GiantsTrophy_2udl.jpg", "+district_offices": [{"phone": "(209) 576-6425", "street": "3719 Tully Road, Suite C", "zip": "95356", "city": "Modesto"}], "url": "http://arc.asm.ca.gov/member/25", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "25", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2025", "address": "P.O. Box 942849, Room 2111\nSacramento, CA 94249-0025", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(209) 576-6425", "address": "3719 Tully Road, Suite C\nModesto, CA 95356", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Perea", "updated_at": "2012-11-07 00:27:18", "full_name": "Henry Perea", "id": "CAL000139", "first_name": "Henry T.", "middle_name": "", "district": "31", "chamber": "lower", "state": "ca", "votesmart_id": "71047", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2031", "street": "P.O. Box 942849, Room 4112", "zip": "94249-0031", "city": "Sacramento"}, "leg_id": "CAL000139", "active": true, "transparencydata_id": "f12dec31cee34b2ba1e95ef4b8581d61", "photo_url": "http://asmdc.org/members/a31/images/stories/perea_bio.jpg", "+district_offices": [{"phone": "(559) 445-5532", "street": "2550 Mariposa Mall, Suite 5031", "zip": "93721", "city": "Fresno"}], "url": "http://asmdc.org/members/a31", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "31", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2031", "address": "P.O. Box 942849, Room 3120\nSacramento, CA 94249-0031", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(559) 445-5532", "address": "2550 Mariposa Mall, Suite 5031\nFresno, CA 93721", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Grove", "updated_at": "2012-11-07 00:27:18", "full_name": "Shannon Grove", "id": "CAL000140", "first_name": "Shannon L.", "middle_name": "", "district": "32", "state": "ca", "votesmart_id": "120204", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2032", "street": "P.O. Box 942849, Room 3098", "zip": "94249-0032", "city": "Sacramento"}, "leg_id": "CAL000140", "active": true, "transparencydata_id": "68652abeb41a454da1d6fbced6cef29c", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/32.jpg?1320968775", "+district_offices": [{"phone": "(661) 395-2995", "street": "4900 California Ave., Suite 100B", "zip": "93309", "city": "Bakersfield"}], "url": "http://arc.asm.ca.gov/member/32", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "32", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2032", "address": "P.O. Box 942849, Room 3098\nSacramento, CA 94249-0032", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(661) 395-2995", "address": "4900 California Ave., Suite 100B\nBakersfield, CA 93309", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Hueso", "updated_at": "2012-11-07 00:27:18", "full_name": "Ben Hueso", "id": "CAL000141", "first_name": "Ben", "middle_name": "", "district": "79", "state": "ca", "votesmart_id": "70366", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2079", "street": "P.O. Box 942849, Room 5144", "zip": "94249-0079", "city": "Sacramento"}, "leg_id": "CAL000141", "active": true, "transparencydata_id": "766bcd89d73f416c968ee225f1281759", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/79.jpg?1320969399", "+district_offices": [{"phone": "(619) 409-7979", "street": "303 H Street, Suite 200", "zip": "91910", "city": "Chula Vista"}], "url": "http://asmdc.org/members/a79", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "79", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2079", "address": "P.O. Box 942849, Room 5155\nSacramento, CA 94249-0079", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(619) 409-7979", "address": "303 H Street, Suite 200\nChula Vista, CA 91910", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Atkins", "updated_at": "2012-11-07 00:27:18", "full_name": "Toni Atkins", "id": "CAL000144", "first_name": "Toni", "middle_name": "", "district": "76", "chamber": "lower", "state": "ca", "votesmart_id": "70372", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2076", "street": "P.O. Box 942849, Room 4146", "zip": "94249-0076", "city": "Sacramento"}, "leg_id": "CAL000144", "active": true, "transparencydata_id": "070e300882e942c899aed29b7d42d763", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/76.jpg?1320966191", "+district_offices": [{"phone": "(619) 645-3090", "street": "2445 Fifth Avenue, Suite 401", "zip": "92101", "city": "San Diego"}], "url": "http://asmdc.org/members/a76/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "76", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2076", "address": "P.O. Box 942849, Room 319\nSacramento, CA 94249-0076", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(619) 645-3090", "address": "2445 Fifth Avenue, Suite 401\nSan Diego, CA 92101", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Jones", "updated_at": "2012-11-07 00:27:19", "full_name": "Brian Jones", "id": "CAL000145", "first_name": "Brian W.", "middle_name": "", "district": "77", "state": "ca", "votesmart_id": "70781", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2077", "street": "P.O. Box 942849, Room 3147", "zip": "94249-0077", "city": "Sacramento"}, "leg_id": "CAL000145", "active": true, "transparencydata_id": "173c22e3c1f54e7b90fa482c45d572d5", "photo_url": "http://arc.asm.ca.gov/member/77/media/photo/AD77_BRIAN_e2mj.jpg", "+district_offices": [{"phone": "(619) 441-2322", "street": "10152 Mission Gorge Road", "zip": "92071-3812", "city": "Santee"}], "url": "http://arc.asm.ca.gov/member/77", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "77", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2077", "address": "P.O. Box 942849, Room 3147\nSacramento, CA 94249-0077", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(619) 441-2322", "address": "10152 Mission Gorge Road\nSantee, CA 92071-3812", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Achadjian", "updated_at": "2012-11-07 00:27:18", "full_name": "Katcho Achadjian", "id": "CAL000146", "first_name": "Katcho", "middle_name": "", "district": "33", "state": "ca", "votesmart_id": "81542", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2033", "street": "P.O. Box 942849, Room 2016", "zip": "94249-0033", "city": "Sacramento"}, "leg_id": "CAL000146", "active": true, "transparencydata_id": "5bd68d441b8b4bb88224739a6071fa2a", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/33.jpg?1320965045", "+district_offices": [{"phone": "(805) 549-3381", "street": "1150 Osos Street, Suite 207", "zip": "93401", "city": "San Luis Obispo"}], "url": "http://arc.asm.ca.gov/member/33", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "33", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2033", "address": "P.O. Box 942849, Room 2016\nSacramento, CA 94249-0033", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(805) 549-3381", "address": "1150 Osos Street, Suite 207\nSan Luis Obispo, CA 93401", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Donnelly", "updated_at": "2012-11-07 00:27:19", "full_name": "Tim Donnelly", "id": "CAL000147", "first_name": "Tim", "middle_name": "", "district": "59", "state": "ca", "votesmart_id": "120254", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2059", "street": "P.O. Box 942849, Room 2002", "zip": "94249-0059", "city": "Sacramento"}, "leg_id": "CAL000147", "active": true, "transparencydata_id": "2d4af9e2a40f4a32bfe320fa56490c29", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/59.jpg?1320967829", "+district_offices": [{"phone": "(760) 244-5277", "street": "15900 Smoke Tree Street, Suite 100", "zip": "92345", "city": "Hesperia"}], "url": "http://arc.asm.ca.gov/member/59/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "59", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2059", "address": "P.O. Box 942849, Room 2002\nSacramento, CA 94249-0059", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(760) 244-5277", "address": "15900 Smoke Tree Street, Suite 100\nHesperia, CA 92345", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Mansoor", "updated_at": "2012-11-07 00:27:18", "full_name": "Allan Mansoor", "id": "CAL000148", "first_name": "Allan", "middle_name": "", "district": "68", "state": "ca", "votesmart_id": "70688", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2068", "street": "P.O. Box 942849, Room 4177", "zip": "94249-0068", "city": "Sacramento"}, "leg_id": "CAL000148", "active": true, "transparencydata_id": "c35c6e563038462dbe2ca4ad7e506ce6", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/68.jpg?1320970013", "+district_offices": [{"phone": "(714) 668-2100", "street": "1503 South Coast Drive, Suite 205", "zip": "92626", "city": "Costa Mesa"}], "url": "http://arc.asm.ca.gov/member/68", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "68", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2068", "address": "P.O. Box 942849, Room 4177\nSacramento, CA 94249-0068", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(714) 668-2100", "address": "1503 South Coast Drive, Suite 205\nCosta Mesa, CA 92626", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Pan", "updated_at": "2012-11-07 00:27:18", "full_name": "Richard Pan", "id": "CAL000149", "first_name": "Richard", "middle_name": "", "district": "5", "state": "ca", "votesmart_id": "120159", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2005", "street": "P.O. Box 942849, Room 4164", "zip": "94249-0005", "city": "Sacramento"}, "leg_id": "CAL000149", "active": true, "transparencydata_id": "c12fa21a54b64a2a9db09220829c99bb", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/5.jpg?1320970707", "+district_offices": [{"phone": "(916) 452-0505", "street": "3020 State University Drive East, CSUS Modoc Hall, Suite 1009", "zip": "95819", "city": "Sacramento"}], "url": "http://asmdc.org/members/a05", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "5", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2005", "address": "P.O. Box 942849, Room 6005\nSacramento, CA 94249-0005", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(916) 452-0505", "address": "3020 State University Drive East, CSUS Modoc Hall, Suite 1009\nSacramento, CA 95819", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Wagner", "updated_at": "2012-11-07 00:27:19", "full_name": "Donald Wagner", "id": "CAL000150", "first_name": "Donald P.", "middle_name": "", "district": "70", "chamber": "lower", "state": "ca", "votesmart_id": "29636", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2070", "street": "P.O. Box 942849, Room 4153", "zip": "94249-0070", "city": "Sacramento"}, "leg_id": "CAL000150", "active": true, "transparencydata_id": "21c38a1f36cf46e7987364b8016a0ce3", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/70.jpg?1321660850", "+district_offices": [{"phone": "(949) 863-7070", "street": "3 Park Plaza, Suite 150", "zip": "92614", "city": "Irvine"}], "url": "http://arc.asm.ca.gov/member/70", "country": "us", "created_at": "2012-01-31 19:25:10", "level": "state", "+district": "70", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2070", "address": "P.O. Box 942849, Room 4153\nSacramento, CA 94249-0070", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(949) 863-7070", "address": "3 Park Plaza, Suite 150\nIrvine, CA 92614", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Bonilla", "updated_at": "2012-11-07 00:27:19", "full_name": "Susan Bonilla", "id": "CAL000151", "first_name": "Susan", "middle_name": "", "district": "11", "chamber": "lower", "state": "ca", "votesmart_id": "82208", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2011", "street": "P.O. Box 942849, Room 2188", "zip": "94249-0011", "city": "Sacramento"}, "leg_id": "CAL000151", "active": true, "transparencydata_id": "5fc4a7d621244db6a3cfaf4e4866bbad", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/11.jpg?1320966675", "+district_offices": [{"phone": "(925) 521-1511", "street": "2151 Salvio Street, Suite 395", "zip": "94520", "city": "Concord"}], "url": "http://asmdc.org/members/a11/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "11", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2011", "address": "P.O. Box 942849, Room 2188\nSacramento, CA 94249-0011", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(925) 521-1511", "address": "2151 Salvio Street, Suite 395\nConcord, CA 94520", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Hernández", "updated_at": "2012-11-07 00:27:17", "full_name": "Roger Hernández", "id": "CAL000152", "first_name": "Roger", "middle_name": "", "district": "57", "chamber": "lower", "state": "ca", "votesmart_id": "71156", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2057", "street": "P.O. Box 942849, Room 5150", "zip": "94249-0057", "city": "Sacramento"}, "leg_id": "CAL000152", "active": true, "transparencydata_id": "a45ac88bcf4f4e68adb3a93f369a5f88", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/57.jpg?1320969195", "+district_offices": [{"phone": "(626) 960-4457", "street": "100 N. Barranca, Suite 895", "zip": "91791", "city": "West Covina"}], "url": "http://asmdc.org/members/a57", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "57", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2057", "address": "P.O. Box 942849, Room 4146\nSacramento, CA 94249-0057", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(626) 960-4457", "address": "100 N. Barranca, Suite 895\nWest Covina, CA 91791", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Campos", "updated_at": "2012-11-07 00:27:17", "full_name": "Nora Campos", "id": "CAL000153", "first_name": "Nora", "middle_name": "", "district": "23", "state": "ca", "votesmart_id": "70451", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2023", "street": "P.O. Box 942849, Room 2175", "zip": "94249-0023", "city": "Sacramento"}, "leg_id": "CAL000153", "active": true, "transparencydata_id": "8286f9054abd47218b6e2c6f451cb28c", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/23.jpg?1320967128", "+district_offices": [{"phone": "(408) 277-1220", "street": "100 Paseo De San Antonio, Suite 300", "zip": "95113", "city": "San Jose"}], "url": "http://asmdc.org/members/a23/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "23", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2023", "address": "P.O. Box 942849, Room 3013\nSacramento, CA 94249-0023", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(408) 277-1220", "address": "100 Paseo De San Antonio, Suite 300\nSan Jose, CA 95113", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Morrell", "updated_at": "2012-11-07 00:27:19", "full_name": "Mike Morrell", "id": "CAL000154", "first_name": "Mike", "middle_name": "", "district": "63", "state": "ca", "votesmart_id": "29706", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2063", "street": "P.O. Box 942849, Room 4102", "zip": "94249-0063", "city": "Sacramento"}, "leg_id": "CAL000154", "active": true, "transparencydata_id": "5ed5284f7f084a9abf421d59da09f308", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/63.jpg?1320970379", "+district_offices": [{"phone": "(909) 466-9096", "street": "10604 Trademark Parkway, Suite 308", "zip": "91730", "city": "Rancho Cucamonga"}], "url": "http://arc.asm.ca.gov/member/63/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "63", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2063", "address": "P.O. Box 942849, Room 4102\nSacramento, CA 94249-0063", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(909) 466-9096", "address": "10604 Trademark Parkway, Suite 308\nRancho Cucamonga, CA 91730", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Lara", "updated_at": "2012-11-07 00:27:18", "full_name": "Ricardo Lara", "id": "CAL000155", "first_name": "Ricardo", "middle_name": "", "district": "50", "state": "ca", "votesmart_id": "104399", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2050", "street": "P.O. Box 942849, Room 2179", "zip": "94249-0050", "city": "Sacramento"}, "leg_id": "CAL000155", "active": true, "transparencydata_id": "86aaf100b9e84da09bab1dfe81a31df7", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/a50.jpg?1324331577", "+district_offices": [{"phone": "(562) 529-3250", "street": "121322 South Garfield Avenue", "zip": "90280", "city": "South Gate"}], "url": "http://asmdc.org/members/a50", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "50", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2050", "address": "P.O. Box 942849, Room 4140\nSacramento, CA 94249-0050", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(562) 529-3250", "address": "12132 South Garfield Avenue\nSouth Gate, CA 90280", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Williams", "updated_at": "2012-11-07 00:27:18", "full_name": "Das Williams", "id": "CAL000157", "first_name": "Das", "middle_name": "", "district": "35", "state": "ca", "votesmart_id": "70639", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2035", "street": "P.O. Box 942849, Room 6011", "zip": "94249-0035", "city": "Sacramento"}, "leg_id": "CAL000157", "active": true, "transparencydata_id": "0594e5c5334d4b7991edb1a813697977", "photo_url": "http://www.asmdc.org/members/a35/images/stories/port/Official_Williams_med.jpg", "+district_offices": [{"phone": "(805) 564-1649", "street": "101 West Anapamu Street, Suite A", "zip": "93101", "city": "Santa Barbara"}], "url": "http://asmdc.org/members/a35", "country": "us", "created_at": "2012-01-31 19:25:10", "level": "state", "+district": "35", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2035", "address": "P.O. Box 942849, Room 6011\nSacramento, CA 94249-0035", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(805) 564-1649", "address": "101 West Anapamu Street, Suite A\nSanta Barbara, CA 93101", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Valadao", "updated_at": "2012-11-07 00:27:19", "full_name": "David Valadao", "id": "CAL000158", "first_name": "David G.", "middle_name": "", "district": "30", "state": "ca", "votesmart_id": "120200", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2030", "street": "P.O. Box 942849, Room 2174", "zip": "94249-0030", "city": "Sacramento"}, "leg_id": "CAL000158", "active": true, "transparencydata_id": "56797663791143b99ec90dca059d9da5", "photo_url": "http://arc.asm.ca.gov/member/30/media/photo/valadao_cmug_82510_3123_mz6e.jpg", "+district_offices": [{"phone": "(559) 585-7170", "street": "1489 West Lacey Blvd., Suite 103", "zip": "93230", "city": "Hanford"}], "url": "http://arc.asm.ca.gov/member/30", "country": "us", "created_at": "2012-01-31 19:25:10", "level": "state", "+district": "30", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2030", "address": "P.O. Box 942849, Room 2174\nSacramento, CA 94249-0030", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(559) 585-7170", "address": "1489 West Lacey Blvd., Suite 103\nHanford, CA 93230", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Alejo", "updated_at": "2012-11-07 00:27:19", "full_name": "Lius Alejo", "id": "CAL000159", "first_name": "Luis A.", "middle_name": "", "district": "28", "state": "ca", "votesmart_id": "112270", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2028", "street": "P.O. Box 942849, Room 2137", "zip": "94249-0028", "city": "Sacramento"}, "leg_id": "CAL000159", "active": true, "transparencydata_id": "7636ff7681844e3584e3ac7c7eb18393", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/28.jpg?1320965088", "+district_offices": [{"phone": "(831) 759-8676", "street": "100 West Alisal Street, Suite 134", "zip": "93901", "city": "Salinas"}], "url": "http://asmdc.org/members/a28/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "28", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2028", "address": "P.O. Box 942849, Room 2117\nSacramento, CA 94249-0028", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(831) 759-8676", "address": "100 West Alisal Street, Suite 134\nSalinas, CA 93901", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Gorell", "updated_at": "2012-11-07 00:27:17", "full_name": "Jeff Gorell", "id": "CAL000160", "first_name": "Jeff", "middle_name": "", "district": "37", "chamber": "lower", "state": "ca", "votesmart_id": "29051", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2037", "street": "P.O. Box 942849, Room 4208", "zip": "94249-0037", "city": "Sacramento"}, "leg_id": "CAL000160", "active": true, "transparencydata_id": "e609c9cb72564434946a601329c63330", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/37.jpg?1320968716", "+district_offices": [{"phone": "(805) 230-9167", "street": "2659 Townsgate Road, Suite 236", "zip": "91361", "city": "Westlake Village"}], "url": "http://arc.asm.ca.gov/member/37", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "37", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2037", "address": "P.O. Box 942849, Room 4208\nSacramento, CA 94249-0037", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(805) 230-9167", "address": "2659 Townsgate Road, Suite 236\nWestlake Village, CA 91361", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Mitchell", "updated_at": "2012-11-07 00:27:19", "full_name": "Holly Mitchell", "id": "CAL000161", "first_name": "Holly", "middle_name": "", "district": "47", "state": "ca", "votesmart_id": "120230", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2047", "street": "P.O. Box 942849, Room 2176", "zip": "94249-0047", "city": "Sacramento"}, "leg_id": "CAL000161", "active": true, "transparencydata_id": "8f62d892a7794d9db4e3544bc7256c38", "photo_url": "http://www.votesmart.org/canphoto/120230.jpg", "+district_offices": [{"phone": "(310) 342-1070", "street": "300 Corporate Pointe, Suite 380", "zip": "90230", "city": "Culver City"}], "url": "http://asmdc.org/members/a47", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "47", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2047", "address": "P.O. Box 942849, Room 2163\nSacramento, CA 94249-0047", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(310) 342-1070", "address": "300 Corporate Pointe, Suite 380\nCulver City, CA 90230", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Butler", "updated_at": "2012-11-07 00:27:19", "full_name": "Betsy Butler", "id": "CAL000163", "first_name": "Betsy", "middle_name": "", "district": "53", "state": "ca", "votesmart_id": "120238", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2053", "street": "P.O. Box 942849, Room 3132", "zip": "94249-0053", "city": "Sacramento"}, "leg_id": "CAL000163", "active": true, "transparencydata_id": "eb4533322c4044649c1d9840d77f762e", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/53.jpg?1320966975", "+district_offices": [{"phone": "(310) 615-3515", "street": "500 Center Street", "zip": "90245", "city": "El Segundo"}], "url": "http://asmdc.org/members/a53/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "53", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2053", "address": "P.O. Box 942849, Room 3132\nSacramento, CA 94249-0053", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(310) 615-3515", "address": "500 Center Street\nEl Segundo, CA 90245", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Halderman", "updated_at": "2012-11-07 00:27:16", "full_name": "Linda Halderman", "id": "CAL000164", "first_name": "Linda", "middle_name": "", "district": "29", "state": "ca", "votesmart_id": "120196", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2029", "street": "P.O. Box 942849, Room 5126", "zip": "94249-0029", "city": "Sacramento"}, "leg_id": "CAL000164", "active": true, "transparencydata_id": "06b36edfe0fa4715990c1a4dcc7af929", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/29.jpg?1320968903", "+district_offices": [{"phone": "(559) 446-2029", "street": "6245 N. Fresno Street, Suite 106", "zip": "93710", "city": "Fresno"}], "url": "http://arc.asm.ca.gov/member/29", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "29", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2029", "address": "P.O. Box 942849, Room 5126\nSacramento, CA 94249-0029", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(559) 446-2029", "address": "6245 N. Fresno Street, Suite 106\nFresno, CA 93710", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Dickinson", "updated_at": "2012-11-07 00:27:18", "full_name": "Roger Dickinson", "id": "CAL000165", "first_name": "Roger", "middle_name": "", "district": "9", "chamber": "lower", "state": "ca", "votesmart_id": "28560", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2009", "street": "P.O. Box 942849, Room 3126", "zip": "94249-0009", "city": "Sacramento"}, "leg_id": "CAL000165", "active": true, "transparencydata_id": "92d81b4a22fb4f609f8ece4c01126d98", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/9.jpg?1320967760", "+district_offices": [{"phone": "(916) 324-4676", "street": "915 L Street, Suite 110", "zip": "95814", "city": "Sacramento"}], "url": "http://asmdc.org/members/a09/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "9", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2009", "address": "P.O. Box 942849, Room 2013\nSacramento, CA 94249-0009", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(916) 324-4676", "address": "915 L Street, Suite 110\nSacramento, CA 95814", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Allen", "updated_at": "2012-11-07 00:27:19", "full_name": "Michael Allen", "id": "CAL000166", "first_name": "Michael", "middle_name": "", "district": "7", "state": "ca", "votesmart_id": "120167", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2007", "street": "P.O. Box 942849, Room 5158", "zip": "94249-0007", "city": "Sacramento"}, "leg_id": "CAL000166", "active": true, "transparencydata_id": "0ad3be714184459389da688d7239c08b", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/7.jpg?1320965872", "+district_offices": [{"phone": "(707) 546-4500", "street": "50 D Street, Suite 301", "zip": "95404", "city": "Santa Rosa"}], "url": "http://asmdc.org/members/a07/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "7", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2007", "address": "P.O. Box 942849, Room 5158\nSacramento, CA 94249-0007", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(707) 546-4500", "address": "50 D Street, Suite 301\nSanta Rosa, CA 95404", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Wieckowski", "updated_at": "2012-11-07 00:27:17", "full_name": "Bob Wieckowski", "id": "CAL000167", "first_name": "Bob", "middle_name": "", "district": "20", "chamber": "lower", "state": "ca", "votesmart_id": "71025", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2020", "street": "P.O. Box 942849, Room 4162", "zip": "94249-0020", "city": "Sacramento"}, "leg_id": "CAL000167", "active": true, "transparencydata_id": "267ffc3ae79f49b8b482aa242a88ef1f", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/20.jpg?1321660909", "+district_offices": [{"phone": "(510) 440-9030", "street": "39510 Paseo Padre Parkway, Suite 280", "zip": "94538", "city": "Fremont"}], "url": "http://asmdc.org/members/a20", "country": "us", "created_at": "2012-01-31 19:25:10", "level": "state", "+district": "20", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2020", "address": "P.O. Box 942849, Room 4016\nSacramento, CA 94249-0020", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(510) 440-9030", "address": "39510 Paseo Padre Parkway, Suite 280\nFremont, CA 94538", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Gaines", "updated_at": "2012-11-07 00:27:16", "full_name": "Beth Gaines", "id": "CAL000172", "first_name": "Beth", "middle_name": "", "district": "4", "state": "ca", "votesmart_id": "129786", "party": "Republican", "+capitol_office": {"phone": "(916) 319-2004", "street": "P.O. Box 942849, Room 4009", "zip": "94249-0004", "city": "Sacramento"}, "leg_id": "CAL000172", "active": true, "transparencydata_id": "739c3b8f8db14e81a219578a3e51e171", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/4.jpg?1320968337", "+district_offices": [{"phone": "(916) 774-4430", "street": "1700 Eureka Road, Suite 160", "zip": "95661", "city": "Roseville"}], "level": "state", "url": "http://arc.asm.ca.gov/member/4/", "country": "us", "created_at": "2012-01-31 19:25:09", "+district": "4", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2004", "address": "P.O. Box 942849, Room 4009\nSacramento, CA 94249-0004", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(916) 774-4430", "address": "1700 Eureka Road, Suite 160\nRoseville, CA 95661", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Calderon", "updated_at": "2012-11-07 00:27:16", "nimsp_candidate_id": "96221", "full_name": "Charles M Calderon", "id": "CAL000046", "first_name": "Charles M.", "middle_name": "M", "district": "58", "state": "ca", "votesmart_id": "3591", "party": "Democratic", "+capitol_office": {"phone": "(916) 319-2058", "street": "P.O. Box 942849, Room 319", "zip": "94249-0058", "city": "Sacramento"}, "leg_id": "CAL000046", "active": true, "transparencydata_id": "b87964da304147779c364595a6e070c4", "photo_url": "http://assembly.ca.gov/sites/assembly.ca.gov/files/memberphotos/58.jpg?1320967058", "+district_offices": [{"phone": "(562) 692-5858", "street": "13181 North Crossroads Parkway, Suite 160", "zip": "91746-3497", "city": "City of Industry"}], "url": "http://asmdc.org/members/a58/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "58", "nimsp_id": "370", "chamber": "lower", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 319-2058", "address": "P.O. Box 942849, Room 3126\nSacramento, CA 94249-0058", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(562) 692-5858", "address": "13181 North Crossroads Parkway, Suite 160\nCity of Industry, CA 91746-3497", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Leno", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "97753", "full_name": "Mark Leno", "id": "CAL000003", "first_name": "Mark", "middle_name": "", "district": "3", "state": "ca", "votesmart_id": "28596", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4003", "street": "State Capitol, Room 5100", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000003", "active": true, "transparencydata_id": "82b4cb97a7434d098cfb2d259d5d7022", "photo_url": "http://dist03.casen.govoffice.com/vertical/Sites/%7BAD08849B-4EC3-405D-BC0A-533223144A7B%7D/uploads/%7B8A01CC8D-831D-48DB-993D-77419A4507FE%7D_Web.jpg", "+district_offices": [{"phone": "(415) 557-1300", "street": "455 Golden Gate Avenue, Suite 14800", "zip": "94102", "city": "San Francisco"}, {"phone": "(415) 479-6612", "street": "3501 Civic Center Drive, Suite 425", "zip": "94903", "city": "San Rafael"}], "url": "http://sd03.senate.ca.gov", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "3", "nimsp_id": "4391", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4003", "address": "State Capitol, Room 5100\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(415) 557-1300", "address": "455 Golden Gate Avenue, Suite 14800\nSan Francisco, CA 94102", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(415) 479-6612", "address": "3501 Civic Center Drive, Suite 425\nSan Rafael, CA 94903", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Wolk", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "97756", "full_name": "Lois Wolk", "id": "CAL000005", "first_name": "Lois", "middle_name": "", "district": "5", "state": "ca", "votesmart_id": "29062", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4005", "street": "State Capitol, Room 5114", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000005", "active": true, "transparencydata_id": "94190a10a3ff46df85abfdd0c3cf6fe2", "photo_url": "http://dist05.casen.govoffice.com/vertical/sites/%7BE94BA612-BC49-44DE-9F9C-58DC78AFB081%7D/uploads/%7BFC61CFBF-BA66-41B9-9838-A6264263F557%7D_Web.jpg", "+district_offices": [{"phone": "(707) 454-3808", "street": "555 Mason Street, Suite 230", "zip": "95688", "city": "Vacaville"}, {"phone": "(209) 948-7930", "street": "31 E Channel, Suite 440", "zip": "95202", "city": "Stockton"}], "url": "http://sd05.senate.ca.gov", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "5", "nimsp_id": "4425", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4005", "address": "State Capitol, Room 5114\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(707) 454-3808", "address": "555 Mason Street, Suite 230\nVacaville, CA 95688", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(209) 948-7930", "address": "31 E Channel, Suite 440\nStockton, CA 95202", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Steinberg", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Darrell Steinberg", "id": "CAL000006", "first_name": "Darrell", "middle_name": "", "district": "6", "state": "ca", "votesmart_id": "16861", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4006", "street": "State Capitol, Room 205", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000006", "active": true, "transparencydata_id": "0ee66a3302f247fd9587eb1c4ddb796f", "photo_url": "http://dist06.casen.govoffice.com/vertical/Sites/%7B7725E161-3575-4D46-9AAA-F23C36620558%7D/uploads/%7B73112216-4FB3-47C4-BF94-A08B833D4DFA%7D_Web.jpg", "+district_offices": [{"phone": "(916) 651-1529", "street": "1020 N Street, Room 576", "zip": "95814", "city": "Sacramento"}], "url": "http://sd06.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "6", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4006", "address": "State Capitol, Room 205\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(916) 651-1529", "address": "1020 N Street, Room 576\nSacramento, CA 95814", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "DeSaulnier", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Mark DeSaulnier", "id": "CAL000007", "first_name": "Mark", "middle_name": "", "district": "7", "state": "ca", "votesmart_id": "69477", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4007", "street": "State Capitol, Room 5035", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000007", "active": true, "transparencydata_id": "6a1c0b8cb3e94690abafd614f60b722f", "photo_url": "http://dist07.casen.govoffice.com/vertical/sites/%7BAF9214C0-EAC6-4E3A-BDB5-2EDAE9EAFBA8%7D/uploads/%7B8B484C81-CF18-4062-BCA1-2D15A3F8DA89%7D_Web.jpg", "+district_offices": [{"phone": "(925) 942-6082", "street": "1350 Treat Blvd, Suite 240", "zip": "94597", "city": "Walnut Creek"}, {"phone": "(925) 754-1461", "street": "420 W. 3rd Street", "zip": "94509", "city": "Antioch"}], "url": "http://sd07.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "7", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4007", "address": "State Capitol, Room 5035\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(925) 942-6082", "address": "1350 Treat Blvd, Suite 240\nWalnut Creek, CA 94597", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(925) 754-1461", "address": "420 W. 3rd Street\nAntioch, CA 94509", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Yee", "updated_at": "2012-11-07 00:27:14", "nimsp_candidate_id": null, "full_name": "Leland Yee", "id": "CAL000008", "first_name": "Leland Y.", "middle_name": "", "district": "8", "state": "ca", "votesmart_id": "28969", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4008", "street": "State Capitol, Room 4074", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000008", "active": true, "transparencydata_id": "995c238950e44c7ea5b9797b0dbb5c12", "photo_url": "http://votesmart.org/canphoto/28969.jpg", "+district_offices": [{"phone": "(415) 557-7857", "street": "455 Golden Gate Avenue, Suite 14200", "zip": " CA 94102", "city": "San Francisco"}, {"phone": "(650) 340-8840", "street": "400 S. El Camino Real, Suite 630", "zip": "94402", "city": "San Mateo"}], "url": "http://sd08.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "8", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4008", "address": "State Capitol, Room 4074\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(415) 557-7857", "address": "455 Golden Gate Avenue, Suite 14200\nSan Francisco, CA CA 94102", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(650) 340-8840", "address": "400 S. El Camino Real, Suite 630\nSan Mateo, CA 94402", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Hancock", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "97933", "full_name": "Loni Hancock", "id": "CAL000009", "first_name": "Loni", "middle_name": "", "district": "9", "state": "ca", "votesmart_id": "29419", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4009", "street": "State Capitol, Room 2082", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000009", "active": true, "transparencydata_id": "4e6db1af303e436792d959e58ad75a6d", "photo_url": "http://dist09.casen.govoffice.com/vertical/sites/%7B71ED3C80-976A-453B-8DBB-F906891DD063%7D/uploads/%7B6D9EAFB5-814C-4C50-98C8-F35891BABD65%7D_Web.jpg", "+district_offices": [{"phone": "(510) 286-1333", "street": "1515 Clay Street, Suite 2202", "zip": "94612", "city": "Oakland"}], "url": "http://sd09.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "9", "nimsp_id": "4443", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4009", "address": "State Capitol, Room 2082\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(510) 286-1333", "address": "1515 Clay Street, Suite 2202\nOakland, CA 94612", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Corbett", "updated_at": "2012-11-07 00:27:14", "nimsp_candidate_id": null, "full_name": "Ellen Corbett", "id": "CAL000010", "first_name": "Ellen M.", "middle_name": "", "district": "10", "chamber": "upper", "state": "ca", "votesmart_id": "16726", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4010", "street": "State Capitol, Room 313", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000010", "active": true, "transparencydata_id": "0264503206c14435aa2c928b5815cf63", "photo_url": "http://votesmart.org/canphoto/16726.jpg", "+district_offices": [{"phone": "(510) 577-2310", "street": "1057 MacArthur Blvd., Suite 206", "zip": "94577", "city": "San Leandro"}, {"phone": "(510) 794-3900", "street": "39155 Liberty Street, Suite F610", "zip": "94538", "city": "Fremont"}], "url": "http://sd10.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "10", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4010", "address": "State Capitol, Room 313\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(510) 577-2310", "address": "1057 MacArthur Blvd., Suite 206\nSan Leandro, CA 94577", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(510) 794-3900", "address": "39155 Liberty Street, Suite F610\nFremont, CA 94538", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Strickland", "updated_at": "2012-11-07 00:27:14", "nimsp_candidate_id": "98025", "full_name": "Tony Strickland", "id": "CAL000015", "first_name": "Tony", "middle_name": "", "district": "19", "state": "ca", "votesmart_id": "16765", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4019", "street": "State Capitol, Room 4062", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000015", "active": true, "transparencydata_id": "fc6c84024e06401b9ffb5f529fdc1023", "photo_url": "http://votesmart.org/canphoto/16765.jpg", "+district_offices": [{"phone": "(805) 306-8886", "street": "2655 First Street, Suite 230", "zip": "93065", "city": "Simi Valley"}, {"phone": "(805) 965-0862", "street": "225 E. Carrillo Street, Suite 302", "zip": "93101", "city": "Santa Barbara"}], "url": "http://cssrc.us/web/19/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "19", "nimsp_id": "19692", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4019", "address": "State Capitol, Room 4062\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(805) 306-8886", "address": "2655 First Street, Suite 230\nSimi Valley, CA 93065", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(805) 965-0862", "address": "225 E. Carrillo Street, Suite 302\nSanta Barbara, CA 93101", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Liu", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "97968", "full_name": "Carol Liu", "id": "CAL000016", "first_name": "Carol", "middle_name": "", "district": "21", "state": "ca", "votesmart_id": "29060", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4021", "street": "State Capitol, Room 5061", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000016", "active": true, "transparencydata_id": "ed86ab830e1647d79ba754e1444b59d3", "photo_url": "http://dist21.casen.govoffice.com/vertical/sites/%7BC79BBCAB-8E9F-47A2-9117-A58842CE1458%7D/uploads/%7B2708BA6C-C81B-421A-BCE5-0DDCDB9AD234%7D_Web.jpg", "+district_offices": [{"phone": "(818) 409-0400", "street": "501 North Central Avenue", "zip": "91203", "city": "Glendale"}], "url": "http://sd21.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "21", "nimsp_id": "4423", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4021", "address": "State Capitol, Room 5061\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(818) 409-0400", "address": "501 North Central Avenue\nGlendale, CA 91203", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Pavley", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "97999", "full_name": "Fran Pavley", "id": "CAL000018", "first_name": "Fran", "middle_name": "", "district": "23", "state": "ca", "votesmart_id": "29336", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4023", "street": "State Capitol, Room 4035", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000018", "active": true, "transparencydata_id": "0e9787082a354b738ce44d5265ddc15c", "photo_url": "http://votesmart.org/canphoto/29336.jpg", "+district_offices": [{"phone": "(310) 314-5214", "street": "2716 Ocean Park Blvd, Suite 3088", "zip": "90405", "city": "Santa Monica"}], "url": "http://sd23.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "23", "nimsp_id": "4438", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4023", "address": "State Capitol, Room 4035\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(310) 314-5214", "address": "2716 Ocean Park Blvd, Suite 3088\nSanta Monica, CA 90405", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Lowenthal", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96315", "full_name": "Alan Lowenthal", "id": "CAL000020", "first_name": "Alan", "middle_name": "", "district": "27", "state": "ca", "votesmart_id": "16469", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4027", "street": "State Capitol, Room 2032", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000020", "active": true, "transparencydata_id": "353105545633449ba5d1bca5e56f080e", "photo_url": "http://votesmart.org/canphoto/16469.jpg", "+district_offices": [{"phone": "(562) 495-4766", "street": "115 Pine Avenue, Suite 430", "zip": "90802", "city": "Long Beach"}, {"phone": "(562) 529-6659", "street": "16401 Paramount Blvd., First Floor", "zip": "90723", "city": "Paramount"}], "url": "http://sd27.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "27", "nimsp_id": "3238", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4027", "address": "State Capitol, Room 2032\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(562) 495-4766", "address": "115 Pine Avenue, Suite 430\nLong Beach, CA 90802", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(562) 529-6659", "address": "16401 Paramount Blvd., First Floor\nParamount, CA 90723", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Huff", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Bob Huff", "id": "CAL000022", "first_name": "Bob", "middle_name": "", "district": "29", "state": "ca", "votesmart_id": "16575", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4029", "street": "State Capitol, Room 305", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000022", "active": true, "transparencydata_id": "8b81da831c884c1387df370b0cf8c9d2", "photo_url": "http://cssrc.us/lib/uploads/29/100701_1_thm.jpg", "+district_offices": [{"phone": "(909) 598-3981", "street": "20888 Amar Road, Suite 205", "zip": "91789", "city": "Walnut"}], "url": "http://cssrc.us/web/29/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "29", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4029", "address": "State Capitol, Room 305\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(909) 598-3981", "address": "20888 Amar Road, Suite 205\nWalnut, CA 91789", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Dutton", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Robert Dutton", "id": "CAL000023", "first_name": "Bob", "middle_name": "", "district": "31", "state": "ca", "votesmart_id": "28838", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4031", "street": "State Capitol, Room 5097", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000023", "active": true, "transparencydata_id": "197ad383bad2469f8f6a543562ad128a", "photo_url": "http://votesmart.org/canphoto/28838.jpg", "+district_offices": [{"phone": "(909) 466-4180", "street": "8577 Haven Avenue, Suite 210", "zip": "91730", "city": "Rancho Cucamonga"}], "url": "http://cssrc.us/web/31/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "31", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4031", "address": "State Capitol, Room 5097\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(909) 466-4180", "address": "8577 Haven Avenue, Suite 210\nRancho Cucamonga, CA 91730", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "McLeod", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Gloria Negrete McLeod", "id": "CAL000024", "first_name": "Gloria Negrete", "middle_name": "", "district": "32", "chamber": "upper", "state": "ca", "votesmart_id": "16492", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4032", "street": "State Capitol, Room 4061", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000024", "active": true, "transparencydata_id": "f3b23597e18643568fb42db66b572a11", "photo_url": "http://dist32.casen.govoffice.com/vertical/Sites/%7B0730EC93-2993-4641-916F-29F5BC72F62A%7D/uploads/%7B538F919B-93A5-4DF5-B01C-2ABBDFF4EA52%7D_Web.jpg", "+district_offices": [{"phone": "(909) 621-2783", "street": "4959 Palo Verde Street, #110B", "zip": "91763", "city": "Montclair"}], "url": "http://sd32.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "32", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4032", "address": "State Capitol, Room 4061\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(909) 621-2783", "address": "4959 Palo Verde Street, #110B\nMontclair, CA 91763", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Walters", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "97755", "full_name": "Mimi Walters", "id": "CAL000025", "first_name": "Mimi", "middle_name": "", "district": "33", "state": "ca", "votesmart_id": "29346", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4033", "street": "State Capitol, Room 3082", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000025", "active": true, "transparencydata_id": "d8ec927020314c6a8e55f766bf3a96af", "photo_url": "http://cssrc.us/lib/uploads/33/252.jpg", "+district_offices": [{"phone": "(949) 457-7333", "street": "24031 El Toro Road, Suite 210", "zip": "92653", "city": "Laguna Hills"}], "url": "http://cssrc.us/web/33/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "33", "nimsp_id": "4439", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4033", "address": "State Capitol, Room 3082\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(949) 457-7333", "address": "24031 El Toro Road, Suite 210\nLaguna Hills, CA 92653", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Harman", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96275", "full_name": "Tom Harman", "id": "CAL000026", "first_name": "Tom", "middle_name": "", "district": "35", "state": "ca", "votesmart_id": "28890", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4035", "street": "State Capitol, Room 5094", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000026", "active": true, "transparencydata_id": "084f8af04dde420288131eb2ad172b6c", "photo_url": "http://votesmart.org/canphoto/28890.jpg", "+district_offices": [{"phone": "(714) 957-4555", "street": "950 South Coast Dr., Suite 240", "zip": "92626", "city": "Costa Mesa"}], "url": "http://cssrc.us/web/35/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "35", "nimsp_id": "4411", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4035", "address": "State Capitol, Room 5094\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(714) 957-4555", "address": "950 South Coast Dr., Suite 240\nCosta Mesa, CA 92626", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Wyland", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Mark Wyland", "id": "CAL000028", "first_name": "Mark", "middle_name": "", "district": "38", "state": "ca", "votesmart_id": "29603", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4038", "street": "State Capitol, Room 4048", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000028", "active": true, "transparencydata_id": "e28645ab20184875bbd4ef5e406e2746", "+district_offices": [{"phone": "(949) 489-9838", "street": "27126A Paseo Espada, Suite 1621", "zip": "92675", "city": "San Juan Capistrano"}, {"phone": "(760) 931-2455", "street": "1910 Palomar Point Way, Suite 105", "zip": "92008", "city": "Carlsbad"}], "url": "http://cssrc.us/web/38/", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "38", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4038", "address": "State Capitol, Room 4048\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(949) 489-9838", "address": "27126A Paseo Espada, Suite 1621\nSan Juan Capistrano, CA 92675", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(760) 931-2455", "address": "1910 Palomar Point Way, Suite 105\nCarlsbad, CA 92008", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Kehoe", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96296", "full_name": "Christine Kehoe", "id": "CAL000030", "first_name": "Christine", "middle_name": "", "district": "39", "state": "ca", "votesmart_id": "16466", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4039", "street": "State Capitol, Room 5050", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000030", "active": true, "transparencydata_id": "194f52a405cf453cbb582a8cea2540ab", "photo_url": "http://dist39.casen.govoffice.com/vertical/Sites/%7B7B9781BA-ED94-4779-AE76-27A54016F62C%7D/uploads/%7B4EA2298E-6975-4EC4-90E7-BE51AC63E12D%7D_Web.jpg", "+district_offices": [{"phone": "(619) 645-3133", "street": "2445 Fifth Avenue, Suite 200", "zip": "92101", "city": "San Diego"}], "url": "http://dist39.casen.govoffice.com/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "39", "nimsp_id": "15727", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4039", "address": "State Capitol, Room 5050\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(619) 645-3133", "address": "2445 Fifth Avenue, Suite 200\nSan Diego, CA 92101", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Simitian", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Joseph Simitian", "id": "CAL000031", "first_name": "S. Joseph", "middle_name": "", "district": "11", "chamber": "upper", "state": "ca", "votesmart_id": "28606", "party": "Democratic", "email": "", "+capitol_office": {"phone": "(916) 651-4011", "street": "State Capitol, Room 2080", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000031", "active": true, "transparencydata_id": "e85c53ed444e4859b048a5dca09580ab", "nickname": "", "photo_url": "http://votesmart.org/canphoto/28606.jpg", "+district_offices": [{"phone": "(650) 688-6384", "street": "160 Town and Country Village", "zip": "94301", "city": "Palo Alto"}, {"phone": "(831) 425-0401", "street": "701 Ocean Street, Suite 318A", "zip": "95060", "city": "Santa Cruz"}], "url": "http://www.senatorsimitian.com/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "11", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4011", "address": "State Capitol, Room 2080\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(650) 688-6384", "address": "160 Town and Country Village\nPalo Alto, CA 94301", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(831) 425-0401", "address": "701 Ocean Street, Suite 318A\nSanta Cruz, CA 95060", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Padilla", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Alex Padilla", "id": "CAL000034", "first_name": "Alex", "middle_name": "", "district": "20", "state": "ca", "votesmart_id": "59742", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4020", "street": "State Capitol, Room 4038", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000034", "active": true, "transparencydata_id": "1142156cc8294af096a3cd7da5154190", "photo_url": "http://dist20.casen.govoffice.com/vertical/Sites/%7B4CD2BACB-DE56-4F98-AC57-6ACFD31A3886%7D/uploads/%7B7F615F0C-8E3D-4EF3-B6F9-82D9C690B274%7D.JPG", "+district_offices": [{"phone": "(818) 901-5588", "street": "6150 Van Nuys Blvd, Suite 400", "zip": "91401", "city": "Van Nuys"}], "url": "http://sd20.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "20", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4020", "address": "State Capitol, Room 4038\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(818) 901-5588", "address": "6150 Van Nuys Blvd, Suite 400\nVan Nuys, CA 91401", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Wright", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "98049", "full_name": "Roderick Wright", "id": "CAL000035", "first_name": "Roderick D.", "middle_name": "", "district": "25", "state": "ca", "votesmart_id": "9775", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4025", "street": "State Capitol, Room 5064", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000035", "active": true, "transparencydata_id": "697964077ec54d669826f3a0f5168441", "photo_url": "http://votesmart.org/canphoto/9775.jpg", "+district_offices": [{"phone": "(310) 412-0393", "street": "One Manchester Blvd, Suite 600", "zip": "90301", "city": "Inglewood"}], "url": "http://sd25.senate.ca.gov", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "25", "nimsp_id": "2504", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4025", "address": "State Capitol, Room 5064\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(310) 412-0393", "address": "One Manchester Blvd, Suite 600\nInglewood, CA 90301", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Calderon", "updated_at": "2012-11-07 00:27:14", "nimsp_candidate_id": null, "full_name": "Ron Calderon", "id": "CAL000036", "first_name": "Ron", "middle_name": "", "district": "30", "state": "ca", "votesmart_id": "28545", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4030", "street": "State Capitol, Room 5066", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000036", "active": true, "transparencydata_id": "0707837e5514449fb45e19a3a6079920", "photo_url": "http://dist30.casen.govoffice.com/vertical/Sites/%7BFFBF7AD2-F332-47B1-9C7C-6D92B3B72212%7D/uploads/%7B16A3F79C-EA93-4F65-8618-A3DB9571E165%7D_Web.jpg", "+district_offices": [{"phone": "(323) 890-2790", "street": "400 N Montebello Blvd, Suite 100", "zip": "90640", "city": "Montebello"}], "url": "http://sd30.senate.ca.gov/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "30", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4030", "address": "State Capitol, Room 5066\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(323) 890-2790", "address": "400 N Montebello Blvd, Suite 100\nMontebello, CA 90640", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Correa", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Lou Correa", "id": "CAL000037", "first_name": "Lou", "middle_name": "", "district": "34", "state": "ca", "votesmart_id": "9732", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4034", "street": "State Capitol, Room 5052", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000037", "active": true, "transparencydata_id": "fda3b77a0f544a3998dc08171ad39b47", "photo_url": "http://dist34.casen.govoffice.com/vertical/Sites/%7BA7F2BBE0-2759-46CE-B069-173DD66C4E45%7D/uploads/%7B3FE15B87-4B36-47C5-A0FF-FEC5C3AC8F18%7D_Web.jpg", "+district_offices": [{"phone": "(714) 558-4400", "street": "2323 N Broadway, Suite 245", "zip": "92706", "city": "Santa Ana"}], "url": "http://sd34.senate.ca.gov", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "34", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4034", "address": "State Capitol, Room 5052\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(714) 558-4400", "address": "2323 N Broadway, Suite 245\nSanta Ana, CA 92706", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Alquist", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96196", "full_name": "Elaine Alquist", "id": "CAL000039", "first_name": "Elaine Kontominas", "middle_name": "", "district": "13", "state": "ca", "votesmart_id": "9671", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4013", "street": "State Capitol, Room 5080", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000039", "active": true, "transparencydata_id": "b376cce5c9694a0c926cbccc1f676f16", "photo_url": "http://dist13.casen.govoffice.com/vertical/Sites/%7BE9A0EAC6-5718-49CC-BA95-F6C4A8E6644A%7D/uploads/%7BB6484209-4C38-4CD1-92E9-D4C8660BD7A6%7D_Web.jpg", "+district_offices": [{"phone": "(408) 286-8318", "street": "100 Paseo de San Antonio, Suite 209", "zip": "95113", "city": "San Jose"}, {"phone": "(408) 847-6101", "street": "7800 Arroyo Circle, Suite A", "zip": "95020", "city": "Gilroy"}], "url": "http://dist13.casen.govoffice.com/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "13", "nimsp_id": "2496", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4013", "address": "State Capitol, Room 5080\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(408) 286-8318", "address": "100 Paseo de San Antonio, Suite 209\nSan Jose, CA 95113", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(408) 847-6101", "address": "7800 Arroyo Circle, Suite A\nGilroy, CA 95020", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Price", "updated_at": "2012-11-07 00:27:14", "nimsp_candidate_id": null, "full_name": "Curren D Price", "id": "CAL000040", "first_name": "Curren D.", "middle_name": "D", "district": "26", "state": "ca", "votesmart_id": "28973", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4026", "street": "State Capitol, Room 2057", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000040", "active": true, "transparencydata_id": "0a9c4411c92d40698868e228a0406146", "+district_offices": [{"phone": "(213) 745-6656", "street": "Admin Office West, 700 State Drive", "zip": "90037", "city": "Los Angeles"}], "url": "http://sd26.senate.ca.gov", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "26", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4026", "address": "State Capitol, Room 2059\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(213) 745-6656", "address": "Admin Office West, 700 State Drive\nLos Angeles, CA 90037", "type": "district", "email": null}], "+party": "Democratic", "suffixes": "Jr."}, {"last_name": "Emmerson", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": null, "full_name": "Bill Emmerson", "id": "CAL000041", "first_name": "Bill", "middle_name": "", "district": "37", "chamber": "upper", "state": "ca", "votesmart_id": "29356", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4037", "street": "State Capitol, Room 4082", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000041", "active": true, "transparencydata_id": "700ebadc7e4d4b5dafeadb5bdf943a4e", "photo_url": "http://www.votesmart.org/canphoto/29356.jpg", "+district_offices": [{"phone": "(951) 680-6750", "street": "5225 Canyon Crest Drive, #360", "zip": "92507", "city": "Riverside"}, {"phone": "(760) 568-0408", "street": "73-710 Fred Waring Drive, Suite 108", "zip": "92660", "city": "Palm Desert"}], "url": "http://cssrc.us/web/37/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "37", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4037", "address": "State Capitol, Room 4082\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(951) 680-6750", "address": "5225 Canyon Crest Drive, #360\nRiverside, CA 92507", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(760) 568-0408", "address": "73-710 Fred Waring Drive, Suite 108\nPalm Desert, CA 92660", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "O.D.", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96278", "full_name": "Ed Hernandez", "id": "CAL000049", "first_name": "Ed Hernandez", "middle_name": "", "district": "24", "state": "ca", "votesmart_id": "69507", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4024", "street": "State Capitol, Room 4085", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000049", "active": true, "transparencydata_id": "1a5286c2e9654b67b8bd18afb3368062", "photo_url": "http://www.assembly.ca.gov/images/members/57.jpg", "+district_offices": [{"phone": "(626) 430-2499", "street": "100 S. Vincent Street, Suite 401", "zip": "91790", "city": "West Covina"}, {"phone": "(626) 430-2499", "street": "4716 E. Cesar Chavez Avenue, #B13", "zip": "90022", "city": "Los Angeles"}], "url": "http://sd24.senate.ca.gov/", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "+district": "24", "nimsp_id": "8958", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4024", "address": "State Capitol, Room 4085\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(626) 430-2499", "address": "100 S. Vincent Street, Suite 401\nWest Covina, CA 91790", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(626) 430-2499", "address": "4716 E. Cesar Chavez Avenue, #B13\nLos Angeles, CA 90022", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "de León", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96243", "full_name": "Kevin De León", "id": "CAL000057", "first_name": "Kevin", "middle_name": "", "district": "22", "chamber": "upper", "state": "ca", "votesmart_id": "59926", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4022", "street": "State Capitol, Room 5108", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000057", "active": true, "transparencydata_id": "1c2a2e0499a34c31b167f422faba15da", "photo_url": "http://www.assembly.ca.gov/images/members/45.jpg", "+district_offices": [{"phone": "(213) 612-9566", "street": "617 Olive Street, Suite 710", "zip": "90014", "city": "Los Angeles"}], "url": "http://sd22.senate.ca.gov", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "nimsp_id": "8212", "+district": "22", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4022", "address": "State Capitol, Room 5108\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(213) 483-9300", "address": "1808 W. Sunset Blvd\nLos Angeles, CA 90026", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Lieu", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96313", "full_name": "Ted Lieu", "id": "CAL000072", "first_name": "Ted W.", "middle_name": "", "district": "28", "state": "ca", "votesmart_id": "1516", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4028", "street": "State Capitol, Room 4090", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000072", "active": true, "transparencydata_id": "cd172d85f00c4c4bacd1c0b4311d3200", "photo_url": "http://www.assembly.ca.gov/images/members/53.jpg", "+district_offices": [{"phone": "(310) 318-6994", "street": "2512 Artesia Blvd Suite 320", "zip": "90278", "city": "Redondo Beach"}], "url": "http://sd28.senate.ca.gov", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "+district": "28", "nimsp_id": "21", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4028", "address": "State Capitol, Room 4090\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(310) 318-6994", "address": "2512 Artesia Blvd Suite 320\nRedondo Beach, CA 90278", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Evans", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96256", "full_name": "Noreen Evans", "id": "CAL000077", "first_name": "Noreen", "middle_name": "", "district": "2", "chamber": "upper", "state": "ca", "votesmart_id": "29163", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4002", "street": "State Capitol, Room 4032", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000077", "active": true, "transparencydata_id": "283bfdff81d3436197a4d17427f33130", "photo_url": "http://sd02.senate.ca.gov/sites/sd02.senate.ca.gov/files/images/photo101.thumbnail.jpg", "+district_offices": [{"phone": "(707) 445-6508", "street": "710 E Street, Suite 150", "zip": " CA 95501", "city": "Eureka"}, {"phone": "(707) 576-2771", "street": "50 D Street, Suite 120A", "zip": "95404", "city": "Santa Rosa"}, {"phone": "(707) 224-1990", "street": "1040 Main Street, Suite 205", "zip": "94559", "city": "Napa"}, {"phone": "(707) 468-8914", "street": "200 South School Street, Suite K", "zip": "95482", "city": "Ukiah"}, {"phone": "(707) 648-5312", "street": "401 Amador Street", "zip": "94590", "city": "Vallejo"}], "url": "http://sd02.senate.ca.gov/", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "nimsp_id": "4428", "+district": "2", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4002", "address": "State Capitol, Room 4032\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(707) 445-6508", "address": "710 E Street, Suite 150\nEureka, CA CA 95501", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(707) 576-2771", "address": "50 D Street, Suite 120A\nSanta Rosa, CA 95404", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(707) 224-1990", "address": "1040 Main Street, Suite 205\nNapa, CA 94559", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(707) 468-8914", "address": "200 South School Street, Suite K\nUkiah, CA 95482", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(707) 648-5312", "address": "401 Amador Street\nVallejo, CA 94590", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Berryhill", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96212", "full_name": "Tom Berryhill", "id": "CAL000085", "first_name": "Tom", "middle_name": "", "district": "14", "chamber": "upper", "state": "ca", "votesmart_id": "9681", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4014", "street": "State Capitol, Room 3076", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000085", "active": true, "transparencydata_id": "577177dce4554125853e870301810bfd", "photo_url": "http://www.assembly.ca.gov/images/members/25.jpg", "+district_offices": [{"phone": "(209) 576-6470", "street": "4641 Spyres Way, Suite 2", "zip": "95356", "city": "Modesto"}, {"phone": "(559) 253-7122", "street": "6215 N. Fresno Street, Suite 104", "zip": "93710", "city": "Fresno"}], "url": "http://cssrc.us/web/14/", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "nimsp_id": "2497", "+district": "14", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4014", "address": "State Capitol, Room 3076\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(209) 576-6470", "address": "4641 Spyres Way, Suite 2\nModesto, CA 95356", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(559) 253-7122", "address": "6215 N. Fresno Street, Suite 104\nFresno, CA 93710", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Fuller", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96261", "full_name": "Jean Fuller", "id": "CAL000087", "first_name": "Jean", "middle_name": "", "district": "18", "state": "ca", "votesmart_id": "57656", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4018", "street": "State Capitol, Room 3063", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000087", "active": true, "transparencydata_id": "68c68543cfdb4f949042ca63d0a564ce", "photo_url": "http://www.assembly.ca.gov/images/members/32.jpg", "+district_offices": [{"phone": "(661) 323-0443", "street": "5701 Truxtun Avenue, Suite 150", "zip": "93309", "city": "Bakersfield"}], "url": "http://cssrc.us/web/18/", "country": "us", "created_at": "2010-07-09 17:19:48", "level": "state", "+district": "18", "nimsp_id": "7943", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4018", "address": "State Capitol, Room 3063\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(661) 323-0443", "address": "5701 Truxtun Avenue, Suite 150\nBakersfield, CA 93309", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Gaines", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96263", "full_name": "Ted Gaines", "id": "CAL000102", "first_name": "Ted", "middle_name": "", "district": "1", "chamber": "upper", "state": "ca", "votesmart_id": "59841", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4001", "street": "State Capitol, Room 3056", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000102", "active": true, "transparencydata_id": "2789f43e54db410aa78f69fed1ee7111", "photo_url": "http://votesmart.org/canphoto/59841.jpg", "+district_offices": [{"phone": "(916) 783-8232", "street": "1700 Eureka Road, Suite 120", "zip": "95661", "city": "Roseville"}, {"phone": "(209) 223-9140", "street": "", "zip": "Jackson 95642", "city": "33 C Broadway"}], "url": "http://cssrc.us/web/1/", "country": "us", "created_at": "2012-02-01 17:12:58", "level": "state", "nimsp_id": "8200", "+district": "1", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4001", "address": "State Capitol, Room 3070\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(916) 783-8232", "address": "1700 Eureka Road, Suite 120\nRoseville, CA 95661", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(209) 223-9140", "address": "\n33 C Broadway, CA Jackson 95642", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Anderson", "updated_at": "2012-11-07 00:27:15", "nimsp_candidate_id": "96197", "full_name": "Joel Anderson", "id": "CAL000116", "first_name": "Joel", "middle_name": "", "district": "36", "chamber": "upper", "state": "ca", "votesmart_id": "16716", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4036", "street": "State Capitol, Room 2054", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000116", "active": true, "transparencydata_id": "9254ffa2511e4900844a76033812b7db", "photo_url": "http://upload.wikimedia.org/wikipedia/commons/4/48/Joel_Anderson.jpg", "+district_offices": [{"phone": "(951) 676-1020", "street": "27555 Ynez Road, Suite 204", "zip": "92591", "city": "Temecula"}, {"phone": "(619) 596-3136", "street": "500 Fesler Street, Suite 201", "zip": "92020", "city": "El Cajon"}], "url": "http://cssrc.us/web/36/", "country": "us", "created_at": "2010-07-09 17:19:49", "level": "state", "nimsp_id": "3249", "+district": "36", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4036", "address": "State Capitol, Room 2054\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(951) 676-1020", "address": "27555 Ynez Road, Suite 204\nTemecula, CA 92591", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(619) 596-3136", "address": "500 Fesler Street, Suite 201\nEl Cajon, CA 92020", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Blakeslee", "updated_at": "2012-11-07 00:27:13", "nimsp_candidate_id": null, "full_name": "Sam Blakeslee Ph.D.", "id": "CAL000118", "first_name": "Sam", "middle_name": "", "district": "15", "chamber": "upper", "state": "ca", "votesmart_id": "28759", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4015", "street": "State Capitol, Room 4066", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000118", "active": true, "transparencydata_id": "029aa21803b5498cb6f2d7e8873d5915", "photo_url": "", "+district_offices": [{"phone": "(408) 277-9461", "street": "100 Paseo de San Antonio, Suite 206", "zip": "95113", "city": "San Jose"}, {"phone": "(916) 719-4305", "street": "1360 West McCoy Lane, Suite 22", "zip": "93455", "city": " Santa Maria"}, {"phone": "(831) 657-6315", "street": "519 Hartnell", "zip": "93940", "city": "Monterey"}], "url": "http://cssrc.us/web/15/", "country": "us", "created_at": "2010-07-09 17:19:49", "level": "state", "+district": "15", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4015", "address": "State Capitol, Room 4066\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(805) 549-3784", "address": "605 Santa Rosa Street, Suite B\nSan Luis Obispo, CA 93401", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(408) 277-9461", "address": "100 Paseo de San Antonio, Suite 206\nSan Jose, CA 95113", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(916) 719-4305", "address": "1360 West McCoy Lane, Suite 22\n Santa Maria, CA 93455", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(831) 657-6315", "address": "519 Hartnell\nMonterey, CA 93940", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "La Malfa", "updated_at": "2012-11-07 00:22:21", "full_name": "Doug La Malfa", "id": "CAL000127", "first_name": "Doug", "middle_name": "", "district": "4", "state": "ca", "votesmart_id": "29713", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4004", "street": "State Capitol, Room 3070", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000127", "active": true, "transparencydata_id": "91f30b90686a41459f916eaa4ea3a552", "photo_url": "http://cssrc.us/lib/uploads/4/01.jpg", "+district_offices": [{"phone": "(916) 435-0744", "street": "5800 Stanford Ranch Road, Suite 720", "zip": "95765", "city": "Rocklin"}, {"phone": "(530) 532-5860", "street": "1550 Myers Street, Suite C", "zip": "95965", "city": "Oroville"}, {"phone": "(530) 225-3142", "street": "2885-C Churn Creek Road", "zip": "96002", "city": "Redding"}], "url": "http://cssrc.us/web/4/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "4", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4004", "address": "State Capitol, Room 3070\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(916) 435-0744", "address": "5800 Stanford Ranch Road, Suite 720\nRocklin, CA 95765", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(530) 532-5860", "address": "1550 Myers Street, Suite C\nOroville, CA 95965", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(530) 225-3142", "address": "2885-C Churn Creek Road\nRedding, CA 96002", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Cannella", "updated_at": "2012-11-07 00:27:15", "full_name": "Anthony Cannella", "id": "CAL000133", "first_name": "Anthony", "middle_name": "", "district": "12", "state": "ca", "votesmart_id": "70467", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4012", "street": "State Capitol, Room 3048", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000133", "active": true, "transparencydata_id": "1c1ac41e6816486d9b2c73ff51ef739e", "photo_url": "http://cssrc.us/lib/uploads/12/Canella_7221.jpg", "+district_offices": [{"phone": "(209) 577-6592", "street": "918 15th Street", "zip": "95354", "city": "Modesto"}, {"phone": "(209) 726-5495", "street": "1640 N Street, Suite 210", "zip": "95340", "city": "Merced"}, {"phone": "(831) 769-8040", "street": "369 Main Street, Suite 208", "zip": "93901", "city": "Salinas"}], "url": "http://cssrc.us/web/12/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "12", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4012", "address": "State Capitol, Room 3048\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(209) 577-6592", "address": "918 15th Street\nModesto, CA 95354", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(209) 726-5495", "address": "1640 N Street, Suite 210\nMerced, CA 95340", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(831) 769-8040", "address": "369 Main Street, Suite 208\nSalinas, CA 93901", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}, {"last_name": "Rubio", "updated_at": "2012-11-07 00:27:15", "full_name": "Michael Rubio", "id": "CAL000134", "first_name": "Michael J.", "middle_name": "", "district": "16", "state": "ca", "votesmart_id": "82337", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4016", "street": "State Capitol, Room 2066", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000134", "active": true, "transparencydata_id": "a1154ce99c074aa9b5408c7a616fe120", "+district_offices": [{"phone": "(559) 264-3070", "street": "2550 Mariposa Mall, Suite 2016", "zip": "93721", "city": "Fresno"}, {"phone": "(661) 395-2620", "street": "1122 Truxtun Avenue, Suite 100", "zip": "93301", "city": "Bakersfield"}, {"phone": "(559) 582-2800", "street": "101 N. Irwin, Suite 207", "zip": "93230", "city": "Hanford"}], "url": "http://sd16.senate.ca.gov", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "16", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4016", "address": "State Capitol, Room 2066\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(559) 264-3070", "address": "2550 Mariposa Mall, Suite 2016\nFresno, CA 93721", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(661) 395-2620", "address": "1122 Truxtun Avenue, Suite 100\nBakersfield, CA 93301", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Vargas", "updated_at": "2012-11-07 00:27:15", "full_name": "Juan Vargas", "id": "CAL000135", "first_name": "Juan", "middle_name": "", "district": "40", "state": "ca", "votesmart_id": "29100", "party": "Democratic", "+capitol_office": {"phone": "(916) 651-4040", "street": "State Capitol, Room 3092", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000135", "active": true, "transparencydata_id": "adcbe0c54c9a4bb2a5de045dde87e964", "+district_offices": [{"phone": "(619) 409-7690", "street": "333 H Street, Suite 2030", "zip": "91910", "city": "Chula Vista"}, {"phone": "(760) 335-3442", "street": "1224 State Street, Suite D", "zip": "92243", "city": "El Centro"}, {"phone": "(760) 398-6442", "street": "45-125 Smurr Street, Suite B", "zip": "92201", "city": "Indio"}], "url": "http://sd40.senate.ca.gov", "country": "us", "created_at": "2012-01-31 19:25:09", "level": "state", "+district": "40", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4040", "address": "State Capitol, Room 3092\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(619) 409-7690", "address": "333 H Street, Suite 2030\nChula Vista, CA 91910", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(760) 335-3442", "address": "1224 State Street, Suite D\nEl Centro, CA 92243", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(760) 398-6442", "address": "45-125 Smurr Street, Suite B\nIndio, CA 92201", "type": "district", "email": null}], "+party": "Democratic", "suffixes": ""}, {"last_name": "Runner", "updated_at": "2012-11-07 00:27:14", "full_name": "Sharon Runner", "id": "CAL000169", "first_name": "Sharon", "middle_name": "", "district": "17", "state": "ca", "votesmart_id": "28796", "party": "Republican", "+capitol_office": {"phone": "(916) 651-4017", "street": "State Capitol, Room 2048", "zip": "95814-4900", "city": "Sacramento"}, "leg_id": "CAL000169", "active": true, "transparencydata_id": "c3c069b9cc574cb5b0c7631d8bf56df4", "+district_offices": [{"phone": "(661) 729-6232", "street": "848 W. Lancaster Blvd., Suite 101", "zip": "93534", "city": "Lancaster"}, {"phone": "(661) 286-1471", "street": "23920 Valencia Blvd. Suite 250", "zip": "91355", "city": "Santa Clarita"}, {"phone": "(760) 843-8414", "street": "14343 Civic Drive, First Floor", "zip": "92392", "city": "Victorville"}], "url": "http://cssrc.us/web/17/", "country": "us", "created_at": "2012-01-31 19:25:08", "level": "state", "+district": "17", "chamber": "upper", "offices": [{"fax": null, "name": "Capitol Office", "phone": "(916) 651-4017", "address": "State Capitol, Room 2048\nSacramento, CA 95814-4900", "type": "capitol", "email": null}, {"fax": null, "name": "District Office", "phone": "(661) 729-6232", "address": "848 W. Lancaster Blvd., Suite 101\nLancaster, CA 93534", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(661) 286-1471", "address": "23920 Valencia Blvd. Suite 250\nSanta Clarita, CA 91355", "type": "district", "email": null}, {"fax": null, "name": "District Office", "phone": "(760) 843-8414", "address": "14343 Civic Drive, First Floor\nVictorville, CA 92392", "type": "district", "email": null}], "+party": "Republican", "suffixes": ""}]
|
@@ -1,60 +1,9 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Server: nginx/
|
3
|
-
Date:
|
4
|
-
Content-Type:
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
"lower_chamber_title": "Assemblymember",
|
11
|
-
"upper_chamber_title": "Senator",
|
12
|
-
"name": "California",
|
13
|
-
"sessions": [
|
14
|
-
{
|
15
|
-
"end_year": 2010,
|
16
|
-
"start_year": 2009,
|
17
|
-
"name": "20092010"
|
18
|
-
},
|
19
|
-
{
|
20
|
-
"end_year": 2010,
|
21
|
-
"start_year": 2009,
|
22
|
-
"name": "20092010 Special Session 1"
|
23
|
-
},
|
24
|
-
{
|
25
|
-
"end_year": 2010,
|
26
|
-
"start_year": 2009,
|
27
|
-
"name": "20092010 Special Session 2"
|
28
|
-
},
|
29
|
-
{
|
30
|
-
"end_year": 2010,
|
31
|
-
"start_year": 2009,
|
32
|
-
"name": "20092010 Special Session 3"
|
33
|
-
},
|
34
|
-
{
|
35
|
-
"end_year": 2010,
|
36
|
-
"start_year": 2009,
|
37
|
-
"name": "20092010 Special Session 4"
|
38
|
-
},
|
39
|
-
{
|
40
|
-
"end_year": 2010,
|
41
|
-
"start_year": 2009,
|
42
|
-
"name": "20092010 Special Session 5"
|
43
|
-
},
|
44
|
-
{
|
45
|
-
"end_year": 2010,
|
46
|
-
"start_year": 2009,
|
47
|
-
"name": "20092010 Special Session 6"
|
48
|
-
},
|
49
|
-
{
|
50
|
-
"end_year": 2010,
|
51
|
-
"start_year": 2009,
|
52
|
-
"name": "20092010 Special Session 7"
|
53
|
-
}
|
54
|
-
],
|
55
|
-
"upper_chamber_term": 4,
|
56
|
-
"abbreviation": "ca",
|
57
|
-
"upper_chamber_name": "Senate",
|
58
|
-
"legislature_name": "California State Legislature",
|
59
|
-
"lower_chamber_term": 3
|
60
|
-
}
|
1
|
+
HTTP/1.1 200 OK
|
2
|
+
Server: nginx/1.2.1
|
3
|
+
Date: Fri, 16 Nov 2012 23:40:31 GMT
|
4
|
+
Content-Type: application/json; charset=utf-8
|
5
|
+
Transfer-Encoding: chunked
|
6
|
+
Connection: keep-alive
|
7
|
+
Vary: Authorization
|
8
|
+
|
9
|
+
{"lower_chamber_title": "Assemblymember", "capitol_timezone": "America/Los_Angeles", "abbreviation": "ca", "feature_flags": ["subjects", "influenceexplorer"], "id": "ca", "session_details": {"20092010 Special Session 5": {"type": "special", "display_name": "2009-2010, 5th Special Session"}, "20092010 Special Session 4": {"type": "special", "display_name": "2009-2010, 4th Special Session"}, "20092010 Special Session 7": {"type": "special", "display_name": "2009-2010, 7th Special Session"}, "20092010 Special Session 6": {"type": "special", "display_name": "2009-2010, 6th Special Session"}, "20092010 Special Session 1": {"type": "special", "display_name": "2009-2010, 1st Special Session"}, "20112012 Special Session 1": {"type": "special", "display_name": "2011-2012, 1st Special Session"}, "20092010 Special Session 3": {"type": "special", "display_name": "2009-2010, 3rd Special Session"}, "20092010 Special Session 2": {"type": "special", "display_name": "2009-2010, 2nd Special Session"}, "20092010": {"display_name": "2009-2010 Regular Session", "type": "primary", "start_date": "2008-12-01 00:00:00"}, "20092010 Special Session 8": {"type": "special", "display_name": "2009-2010, 8th Special Session"}, "20112012": {"display_name": "2011-2012 Regular Session", "type": "primary", "start_date": "2010-12-06 00:00:00"}}, "latest_json_date": "2012-11-01 19:53:09", "legislature_name": "California State Legislature", "upper_chamber_title": "Senator", "terms": [{"end_year": 2010, "start_year": 2009, "+start_date": "2008-12-01 00:00:00", "name": "20092010", "sessions": ["20092010", "20092010 Special Session 1", "20092010 Special Session 2", "20092010 Special Session 3", "20092010 Special Session 4", "20092010 Special Session 5", "20092010 Special Session 6", "20092010 Special Session 7", "20092010 Special Session 8"]}, {"end_year": 2012, "start_year": 2011, "+start_date": "2010-12-06 00:00:00", "name": "20112012", "sessions": ["20112012 Special Session 1", "20112012"]}], "latest_csv_url": "http://static.openstates.org/downloads/2012-11-01-ca-csv.zip", "upper_chamber_term": 4, "latest_csv_date": "2012-11-01 13:52:32", "latest_update": "2012-11-07 00:22:19", "upper_chamber_name": "Senate", "lower_chamber_term": 2, "lower_chamber_name": "Assembly", "latest_json_url": "http://static.openstates.org/downloads/2012-11-01-ca-json.zip", "name": "California"}
|