govkit-h 0.7.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (72) hide show
  1. data/.document +5 -0
  2. data/.rspec +3 -0
  3. data/Gemfile +13 -0
  4. data/LICENSE +20 -0
  5. data/README.md +70 -0
  6. data/Rakefile +82 -0
  7. data/USAGE +1 -0
  8. data/VERSION +1 -0
  9. data/generators/govkit/govkit_generator.rb +24 -0
  10. data/generators/govkit/templates/govkit.rb +24 -0
  11. data/govkit.gemspec +130 -0
  12. data/init.rb +4 -0
  13. data/lib/generators/govkit/govkit_generator.rb +21 -0
  14. data/lib/generators/govkit/templates/create_mentions.rb +21 -0
  15. data/lib/generators/govkit/templates/govkit.rb +24 -0
  16. data/lib/generators/govkit/templates/mention.rb +15 -0
  17. data/lib/gov_kit.rb +45 -0
  18. data/lib/gov_kit/acts_as_noteworthy.rb +63 -0
  19. data/lib/gov_kit/configuration.rb +58 -0
  20. data/lib/gov_kit/follow_the_money.rb +176 -0
  21. data/lib/gov_kit/open_congress.rb +125 -0
  22. data/lib/gov_kit/open_congress/bill.rb +171 -0
  23. data/lib/gov_kit/open_congress/blog_post.rb +15 -0
  24. data/lib/gov_kit/open_congress/news_post.rb +15 -0
  25. data/lib/gov_kit/open_congress/person.rb +141 -0
  26. data/lib/gov_kit/open_congress/person_stat.rb +13 -0
  27. data/lib/gov_kit/open_congress/roll_call.rb +14 -0
  28. data/lib/gov_kit/open_congress/roll_call_comparison.rb +28 -0
  29. data/lib/gov_kit/open_congress/voting_comparison.rb +44 -0
  30. data/lib/gov_kit/open_states.rb +132 -0
  31. data/lib/gov_kit/railtie.rb +24 -0
  32. data/lib/gov_kit/resource.rb +190 -0
  33. data/lib/gov_kit/search_engines.rb +7 -0
  34. data/lib/gov_kit/search_engines/bing.rb +38 -0
  35. data/lib/gov_kit/search_engines/google_blog.rb +32 -0
  36. data/lib/gov_kit/search_engines/google_news.rb +47 -0
  37. data/lib/gov_kit/search_engines/technorati.rb +35 -0
  38. data/lib/gov_kit/search_engines/wikipedia.rb +27 -0
  39. data/lib/gov_kit/transparency_data.rb +144 -0
  40. data/lib/gov_kit/vote_smart.rb +126 -0
  41. data/lib/govkit.rb +1 -0
  42. data/spec/fixtures/bing/news_search.response +1 -0
  43. data/spec/fixtures/bing/no_results.response +1 -0
  44. data/spec/fixtures/follow_the_money/business-page0.response +28 -0
  45. data/spec/fixtures/follow_the_money/business-page1.response +12 -0
  46. data/spec/fixtures/follow_the_money/contribution.response +12 -0
  47. data/spec/fixtures/follow_the_money/unauthorized.response +8 -0
  48. data/spec/fixtures/open_congress/person.response +8 -0
  49. data/spec/fixtures/open_states/401.response +10 -0
  50. data/spec/fixtures/open_states/404.response +9 -0
  51. data/spec/fixtures/open_states/410.response +6 -0
  52. data/spec/fixtures/open_states/bill.response +240 -0
  53. data/spec/fixtures/open_states/bill_query.response +1990 -0
  54. data/spec/fixtures/open_states/committee_find.response +53 -0
  55. data/spec/fixtures/open_states/committee_query.response +190 -0
  56. data/spec/fixtures/open_states/legislator.response +34 -0
  57. data/spec/fixtures/open_states/legislator_query.response +144 -0
  58. data/spec/fixtures/open_states/state.response +60 -0
  59. data/spec/fixtures/search_engines/google_news.response +8 -0
  60. data/spec/fixtures/transparency_data/contributions.response +18 -0
  61. data/spec/fixtures/transparency_data/entities_search.response +7 -0
  62. data/spec/fixtures/transparency_data/entities_search_limit_0.response +7 -0
  63. data/spec/fixtures/transparency_data/entities_search_limit_1.response +7 -0
  64. data/spec/fixtures/transparency_data/grants_find_all.response +7 -0
  65. data/spec/fixtures/transparency_data/lobbyists_find_all.response +7 -0
  66. data/spec/follow_the_money_spec.rb +61 -0
  67. data/spec/open_congress_spec.rb +108 -0
  68. data/spec/open_states_spec.rb +213 -0
  69. data/spec/search_engines_spec.rb +44 -0
  70. data/spec/spec_helper.rb +36 -0
  71. data/spec/transparency_data_spec.rb +106 -0
  72. metadata +258 -0
@@ -0,0 +1,240 @@
1
+ HTTP/1.1 200 OK
2
+ Server: nginx/0.6.35
3
+ Date: Tue, 15 Jun 2010 21:50:08 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Connection: close
6
+ Vary: Authorization
7
+
8
+ {
9
+ "votes": [
10
+ {
11
+ "other_count": 6,
12
+ "sources": [],
13
+ "yes_count": 34,
14
+ "updated_at": "2010-03-27 21:30:38",
15
+ "motion": "Special Consent #12 AB667 Block By Alquist",
16
+ "chamber": "upper",
17
+ "passed": true,
18
+ "date": "2009-07-09 05:50:00",
19
+ "vote_id": 13695,
20
+ "no_count": 0
21
+ },
22
+ {
23
+ "other_count": 3,
24
+ "sources": [],
25
+ "yes_count": 77,
26
+ "updated_at": "2010-03-27 21:30:38",
27
+ "motion": "AB 667 BLOCK Consent Calendar Second Day Regular Session",
28
+ "chamber": "lower",
29
+ "passed": true,
30
+ "date": "2009-05-21 08:07:00",
31
+ "vote_id": 13694,
32
+ "no_count": 0
33
+ },
34
+ {
35
+ "other_count": 3,
36
+ "sources": [],
37
+ "yes_count": 10,
38
+ "updated_at": "2010-03-27 21:30:38",
39
+ "motion": "Do pass and be re-referred to the Committee on Appropriations.",
40
+ "chamber": "lower",
41
+ "passed": true,
42
+ "date": "2009-04-13 20:00:00",
43
+ "vote_id": 13693,
44
+ "no_count": 0
45
+ },
46
+ {
47
+ "other_count": 0,
48
+ "sources": [],
49
+ "yes_count": 7,
50
+ "updated_at": "2010-03-27 21:30:38",
51
+ "motion": "Do pass, to Consent Calendar.",
52
+ "chamber": "lower",
53
+ "passed": true,
54
+ "date": "2009-05-12 20:00:00",
55
+ "vote_id": 13692,
56
+ "no_count": 0
57
+ },
58
+ {
59
+ "other_count": 0,
60
+ "sources": [],
61
+ "yes_count": 7,
62
+ "updated_at": "2010-03-27 21:30:38",
63
+ "motion": "Do pass, but re-refer to the Committee on Appropriations.",
64
+ "chamber": "upper",
65
+ "passed": true,
66
+ "date": "2009-04-27 20:00:00",
67
+ "vote_id": 13691,
68
+ "no_count": 4
69
+ },
70
+ {
71
+ "other_count": 0,
72
+ "sources": [],
73
+ "yes_count": 5,
74
+ "updated_at": "2010-03-27 21:30:37",
75
+ "motion": "Do pass, but re-refer to the Committee on Appropriations.",
76
+ "chamber": "upper",
77
+ "passed": true,
78
+ "date": "2009-06-21 20:00:00",
79
+ "vote_id": 13690,
80
+ "no_count": 2
81
+ }
82
+ ],
83
+ "last_action": "2009-08-05 20:00:00",
84
+ "first_action": "2009-02-24 19:00:00",
85
+ "title": "An act to amend Section 1750.1 of the Business and Professions Code, and to amend Section 104830 of, and to add Section 104762 to, the Health and Safety Code, relating to oral health.",
86
+ "updated_at": "2010-03-27 21:30:38",
87
+ "actions": [
88
+ {
89
+ "date": "2009-08-05 20:00:00",
90
+ "action": "Chaptered by Secretary of State - Chapter 119, Statutes of 2009.",
91
+ "updated_at": "2010-03-27 21:30:37",
92
+ "actor": "Secretary of State"
93
+ },
94
+ {
95
+ "date": "2009-08-04 20:00:00",
96
+ "action": "Approved by the Governor.",
97
+ "updated_at": "2010-03-27 21:30:37",
98
+ "actor": "Governor"
99
+ },
100
+ {
101
+ "date": "2009-07-29 20:00:00",
102
+ "action": "Enrolled and to the Governor at 2:30 p.m.",
103
+ "updated_at": "2010-03-27 21:30:37",
104
+ "actor": "Governor"
105
+ },
106
+ {
107
+ "date": "2009-07-08 20:00:00",
108
+ "action": "In Assembly. To enrollment.",
109
+ "updated_at": "2010-03-27 21:30:37",
110
+ "actor": "Assembly (E&E Enrollment)"
111
+ },
112
+ {
113
+ "date": "2009-07-08 20:00:00",
114
+ "action": "Read third time, passed, and to Assembly. (Ayes 34. Noes 0. Page 1667.)",
115
+ "updated_at": "2010-03-27 21:30:37",
116
+ "actor": "Senate (Desk)"
117
+ },
118
+ {
119
+ "date": "2009-07-01 20:00:00",
120
+ "action": "Ordered to Special Consent Calendar.",
121
+ "updated_at": "2010-03-27 21:30:37",
122
+ "actor": "Senate (Floor Special Consent)"
123
+ },
124
+ {
125
+ "date": "2009-06-29 20:00:00",
126
+ "action": "Read second time. To third reading.",
127
+ "updated_at": "2010-03-27 21:30:37",
128
+ "actor": "Senate (Floor Third Reading)"
129
+ },
130
+ {
131
+ "date": "2009-06-28 20:00:00",
132
+ "action": "From committee: Be placed on second reading file pursuant to Senate Rule 28.8.",
133
+ "updated_at": "2010-03-27 21:30:37",
134
+ "actor": "Senate (Floor Second Reading)"
135
+ },
136
+ {
137
+ "date": "2009-06-21 20:00:00",
138
+ "action": "From committee: Do pass, and re-refer to Com. on APPR. Re-referred. (Ayes 10. Noes 0.) (June 22).",
139
+ "updated_at": "2010-03-27 21:30:37",
140
+ "actor": "Senate (Committee)"
141
+ },
142
+ {
143
+ "date": "2009-06-03 20:00:00",
144
+ "action": "Referred to Com. on B., P. & E.D.",
145
+ "updated_at": "2010-03-27 21:30:37",
146
+ "actor": "Senate (Committee CS42)"
147
+ },
148
+ {
149
+ "date": "2009-05-20 20:00:00",
150
+ "action": "Read third time, passed, and to Senate. (Ayes 77. Noes 0. Page 1628.)",
151
+ "updated_at": "2010-03-27 21:30:37",
152
+ "actor": "Assembly (E&E Engrossing)"
153
+ },
154
+ {
155
+ "date": "2009-05-20 20:00:00",
156
+ "action": "In Senate. Read first time. To Com. on RLS. for assignment.",
157
+ "updated_at": "2010-03-27 21:30:37",
158
+ "actor": "Senate (Rules)"
159
+ },
160
+ {
161
+ "date": "2009-05-17 20:00:00",
162
+ "action": "Read second time. To Consent Calendar.",
163
+ "updated_at": "2010-03-27 21:30:37",
164
+ "actor": "Assembly (Floor Consent)"
165
+ },
166
+ {
167
+ "date": "2009-05-13 20:00:00",
168
+ "action": "From committee: Do pass. To Consent Calendar. (May 13).",
169
+ "updated_at": "2010-03-27 21:30:37",
170
+ "actor": "Assembly (Floor Second Reading)"
171
+ },
172
+ {
173
+ "date": "2009-05-04 20:00:00",
174
+ "action": "Re-referred to Com. on APPR.",
175
+ "updated_at": "2010-03-27 21:30:37",
176
+ "actor": "Assembly (Committee CX25)"
177
+ },
178
+ {
179
+ "date": "2009-05-03 20:00:00",
180
+ "action": "From committee chair, with author's amendments: Amend, and re-refer to Com. on APPR. Read second time and amended.",
181
+ "updated_at": "2010-03-27 21:30:37",
182
+ "actor": "Assembly (E&E Engrossing)"
183
+ },
184
+ {
185
+ "date": "2009-04-28 20:00:00",
186
+ "action": "From committee: Do pass, and re-refer to Com. on APPR. with recommendation: To Consent Calendar. Re-referred. (Ayes 10. Noes 0.) (April 28).",
187
+ "updated_at": "2010-03-27 21:30:37",
188
+ "actor": "Assembly (Committee)"
189
+ },
190
+ {
191
+ "date": "2009-04-14 20:00:00",
192
+ "action": "From committee: Do pass, and re-refer to Com. on B. & P. with recommendation: To Consent Calendar. Re-referred. (Ayes 19. Noes 0.) (April 14).",
193
+ "updated_at": "2010-03-27 21:30:37",
194
+ "actor": "Assembly (Committee)"
195
+ },
196
+ {
197
+ "date": "2009-04-12 20:00:00",
198
+ "action": "Re-referred to Com. on HEALTH.",
199
+ "updated_at": "2010-03-27 21:30:37",
200
+ "actor": "Assembly (Committee CX08)"
201
+ },
202
+ {
203
+ "date": "2009-04-01 20:00:00",
204
+ "action": "From committee chair, with author's amendments: Amend, and re-refer to Com. on HEALTH. Read second time and amended.",
205
+ "updated_at": "2010-03-27 21:30:37",
206
+ "actor": "Assembly (E&E Engrossing)"
207
+ },
208
+ {
209
+ "date": "2009-03-22 20:00:00",
210
+ "action": "Referred to Com. on HEALTH.",
211
+ "updated_at": "2010-03-27 21:30:37",
212
+ "actor": "Assembly (Committee CX08)"
213
+ },
214
+ {
215
+ "date": "2009-02-25 19:00:00",
216
+ "action": "From printer. May be heard in committee March 28.",
217
+ "updated_at": "2010-03-27 21:30:37",
218
+ "actor": "Assembly (Desk)"
219
+ },
220
+ {
221
+ "date": "2009-02-24 19:00:00",
222
+ "action": "Read first time. To print.",
223
+ "updated_at": "2010-03-27 21:30:37",
224
+ "actor": "Assembly (Desk)"
225
+ }
226
+ ],
227
+ "sponsors": [
228
+ {
229
+ "leg_id": 2504,
230
+ "type": "LEAD_AUTHOR",
231
+ "full_name": "Block, Marty"
232
+ }
233
+ ],
234
+ "chamber": "lower",
235
+ "state": "ca",
236
+ "session": "20092010",
237
+ "sources": [],
238
+ "versions": [],
239
+ "bill_id": "AB667"
240
+ }
@@ -0,0 +1,1990 @@
1
+ HTTP/1.1 200 OK
2
+ Server: nginx/0.6.35
3
+ Date: Tue, 15 Jun 2010 21:56:32 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Connection: close
6
+ Vary: Authorization
7
+
8
+ [
9
+ {
10
+ "votes": [],
11
+ "last_action": "2009-02-09 19:00:00",
12
+ "first_action": "2008-11-09 19:00:00",
13
+ "title": "Relating to participation by single-employee businesses in private purchasing cooperatives or health group cooperatives.",
14
+ "updated_at": "2010-04-17 09:48:07",
15
+ "actions": [
16
+ {
17
+ "date": "2009-02-09 19:00:00",
18
+ "action": "Referred to State Affairs",
19
+ "updated_at": "2010-04-14 20:12:40",
20
+ "actor": "upper"
21
+ },
22
+ {
23
+ "date": "2009-02-09 19:00:00",
24
+ "action": "Read first time",
25
+ "updated_at": "2010-04-14 20:12:40",
26
+ "actor": "upper"
27
+ },
28
+ {
29
+ "date": "2008-11-09 19:00:00",
30
+ "action": "Filed",
31
+ "updated_at": "2010-04-14 20:12:40",
32
+ "actor": "upper"
33
+ },
34
+ {
35
+ "date": "2008-11-09 19:00:00",
36
+ "action": "Received by the Secretary of the Senate",
37
+ "updated_at": "2010-04-14 20:12:40",
38
+ "actor": "upper"
39
+ }
40
+ ],
41
+ "sponsors": [
42
+ {
43
+ "leg_id": 354,
44
+ "type": "author",
45
+ "full_name": "Jane Nelson"
46
+ }
47
+ ],
48
+ "chamber": "upper",
49
+ "state": "tx",
50
+ "session": "81",
51
+ "sources": [
52
+ {
53
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/senate_bills/SB00001_SB00099/SB 77.xml",
54
+ "retrieved": "2010-06-07 04:14:30"
55
+ },
56
+ {
57
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00001_SB00099",
58
+ "retrieved": "2010-06-07 04:14:33"
59
+ }
60
+ ],
61
+ "versions": [
62
+ {
63
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00001_SB00099/SB00077I.HTM",
64
+ "name": "SB00077I",
65
+ "updated_at": "2010-04-17 09:48:07"
66
+ }
67
+ ],
68
+ "bill_id": "SB 77"
69
+ },
70
+ {
71
+ "votes": [],
72
+ "last_action": "2009-05-20 20:00:00",
73
+ "first_action": "2009-02-17 19:00:00",
74
+ "title": "Relating to access by the members of electric cooperatives to meetings of the boards of directors and certain information of the electric cooperatives.",
75
+ "updated_at": "2010-04-17 09:49:44",
76
+ "actions": [
77
+ {
78
+ "date": "2009-05-20 20:00:00",
79
+ "action": "Placed on Major State Calendar",
80
+ "updated_at": "2010-04-14 20:22:11",
81
+ "actor": "lower"
82
+ },
83
+ {
84
+ "date": "2009-05-18 20:00:00",
85
+ "action": "Considered in Calendars",
86
+ "updated_at": "2010-04-14 20:22:11",
87
+ "actor": "lower"
88
+ },
89
+ {
90
+ "date": "2009-05-14 20:00:00",
91
+ "action": "Rules suspended",
92
+ "updated_at": "2010-04-14 20:22:11",
93
+ "actor": "lower"
94
+ },
95
+ {
96
+ "date": "2009-05-14 20:00:00",
97
+ "action": "Committee report sent to Calendars",
98
+ "updated_at": "2010-04-14 20:22:11",
99
+ "actor": "lower"
100
+ },
101
+ {
102
+ "date": "2009-05-13 20:00:00",
103
+ "action": "Committee report printed and distributed",
104
+ "updated_at": "2010-04-14 20:22:11",
105
+ "actor": "lower"
106
+ },
107
+ {
108
+ "date": "2009-05-13 20:00:00",
109
+ "action": "Comte report filed with Committee Coordinator",
110
+ "updated_at": "2010-04-14 20:22:11",
111
+ "actor": "lower"
112
+ },
113
+ {
114
+ "date": "2009-05-05 20:00:00",
115
+ "action": "Reported favorably as substituted",
116
+ "updated_at": "2010-04-14 20:22:11",
117
+ "actor": "lower"
118
+ },
119
+ {
120
+ "date": "2009-05-05 20:00:00",
121
+ "action": "Committee substitute considered in committee",
122
+ "updated_at": "2010-04-14 20:22:11",
123
+ "actor": "lower"
124
+ },
125
+ {
126
+ "date": "2009-05-05 20:00:00",
127
+ "action": "Considered in formal meeting",
128
+ "updated_at": "2010-04-14 20:22:11",
129
+ "actor": "lower"
130
+ },
131
+ {
132
+ "date": "2009-05-05 20:00:00",
133
+ "action": "Posting rule suspended",
134
+ "updated_at": "2010-04-14 20:22:11",
135
+ "actor": "lower"
136
+ },
137
+ {
138
+ "date": "2009-05-05 20:00:00",
139
+ "action": "No action taken in committee",
140
+ "updated_at": "2010-04-14 20:22:11",
141
+ "actor": "lower"
142
+ },
143
+ {
144
+ "date": "2009-05-05 20:00:00",
145
+ "action": "Posting rule suspended",
146
+ "updated_at": "2010-04-14 20:22:11",
147
+ "actor": "lower"
148
+ },
149
+ {
150
+ "date": "2009-04-28 20:00:00",
151
+ "action": "Referred to State Affairs",
152
+ "updated_at": "2010-04-14 20:22:11",
153
+ "actor": "lower"
154
+ },
155
+ {
156
+ "date": "2009-04-28 20:00:00",
157
+ "action": "Read first time",
158
+ "updated_at": "2010-04-14 20:22:11",
159
+ "actor": "lower"
160
+ },
161
+ {
162
+ "date": "2009-04-23 20:00:00",
163
+ "action": "Received from the Senate",
164
+ "updated_at": "2010-04-14 20:22:11",
165
+ "actor": "lower"
166
+ },
167
+ {
168
+ "date": "2009-04-21 20:00:00",
169
+ "action": "Reported engrossed",
170
+ "updated_at": "2010-04-14 20:22:11",
171
+ "actor": "upper"
172
+ },
173
+ {
174
+ "date": "2009-04-21 20:00:00",
175
+ "action": "Record vote",
176
+ "updated_at": "2010-04-14 20:22:11",
177
+ "actor": "upper"
178
+ },
179
+ {
180
+ "date": "2009-04-21 20:00:00",
181
+ "action": "Passed",
182
+ "updated_at": "2010-04-14 20:22:11",
183
+ "actor": "upper"
184
+ },
185
+ {
186
+ "date": "2009-04-21 20:00:00",
187
+ "action": "Read 3rd time",
188
+ "updated_at": "2010-04-14 20:22:11",
189
+ "actor": "upper"
190
+ },
191
+ {
192
+ "date": "2009-04-21 20:00:00",
193
+ "action": "Record vote",
194
+ "updated_at": "2010-04-14 20:22:11",
195
+ "actor": "upper"
196
+ },
197
+ {
198
+ "date": "2009-04-21 20:00:00",
199
+ "action": "Three day rule suspended",
200
+ "updated_at": "2010-04-14 20:22:11",
201
+ "actor": "upper"
202
+ },
203
+ {
204
+ "date": "2009-04-21 20:00:00",
205
+ "action": "Record vote",
206
+ "updated_at": "2010-04-14 20:22:11",
207
+ "actor": "upper"
208
+ },
209
+ {
210
+ "date": "2009-04-21 20:00:00",
211
+ "action": "Passed to engrossment as amended",
212
+ "updated_at": "2010-04-14 20:22:11",
213
+ "actor": "upper"
214
+ },
215
+ {
216
+ "date": "2009-04-21 20:00:00",
217
+ "action": "Vote recorded in Journal",
218
+ "updated_at": "2010-04-14 20:22:11",
219
+ "actor": "upper"
220
+ },
221
+ {
222
+ "date": "2009-04-21 20:00:00",
223
+ "action": "Amended",
224
+ "updated_at": "2010-04-14 20:22:10",
225
+ "actor": "upper"
226
+ },
227
+ {
228
+ "date": "2009-04-21 20:00:00",
229
+ "action": "Amendment(s) offered",
230
+ "updated_at": "2010-04-14 20:22:10",
231
+ "actor": "upper"
232
+ },
233
+ {
234
+ "date": "2009-04-21 20:00:00",
235
+ "action": "Vote recorded in Journal",
236
+ "updated_at": "2010-04-14 20:22:10",
237
+ "actor": "upper"
238
+ },
239
+ {
240
+ "date": "2009-04-21 20:00:00",
241
+ "action": "Amended",
242
+ "updated_at": "2010-04-14 20:22:10",
243
+ "actor": "upper"
244
+ },
245
+ {
246
+ "date": "2009-04-21 20:00:00",
247
+ "action": "Amendment(s) offered",
248
+ "updated_at": "2010-04-14 20:22:10",
249
+ "actor": "upper"
250
+ },
251
+ {
252
+ "date": "2009-04-21 20:00:00",
253
+ "action": "Read 2nd time",
254
+ "updated_at": "2010-04-14 20:22:10",
255
+ "actor": "upper"
256
+ },
257
+ {
258
+ "date": "2009-04-21 20:00:00",
259
+ "action": "Record vote",
260
+ "updated_at": "2010-04-14 20:22:10",
261
+ "actor": "upper"
262
+ },
263
+ {
264
+ "date": "2009-04-21 20:00:00",
265
+ "action": "Rules suspended-Regular order of business",
266
+ "updated_at": "2010-04-14 20:22:10",
267
+ "actor": "upper"
268
+ },
269
+ {
270
+ "date": "2009-04-13 20:00:00",
271
+ "action": "Placed on intent calendar",
272
+ "updated_at": "2010-04-14 20:22:10",
273
+ "actor": "upper"
274
+ },
275
+ {
276
+ "date": "2009-04-07 20:00:00",
277
+ "action": "Committee report printed and distributed",
278
+ "updated_at": "2010-04-14 20:22:10",
279
+ "actor": "upper"
280
+ },
281
+ {
282
+ "date": "2009-04-07 20:00:00",
283
+ "action": "Reported favorably w/o amendments",
284
+ "updated_at": "2010-04-14 20:22:10",
285
+ "actor": "upper"
286
+ },
287
+ {
288
+ "date": "2009-04-06 20:00:00",
289
+ "action": "Testimony taken in committee",
290
+ "updated_at": "2010-04-14 20:22:10",
291
+ "actor": "upper"
292
+ },
293
+ {
294
+ "date": "2009-04-06 20:00:00",
295
+ "action": "Considered in public hearing",
296
+ "updated_at": "2010-04-14 20:22:10",
297
+ "actor": "upper"
298
+ },
299
+ {
300
+ "date": "2009-04-06 20:00:00",
301
+ "action": "Scheduled for public hearing on . . .",
302
+ "updated_at": "2010-04-14 20:22:10",
303
+ "actor": "upper"
304
+ },
305
+ {
306
+ "date": "2009-03-08 20:00:00",
307
+ "action": "Referred to Business & Commerce",
308
+ "updated_at": "2010-04-14 20:22:10",
309
+ "actor": "upper"
310
+ },
311
+ {
312
+ "date": "2009-03-08 20:00:00",
313
+ "action": "Read first time",
314
+ "updated_at": "2010-04-14 20:22:10",
315
+ "actor": "upper"
316
+ },
317
+ {
318
+ "date": "2009-02-17 19:00:00",
319
+ "action": "Filed",
320
+ "updated_at": "2010-04-14 20:22:10",
321
+ "actor": "upper"
322
+ },
323
+ {
324
+ "date": "2009-02-17 19:00:00",
325
+ "action": "Received by the Secretary of the Senate",
326
+ "updated_at": "2010-04-14 20:22:10",
327
+ "actor": "upper"
328
+ }
329
+ ],
330
+ "sponsors": [
331
+ {
332
+ "leg_id": 380,
333
+ "type": "author",
334
+ "full_name": "Troy Fraser"
335
+ }
336
+ ],
337
+ "chamber": "upper",
338
+ "state": "tx",
339
+ "session": "81",
340
+ "sources": [
341
+ {
342
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/senate_bills/SB00900_SB00999/SB 921.xml",
343
+ "retrieved": "2010-06-07 06:03:14"
344
+ },
345
+ {
346
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999",
347
+ "retrieved": "2010-06-07 06:03:18"
348
+ }
349
+ ],
350
+ "versions": [
351
+ {
352
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999/SB00921E.HTM",
353
+ "name": "SB00921E",
354
+ "updated_at": "2010-04-17 09:49:44"
355
+ },
356
+ {
357
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999/SB00921H.HTM",
358
+ "name": "SB00921H",
359
+ "updated_at": "2010-04-17 09:49:44"
360
+ },
361
+ {
362
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999/SB00921I.HTM",
363
+ "name": "SB00921I",
364
+ "updated_at": "2010-04-17 09:49:44"
365
+ },
366
+ {
367
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999/SB00921S.HTM",
368
+ "name": "SB00921S",
369
+ "updated_at": "2010-04-17 09:49:44"
370
+ }
371
+ ],
372
+ "bill_id": "SB 921"
373
+ },
374
+ {
375
+ "votes": [],
376
+ "last_action": "2009-03-23 20:00:00",
377
+ "first_action": "2009-01-14 19:00:00",
378
+ "title": "Relating to participation by single-employee businesses in private purchasing cooperatives or health group cooperatives.",
379
+ "updated_at": "2010-04-17 09:53:23",
380
+ "actions": [
381
+ {
382
+ "date": "2009-03-23 20:00:00",
383
+ "action": "Left pending in committee",
384
+ "updated_at": "2010-04-14 20:38:36",
385
+ "actor": "lower"
386
+ },
387
+ {
388
+ "date": "2009-03-23 20:00:00",
389
+ "action": "Committee substitute considered in committee",
390
+ "updated_at": "2010-04-14 20:38:36",
391
+ "actor": "lower"
392
+ },
393
+ {
394
+ "date": "2009-03-23 20:00:00",
395
+ "action": "Testimony taken/registration(s) recorded in committee",
396
+ "updated_at": "2010-04-14 20:38:36",
397
+ "actor": "lower"
398
+ },
399
+ {
400
+ "date": "2009-03-23 20:00:00",
401
+ "action": "Considered in public hearing",
402
+ "updated_at": "2010-04-14 20:38:36",
403
+ "actor": "lower"
404
+ },
405
+ {
406
+ "date": "2009-03-23 20:00:00",
407
+ "action": "Scheduled for public hearing on . . .",
408
+ "updated_at": "2010-04-14 20:38:36",
409
+ "actor": "lower"
410
+ },
411
+ {
412
+ "date": "2009-02-17 19:00:00",
413
+ "action": "Referred to Insurance",
414
+ "updated_at": "2010-04-14 20:38:36",
415
+ "actor": "lower"
416
+ },
417
+ {
418
+ "date": "2009-02-17 19:00:00",
419
+ "action": "Read first time",
420
+ "updated_at": "2010-04-14 20:38:36",
421
+ "actor": "lower"
422
+ },
423
+ {
424
+ "date": "2009-01-14 19:00:00",
425
+ "action": "Filed",
426
+ "updated_at": "2010-04-14 20:38:36",
427
+ "actor": "lower"
428
+ }
429
+ ],
430
+ "sponsors": [
431
+ {
432
+ "leg_id": 295,
433
+ "type": "author",
434
+ "full_name": "Guillen, Ryan"
435
+ },
436
+ {
437
+ "leg_id": 469,
438
+ "type": "author",
439
+ "full_name": "King, Susan"
440
+ }
441
+ ],
442
+ "chamber": "lower",
443
+ "state": "tx",
444
+ "session": "81",
445
+ "sources": [
446
+ {
447
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/house_bills/HB00600_HB00699/HB 663.xml",
448
+ "retrieved": "2010-06-07 11:05:30"
449
+ },
450
+ {
451
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB00600_HB00699",
452
+ "retrieved": "2010-06-07 11:05:34"
453
+ }
454
+ ],
455
+ "versions": [
456
+ {
457
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB00600_HB00699/HB00663I.HTM",
458
+ "name": "HB00663I",
459
+ "updated_at": "2010-04-17 09:53:23"
460
+ }
461
+ ],
462
+ "bill_id": "HB 663"
463
+ },
464
+ {
465
+ "votes": [],
466
+ "last_action": "2009-02-22 19:00:00",
467
+ "first_action": "2009-02-02 19:00:00",
468
+ "title": "Relating to access by the members of electric cooperatives to meetings of the boards of directors and certain information of the electric cooperatives.",
469
+ "updated_at": "2010-04-17 09:53:31",
470
+ "actions": [
471
+ {
472
+ "date": "2009-02-22 19:00:00",
473
+ "action": "Referred to State Affairs",
474
+ "updated_at": "2010-04-14 20:39:13",
475
+ "actor": "lower"
476
+ },
477
+ {
478
+ "date": "2009-02-22 19:00:00",
479
+ "action": "Read first time",
480
+ "updated_at": "2010-04-14 20:39:13",
481
+ "actor": "lower"
482
+ },
483
+ {
484
+ "date": "2009-02-02 19:00:00",
485
+ "action": "Filed",
486
+ "updated_at": "2010-04-14 20:39:13",
487
+ "actor": "lower"
488
+ }
489
+ ],
490
+ "sponsors": [
491
+ {
492
+ "leg_id": 425,
493
+ "type": "author",
494
+ "full_name": "Bolton, Valinda"
495
+ }
496
+ ],
497
+ "chamber": "lower",
498
+ "state": "tx",
499
+ "session": "81",
500
+ "sources": [
501
+ {
502
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/house_bills/HB01000_HB01099/HB 1002.xml",
503
+ "retrieved": "2010-06-07 11:48:18"
504
+ },
505
+ {
506
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB01000_HB01099",
507
+ "retrieved": "2010-06-07 11:48:23"
508
+ }
509
+ ],
510
+ "versions": [
511
+ {
512
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB01000_HB01099/HB01002I.HTM",
513
+ "name": "HB01002I",
514
+ "updated_at": "2010-04-17 09:53:31"
515
+ }
516
+ ],
517
+ "bill_id": "HB 1002"
518
+ },
519
+ {
520
+ "votes": [],
521
+ "last_action": "2009-04-06 20:00:00",
522
+ "first_action": "2009-02-17 19:00:00",
523
+ "title": "Relating to access by the members of electric cooperatives to meetings of the boards of directors and certain information of the electric cooperatives.",
524
+ "updated_at": "2010-04-17 09:54:20",
525
+ "actions": [
526
+ {
527
+ "date": "2009-04-06 20:00:00",
528
+ "action": "Left pending in committee",
529
+ "updated_at": "2010-04-14 20:43:10",
530
+ "actor": "lower"
531
+ },
532
+ {
533
+ "date": "2009-04-06 20:00:00",
534
+ "action": "Testimony taken/registration(s) recorded in committee",
535
+ "updated_at": "2010-04-14 20:43:10",
536
+ "actor": "lower"
537
+ },
538
+ {
539
+ "date": "2009-04-06 20:00:00",
540
+ "action": "Considered in public hearing",
541
+ "updated_at": "2010-04-14 20:43:10",
542
+ "actor": "lower"
543
+ },
544
+ {
545
+ "date": "2009-04-06 20:00:00",
546
+ "action": "Scheduled for public hearing on . . .",
547
+ "updated_at": "2010-04-14 20:43:10",
548
+ "actor": "lower"
549
+ },
550
+ {
551
+ "date": "2009-03-01 19:00:00",
552
+ "action": "Referred to State Affairs",
553
+ "updated_at": "2010-04-14 20:43:10",
554
+ "actor": "lower"
555
+ },
556
+ {
557
+ "date": "2009-03-01 19:00:00",
558
+ "action": "Read first time",
559
+ "updated_at": "2010-04-14 20:43:10",
560
+ "actor": "lower"
561
+ },
562
+ {
563
+ "date": "2009-02-17 19:00:00",
564
+ "action": "Filed",
565
+ "updated_at": "2010-04-14 20:43:10",
566
+ "actor": "lower"
567
+ }
568
+ ],
569
+ "sponsors": [
570
+ {
571
+ "leg_id": 392,
572
+ "type": "coauthor",
573
+ "full_name": "Strama, Mark"
574
+ },
575
+ {
576
+ "leg_id": 403,
577
+ "type": "coauthor",
578
+ "full_name": "Miller, Doug"
579
+ },
580
+ {
581
+ "leg_id": 463,
582
+ "type": "coauthor",
583
+ "full_name": "Maldonado, Diana"
584
+ },
585
+ {
586
+ "leg_id": 470,
587
+ "type": "coauthor",
588
+ "full_name": "Howard, Donna"
589
+ },
590
+ {
591
+ "leg_id": 425,
592
+ "type": "coauthor",
593
+ "full_name": "Bolton, Valinda"
594
+ },
595
+ {
596
+ "leg_id": 457,
597
+ "type": "author",
598
+ "full_name": "Aycock, Jimmie Don"
599
+ },
600
+ {
601
+ "leg_id": 342,
602
+ "type": "author",
603
+ "full_name": "Gattis, Dan"
604
+ },
605
+ {
606
+ "leg_id": 329,
607
+ "type": "author",
608
+ "full_name": "Rose, Patrick M."
609
+ }
610
+ ],
611
+ "chamber": "lower",
612
+ "state": "tx",
613
+ "session": "81",
614
+ "sources": [
615
+ {
616
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/house_bills/HB01300_HB01399/HB 1390.xml",
617
+ "retrieved": "2010-06-07 12:36:22"
618
+ },
619
+ {
620
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB01300_HB01399",
621
+ "retrieved": "2010-06-07 12:36:26"
622
+ }
623
+ ],
624
+ "versions": [
625
+ {
626
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB01300_HB01399/HB01390I.HTM",
627
+ "name": "HB01390I",
628
+ "updated_at": "2010-04-17 09:54:20"
629
+ }
630
+ ],
631
+ "bill_id": "HB 1390"
632
+ },
633
+ {
634
+ "votes": [],
635
+ "last_action": "2009-04-06 20:00:00",
636
+ "first_action": "2009-03-11 20:00:00",
637
+ "title": "Relating to the governance and disclosure requirements of electric cooperative corporations and the review of complaints of electric cooperative corporation members by the Office of the Attorney General.",
638
+ "updated_at": "2010-04-17 09:55:08",
639
+ "actions": [
640
+ {
641
+ "date": "2009-04-06 20:00:00",
642
+ "action": "Left pending in committee",
643
+ "updated_at": "2010-04-14 20:46:49",
644
+ "actor": "lower"
645
+ },
646
+ {
647
+ "date": "2009-04-06 20:00:00",
648
+ "action": "Testimony taken/registration(s) recorded in committee",
649
+ "updated_at": "2010-04-14 20:46:49",
650
+ "actor": "lower"
651
+ },
652
+ {
653
+ "date": "2009-04-06 20:00:00",
654
+ "action": "Committee substitute considered in committee",
655
+ "updated_at": "2010-04-14 20:46:49",
656
+ "actor": "lower"
657
+ },
658
+ {
659
+ "date": "2009-04-06 20:00:00",
660
+ "action": "Considered in public hearing",
661
+ "updated_at": "2010-04-14 20:46:49",
662
+ "actor": "lower"
663
+ },
664
+ {
665
+ "date": "2009-04-06 20:00:00",
666
+ "action": "Scheduled for public hearing on . . .",
667
+ "updated_at": "2010-04-14 20:46:49",
668
+ "actor": "lower"
669
+ },
670
+ {
671
+ "date": "2009-03-22 20:00:00",
672
+ "action": "Referred to State Affairs",
673
+ "updated_at": "2010-04-14 20:46:49",
674
+ "actor": "lower"
675
+ },
676
+ {
677
+ "date": "2009-03-22 20:00:00",
678
+ "action": "Read first time",
679
+ "updated_at": "2010-04-14 20:46:49",
680
+ "actor": "lower"
681
+ },
682
+ {
683
+ "date": "2009-03-11 20:00:00",
684
+ "action": "Filed",
685
+ "updated_at": "2010-04-14 20:46:49",
686
+ "actor": "lower"
687
+ }
688
+ ],
689
+ "sponsors": [
690
+ {
691
+ "leg_id": 468,
692
+ "type": "coauthor",
693
+ "full_name": "Sheffield, Ralph"
694
+ },
695
+ {
696
+ "leg_id": 312,
697
+ "type": "coauthor",
698
+ "full_name": "Phillips, Larry"
699
+ },
700
+ {
701
+ "leg_id": 343,
702
+ "type": "coauthor",
703
+ "full_name": "Otto, John"
704
+ },
705
+ {
706
+ "leg_id": 371,
707
+ "type": "coauthor",
708
+ "full_name": "Orr, Rob"
709
+ },
710
+ {
711
+ "leg_id": 311,
712
+ "type": "coauthor",
713
+ "full_name": "Morrison, Geanie"
714
+ },
715
+ {
716
+ "leg_id": 369,
717
+ "type": "coauthor",
718
+ "full_name": "Miller, Sid"
719
+ },
720
+ {
721
+ "leg_id": 450,
722
+ "type": "coauthor",
723
+ "full_name": "McReynolds, Jim"
724
+ },
725
+ {
726
+ "leg_id": 394,
727
+ "type": "coauthor",
728
+ "full_name": "Madden, Jerry"
729
+ },
730
+ {
731
+ "leg_id": 341,
732
+ "type": "coauthor",
733
+ "full_name": "Laubenberg, Jodie"
734
+ },
735
+ {
736
+ "leg_id": 417,
737
+ "type": "coauthor",
738
+ "full_name": "Kuempel, Edmund"
739
+ },
740
+ {
741
+ "leg_id": 293,
742
+ "type": "coauthor",
743
+ "full_name": "Kolkhorst, Lois W."
744
+ },
745
+ {
746
+ "leg_id": 346,
747
+ "type": "coauthor",
748
+ "full_name": "Kleinschmidt, Tim"
749
+ },
750
+ {
751
+ "leg_id": 469,
752
+ "type": "coauthor",
753
+ "full_name": "King, Susan"
754
+ },
755
+ {
756
+ "leg_id": 415,
757
+ "type": "coauthor",
758
+ "full_name": "King, Phil"
759
+ },
760
+ {
761
+ "leg_id": 362,
762
+ "type": "coauthor",
763
+ "full_name": "Keffer, Jim"
764
+ },
765
+ {
766
+ "leg_id": 447,
767
+ "type": "coauthor",
768
+ "full_name": "Hughes, Bryan"
769
+ },
770
+ {
771
+ "leg_id": 445,
772
+ "type": "coauthor",
773
+ "full_name": "Homer, Mark"
774
+ },
775
+ {
776
+ "leg_id": 391,
777
+ "type": "coauthor",
778
+ "full_name": "Hamilton, Mike "
779
+ },
780
+ {
781
+ "leg_id": 347,
782
+ "type": "coauthor",
783
+ "full_name": "Gonzalez Toureilles, Yvonne"
784
+ },
785
+ {
786
+ "leg_id": 339,
787
+ "type": "coauthor",
788
+ "full_name": "Frost, Stephen"
789
+ },
790
+ {
791
+ "leg_id": 379,
792
+ "type": "coauthor",
793
+ "full_name": "Flynn, Dan"
794
+ },
795
+ {
796
+ "leg_id": 461,
797
+ "type": "coauthor",
798
+ "full_name": "Darby, Drew"
799
+ },
800
+ {
801
+ "leg_id": 448,
802
+ "type": "coauthor",
803
+ "full_name": "Creighton, Brandon"
804
+ },
805
+ {
806
+ "leg_id": 449,
807
+ "type": "coauthor",
808
+ "full_name": "Cook, Byron"
809
+ },
810
+ {
811
+ "leg_id": 443,
812
+ "type": "coauthor",
813
+ "full_name": "Chisum, Warren"
814
+ },
815
+ {
816
+ "leg_id": 430,
817
+ "type": "coauthor",
818
+ "full_name": "Brown, Fred"
819
+ },
820
+ {
821
+ "leg_id": 457,
822
+ "type": "coauthor",
823
+ "full_name": "Aycock, Jimmie Don"
824
+ },
825
+ {
826
+ "leg_id": 377,
827
+ "type": "coauthor",
828
+ "full_name": "Anderson, Charles "
829
+ },
830
+ {
831
+ "leg_id": 399,
832
+ "type": "author",
833
+ "full_name": "Jones, Delwin"
834
+ },
835
+ {
836
+ "leg_id": 331,
837
+ "type": "author",
838
+ "full_name": "Hardcastle, Rick"
839
+ },
840
+ {
841
+ "leg_id": 320,
842
+ "type": "author",
843
+ "full_name": "Hopson, Chuck"
844
+ },
845
+ {
846
+ "leg_id": 437,
847
+ "type": "author",
848
+ "full_name": "Heflin, Joe"
849
+ },
850
+ {
851
+ "leg_id": 372,
852
+ "type": "author",
853
+ "full_name": "Swinford, David"
854
+ }
855
+ ],
856
+ "chamber": "lower",
857
+ "state": "tx",
858
+ "session": "81",
859
+ "sources": [
860
+ {
861
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/house_bills/HB03800_HB03899/HB 3820.xml",
862
+ "retrieved": "2010-06-07 17:39:30"
863
+ },
864
+ {
865
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB03800_HB03899",
866
+ "retrieved": "2010-06-07 17:39:34"
867
+ }
868
+ ],
869
+ "versions": [
870
+ {
871
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB03800_HB03899/HB03820I.HTM",
872
+ "name": "HB03820I",
873
+ "updated_at": "2010-04-17 09:55:08"
874
+ }
875
+ ],
876
+ "bill_id": "HB 3820"
877
+ },
878
+ {
879
+ "votes": [
880
+ {
881
+ "other_count": 0,
882
+ "sources": [],
883
+ "yes_count": 133,
884
+ "updated_at": "2010-04-20 12:49:29",
885
+ "motion": "final passage",
886
+ "chamber": "lower",
887
+ "passed": true,
888
+ "date": "2009-05-07 20:00:00",
889
+ "vote_id": 18976,
890
+ "no_count": 3
891
+ }
892
+ ],
893
+ "last_action": "2009-05-12 20:00:00",
894
+ "first_action": "2009-02-22 19:00:00",
895
+ "title": "Relating to limited agricultural cooperatives; providing penalties.",
896
+ "updated_at": "2010-04-20 12:49:29",
897
+ "actions": [
898
+ {
899
+ "date": "2009-05-12 20:00:00",
900
+ "action": "Referred to Agriculture & Rural Affairs",
901
+ "updated_at": "2010-04-14 20:23:46",
902
+ "actor": "upper"
903
+ },
904
+ {
905
+ "date": "2009-05-12 20:00:00",
906
+ "action": "Read first time",
907
+ "updated_at": "2010-04-14 20:23:46",
908
+ "actor": "upper"
909
+ },
910
+ {
911
+ "date": "2009-05-10 20:00:00",
912
+ "action": "Received from the House",
913
+ "updated_at": "2010-04-14 20:23:46",
914
+ "actor": "upper"
915
+ },
916
+ {
917
+ "date": "2009-05-10 20:00:00",
918
+ "action": "Reported engrossed",
919
+ "updated_at": "2010-04-14 20:23:46",
920
+ "actor": "lower"
921
+ },
922
+ {
923
+ "date": "2009-05-07 20:00:00",
924
+ "action": "Statement(s) of vote recorded in Journal",
925
+ "updated_at": "2010-04-14 20:23:46",
926
+ "actor": "lower"
927
+ },
928
+ {
929
+ "date": "2009-05-07 20:00:00",
930
+ "action": "Record vote",
931
+ "updated_at": "2010-04-14 20:23:46",
932
+ "actor": "lower"
933
+ },
934
+ {
935
+ "date": "2009-05-07 20:00:00",
936
+ "action": "Passed",
937
+ "updated_at": "2010-04-14 20:23:46",
938
+ "actor": "lower"
939
+ },
940
+ {
941
+ "date": "2009-05-07 20:00:00",
942
+ "action": "Read 3rd time",
943
+ "updated_at": "2010-04-14 20:23:46",
944
+ "actor": "lower"
945
+ },
946
+ {
947
+ "date": "2009-05-06 20:00:00",
948
+ "action": "Passed to engrossment",
949
+ "updated_at": "2010-04-14 20:23:46",
950
+ "actor": "lower"
951
+ },
952
+ {
953
+ "date": "2009-05-06 20:00:00",
954
+ "action": "Read 2nd time",
955
+ "updated_at": "2010-04-14 20:23:46",
956
+ "actor": "lower"
957
+ },
958
+ {
959
+ "date": "2009-05-05 20:00:00",
960
+ "action": "Placed on General State Calendar",
961
+ "updated_at": "2010-04-14 20:23:46",
962
+ "actor": "lower"
963
+ },
964
+ {
965
+ "date": "2009-05-03 20:00:00",
966
+ "action": "Considered in Calendars",
967
+ "updated_at": "2010-04-14 20:23:46",
968
+ "actor": "lower"
969
+ },
970
+ {
971
+ "date": "2009-04-05 20:00:00",
972
+ "action": "Committee report sent to Calendars",
973
+ "updated_at": "2010-04-14 20:23:46",
974
+ "actor": "lower"
975
+ },
976
+ {
977
+ "date": "2009-04-02 20:00:00",
978
+ "action": "Committee report printed and distributed",
979
+ "updated_at": "2010-04-14 20:23:46",
980
+ "actor": "lower"
981
+ },
982
+ {
983
+ "date": "2009-04-02 20:00:00",
984
+ "action": "Comte report filed with Committee Coordinator",
985
+ "updated_at": "2010-04-14 20:23:46",
986
+ "actor": "lower"
987
+ },
988
+ {
989
+ "date": "2009-03-23 20:00:00",
990
+ "action": "Reported favorably as substituted",
991
+ "updated_at": "2010-04-14 20:23:46",
992
+ "actor": "lower"
993
+ },
994
+ {
995
+ "date": "2009-03-23 20:00:00",
996
+ "action": "Committee substitute considered in committee",
997
+ "updated_at": "2010-04-14 20:23:46",
998
+ "actor": "lower"
999
+ },
1000
+ {
1001
+ "date": "2009-03-23 20:00:00",
1002
+ "action": "Considered in public hearing",
1003
+ "updated_at": "2010-04-14 20:23:46",
1004
+ "actor": "lower"
1005
+ },
1006
+ {
1007
+ "date": "2009-03-16 20:00:00",
1008
+ "action": "Left pending in committee",
1009
+ "updated_at": "2010-04-14 20:23:46",
1010
+ "actor": "lower"
1011
+ },
1012
+ {
1013
+ "date": "2009-03-16 20:00:00",
1014
+ "action": "Testimony taken/registration(s) recorded in committee",
1015
+ "updated_at": "2010-04-14 20:23:46",
1016
+ "actor": "lower"
1017
+ },
1018
+ {
1019
+ "date": "2009-03-16 20:00:00",
1020
+ "action": "Committee substitute considered in committee",
1021
+ "updated_at": "2010-04-14 20:23:46",
1022
+ "actor": "lower"
1023
+ },
1024
+ {
1025
+ "date": "2009-03-16 20:00:00",
1026
+ "action": "Considered in public hearing",
1027
+ "updated_at": "2010-04-14 20:23:46",
1028
+ "actor": "lower"
1029
+ },
1030
+ {
1031
+ "date": "2009-03-16 20:00:00",
1032
+ "action": "Scheduled for public hearing on . . .",
1033
+ "updated_at": "2010-04-14 20:23:46",
1034
+ "actor": "lower"
1035
+ },
1036
+ {
1037
+ "date": "2009-03-02 19:00:00",
1038
+ "action": "Referred to Agriculture & Livestock",
1039
+ "updated_at": "2010-04-14 20:23:46",
1040
+ "actor": "lower"
1041
+ },
1042
+ {
1043
+ "date": "2009-03-02 19:00:00",
1044
+ "action": "Read first time",
1045
+ "updated_at": "2010-04-14 20:23:46",
1046
+ "actor": "lower"
1047
+ },
1048
+ {
1049
+ "date": "2009-02-22 19:00:00",
1050
+ "action": "Filed",
1051
+ "updated_at": "2010-04-14 20:23:46",
1052
+ "actor": "lower"
1053
+ }
1054
+ ],
1055
+ "sponsors": [
1056
+ {
1057
+ "leg_id": 372,
1058
+ "type": "author",
1059
+ "full_name": "Swinford, David"
1060
+ }
1061
+ ],
1062
+ "chamber": "lower",
1063
+ "state": "tx",
1064
+ "session": "81",
1065
+ "sources": [
1066
+ {
1067
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/house_bills/HB01600_HB01699/HB 1617.xml",
1068
+ "retrieved": "2010-06-07 13:04:23"
1069
+ },
1070
+ {
1071
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB01600_HB01699",
1072
+ "retrieved": "2010-06-07 13:04:27"
1073
+ }
1074
+ ],
1075
+ "versions": [
1076
+ {
1077
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB01600_HB01699/HB01617E.HTM",
1078
+ "name": "HB01617E",
1079
+ "updated_at": "2010-04-17 09:50:01"
1080
+ },
1081
+ {
1082
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB01600_HB01699/HB01617H.HTM",
1083
+ "name": "HB01617H",
1084
+ "updated_at": "2010-04-17 09:50:01"
1085
+ },
1086
+ {
1087
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB01600_HB01699/HB01617I.HTM",
1088
+ "name": "HB01617I",
1089
+ "updated_at": "2010-04-17 09:50:01"
1090
+ }
1091
+ ],
1092
+ "bill_id": "HB 1617"
1093
+ },
1094
+ {
1095
+ "votes": [],
1096
+ "last_action": "2009-05-21 20:00:00",
1097
+ "first_action": "2009-02-18 19:00:00",
1098
+ "title": "Relating to small and large employer health group cooperatives.",
1099
+ "updated_at": "2010-04-17 09:52:55",
1100
+ "actions": [
1101
+ {
1102
+ "date": "2009-05-21 20:00:00",
1103
+ "action": "Placed on General State Calendar",
1104
+ "updated_at": "2010-04-14 20:36:30",
1105
+ "actor": "lower"
1106
+ },
1107
+ {
1108
+ "date": "2009-05-19 20:00:00",
1109
+ "action": "Considered in Calendars",
1110
+ "updated_at": "2010-04-14 20:36:30",
1111
+ "actor": "lower"
1112
+ },
1113
+ {
1114
+ "date": "2009-05-18 20:00:00",
1115
+ "action": "Committee report sent to Calendars",
1116
+ "updated_at": "2010-04-14 20:36:30",
1117
+ "actor": "lower"
1118
+ },
1119
+ {
1120
+ "date": "2009-05-17 20:00:00",
1121
+ "action": "Committee report printed and distributed",
1122
+ "updated_at": "2010-04-14 20:36:30",
1123
+ "actor": "lower"
1124
+ },
1125
+ {
1126
+ "date": "2009-05-17 20:00:00",
1127
+ "action": "Comte report filed with Committee Coordinator",
1128
+ "updated_at": "2010-04-14 20:36:30",
1129
+ "actor": "lower"
1130
+ },
1131
+ {
1132
+ "date": "2009-05-06 20:00:00",
1133
+ "action": "Reported favorably as amended",
1134
+ "updated_at": "2010-04-14 20:36:30",
1135
+ "actor": "lower"
1136
+ },
1137
+ {
1138
+ "date": "2009-05-06 20:00:00",
1139
+ "action": "Amendment(s) considered in committee",
1140
+ "updated_at": "2010-04-14 20:36:30",
1141
+ "actor": "lower"
1142
+ },
1143
+ {
1144
+ "date": "2009-05-06 20:00:00",
1145
+ "action": "Considered in formal meeting",
1146
+ "updated_at": "2010-04-14 20:36:30",
1147
+ "actor": "lower"
1148
+ },
1149
+ {
1150
+ "date": "2009-05-04 20:00:00",
1151
+ "action": "Left pending in committee",
1152
+ "updated_at": "2010-04-14 20:36:30",
1153
+ "actor": "lower"
1154
+ },
1155
+ {
1156
+ "date": "2009-05-04 20:00:00",
1157
+ "action": "Amendment(s) considered in committee",
1158
+ "updated_at": "2010-04-14 20:36:30",
1159
+ "actor": "lower"
1160
+ },
1161
+ {
1162
+ "date": "2009-05-04 20:00:00",
1163
+ "action": "Testimony taken/registration(s) recorded in committee",
1164
+ "updated_at": "2010-04-14 20:36:30",
1165
+ "actor": "lower"
1166
+ },
1167
+ {
1168
+ "date": "2009-05-04 20:00:00",
1169
+ "action": "Considered in public hearing",
1170
+ "updated_at": "2010-04-14 20:36:30",
1171
+ "actor": "lower"
1172
+ },
1173
+ {
1174
+ "date": "2009-05-04 20:00:00",
1175
+ "action": "Scheduled for public hearing on . . .",
1176
+ "updated_at": "2010-04-14 20:36:30",
1177
+ "actor": "lower"
1178
+ },
1179
+ {
1180
+ "date": "2009-04-15 20:00:00",
1181
+ "action": "Referred to Insurance",
1182
+ "updated_at": "2010-04-14 20:36:30",
1183
+ "actor": "lower"
1184
+ },
1185
+ {
1186
+ "date": "2009-04-15 20:00:00",
1187
+ "action": "Read first time",
1188
+ "updated_at": "2010-04-14 20:36:30",
1189
+ "actor": "lower"
1190
+ },
1191
+ {
1192
+ "date": "2009-04-08 20:00:00",
1193
+ "action": "Received from the Senate",
1194
+ "updated_at": "2010-04-14 20:36:30",
1195
+ "actor": "lower"
1196
+ },
1197
+ {
1198
+ "date": "2009-04-08 20:00:00",
1199
+ "action": "Reported engrossed",
1200
+ "updated_at": "2010-04-14 20:36:30",
1201
+ "actor": "upper"
1202
+ },
1203
+ {
1204
+ "date": "2009-04-08 20:00:00",
1205
+ "action": "Record vote",
1206
+ "updated_at": "2010-04-14 20:36:30",
1207
+ "actor": "upper"
1208
+ },
1209
+ {
1210
+ "date": "2009-04-08 20:00:00",
1211
+ "action": "Passed",
1212
+ "updated_at": "2010-04-14 20:36:30",
1213
+ "actor": "upper"
1214
+ },
1215
+ {
1216
+ "date": "2009-04-08 20:00:00",
1217
+ "action": "Read 3rd time",
1218
+ "updated_at": "2010-04-14 20:36:30",
1219
+ "actor": "upper"
1220
+ },
1221
+ {
1222
+ "date": "2009-04-08 20:00:00",
1223
+ "action": "Record vote",
1224
+ "updated_at": "2010-04-14 20:36:30",
1225
+ "actor": "upper"
1226
+ },
1227
+ {
1228
+ "date": "2009-04-08 20:00:00",
1229
+ "action": "Three day rule suspended",
1230
+ "updated_at": "2010-04-14 20:36:30",
1231
+ "actor": "upper"
1232
+ },
1233
+ {
1234
+ "date": "2009-04-08 20:00:00",
1235
+ "action": "Vote recorded in Journal",
1236
+ "updated_at": "2010-04-14 20:36:30",
1237
+ "actor": "upper"
1238
+ },
1239
+ {
1240
+ "date": "2009-04-08 20:00:00",
1241
+ "action": "Read 2nd time & passed to engrossment",
1242
+ "updated_at": "2010-04-14 20:36:30",
1243
+ "actor": "upper"
1244
+ },
1245
+ {
1246
+ "date": "2009-04-08 20:00:00",
1247
+ "action": "Laid before the Senate",
1248
+ "updated_at": "2010-04-14 20:36:30",
1249
+ "actor": "upper"
1250
+ },
1251
+ {
1252
+ "date": "2009-04-08 20:00:00",
1253
+ "action": "Placed on local & uncontested calendar",
1254
+ "updated_at": "2010-04-14 20:36:30",
1255
+ "actor": "upper"
1256
+ },
1257
+ {
1258
+ "date": "2009-03-25 20:00:00",
1259
+ "action": "Committee report printed and distributed",
1260
+ "updated_at": "2010-04-14 20:36:30",
1261
+ "actor": "upper"
1262
+ },
1263
+ {
1264
+ "date": "2009-03-25 20:00:00",
1265
+ "action": "Recommended for local & uncontested calendar",
1266
+ "updated_at": "2010-04-14 20:36:30",
1267
+ "actor": "upper"
1268
+ },
1269
+ {
1270
+ "date": "2009-03-25 20:00:00",
1271
+ "action": "Reported favorably as substituted",
1272
+ "updated_at": "2010-04-14 20:36:30",
1273
+ "actor": "upper"
1274
+ },
1275
+ {
1276
+ "date": "2009-03-22 20:00:00",
1277
+ "action": "Considered in public hearing",
1278
+ "updated_at": "2010-04-14 20:36:30",
1279
+ "actor": "upper"
1280
+ },
1281
+ {
1282
+ "date": "2009-03-18 20:00:00",
1283
+ "action": "Left pending in committee",
1284
+ "updated_at": "2010-04-14 20:36:30",
1285
+ "actor": "upper"
1286
+ },
1287
+ {
1288
+ "date": "2009-03-18 20:00:00",
1289
+ "action": "Testimony taken in committee",
1290
+ "updated_at": "2010-04-14 20:36:30",
1291
+ "actor": "upper"
1292
+ },
1293
+ {
1294
+ "date": "2009-03-18 20:00:00",
1295
+ "action": "Considered in public hearing",
1296
+ "updated_at": "2010-04-14 20:36:30",
1297
+ "actor": "upper"
1298
+ },
1299
+ {
1300
+ "date": "2009-03-18 20:00:00",
1301
+ "action": "Scheduled for public hearing on . . .",
1302
+ "updated_at": "2010-04-14 20:36:30",
1303
+ "actor": "upper"
1304
+ },
1305
+ {
1306
+ "date": "2009-03-17 20:00:00",
1307
+ "action": "Co-author authorized",
1308
+ "updated_at": "2010-04-14 20:36:30",
1309
+ "actor": "upper"
1310
+ },
1311
+ {
1312
+ "date": "2009-03-08 20:00:00",
1313
+ "action": "Referred to State Affairs",
1314
+ "updated_at": "2010-04-14 20:36:30",
1315
+ "actor": "upper"
1316
+ },
1317
+ {
1318
+ "date": "2009-03-08 20:00:00",
1319
+ "action": "Read first time",
1320
+ "updated_at": "2010-04-14 20:36:30",
1321
+ "actor": "upper"
1322
+ },
1323
+ {
1324
+ "date": "2009-02-18 19:00:00",
1325
+ "action": "Filed",
1326
+ "updated_at": "2010-04-14 20:36:30",
1327
+ "actor": "upper"
1328
+ },
1329
+ {
1330
+ "date": "2009-02-18 19:00:00",
1331
+ "action": "Received by the Secretary of the Senate",
1332
+ "updated_at": "2010-04-14 20:36:30",
1333
+ "actor": "upper"
1334
+ }
1335
+ ],
1336
+ "sponsors": [
1337
+ {
1338
+ "leg_id": 354,
1339
+ "type": "coauthor",
1340
+ "full_name": "Jane Nelson"
1341
+ },
1342
+ {
1343
+ "leg_id": 307,
1344
+ "type": "author",
1345
+ "full_name": "Kip Averitt"
1346
+ }
1347
+ ],
1348
+ "chamber": "upper",
1349
+ "state": "tx",
1350
+ "session": "81",
1351
+ "sources": [
1352
+ {
1353
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/senate_bills/SB00900_SB00999/SB 972.xml",
1354
+ "retrieved": "2010-06-07 06:09:41"
1355
+ },
1356
+ {
1357
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999",
1358
+ "retrieved": "2010-06-07 06:09:45"
1359
+ }
1360
+ ],
1361
+ "versions": [
1362
+ {
1363
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999/SB00972E.HTM",
1364
+ "name": "SB00972E",
1365
+ "updated_at": "2010-04-17 09:52:55"
1366
+ },
1367
+ {
1368
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999/SB00972H.HTM",
1369
+ "name": "SB00972H",
1370
+ "updated_at": "2010-04-17 09:52:55"
1371
+ },
1372
+ {
1373
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999/SB00972I.HTM",
1374
+ "name": "SB00972I",
1375
+ "updated_at": "2010-04-17 09:52:55"
1376
+ },
1377
+ {
1378
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB00900_SB00999/SB00972S.HTM",
1379
+ "name": "SB00972S",
1380
+ "updated_at": "2010-04-17 09:52:55"
1381
+ }
1382
+ ],
1383
+ "bill_id": "SB 972"
1384
+ },
1385
+ {
1386
+ "votes": [],
1387
+ "last_action": "2009-03-25 20:00:00",
1388
+ "first_action": "2009-03-12 20:00:00",
1389
+ "title": "Relating to the recovery of transmission costs imposed on electric cooperatives and certain utilities in ERCOT.",
1390
+ "updated_at": "2010-04-17 09:48:32",
1391
+ "actions": [
1392
+ {
1393
+ "date": "2009-03-25 20:00:00",
1394
+ "action": "Referred to State Affairs",
1395
+ "updated_at": "2010-04-14 20:15:05",
1396
+ "actor": "lower"
1397
+ },
1398
+ {
1399
+ "date": "2009-03-25 20:00:00",
1400
+ "action": "Read first time",
1401
+ "updated_at": "2010-04-14 20:15:05",
1402
+ "actor": "lower"
1403
+ },
1404
+ {
1405
+ "date": "2009-03-12 20:00:00",
1406
+ "action": "Filed",
1407
+ "updated_at": "2010-04-14 20:15:05",
1408
+ "actor": "lower"
1409
+ }
1410
+ ],
1411
+ "sponsors": [],
1412
+ "chamber": "lower",
1413
+ "state": "tx",
1414
+ "session": "81",
1415
+ "sources": [
1416
+ {
1417
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/house_bills/HB04600_HB04699/HB 4645.xml",
1418
+ "retrieved": "2010-06-07 19:23:15"
1419
+ },
1420
+ {
1421
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB04600_HB04699",
1422
+ "retrieved": "2010-06-07 19:23:20"
1423
+ }
1424
+ ],
1425
+ "versions": [
1426
+ {
1427
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB04600_HB04699/HB04645I.HTM",
1428
+ "name": "HB04645I",
1429
+ "updated_at": "2010-04-17 09:48:32"
1430
+ }
1431
+ ],
1432
+ "bill_id": "HB 4645"
1433
+ },
1434
+ {
1435
+ "votes": [],
1436
+ "last_action": "2009-05-10 20:00:00",
1437
+ "first_action": "2009-03-12 20:00:00",
1438
+ "title": "Relating to the exemption of certain electric cooperatives from certain regulations.",
1439
+ "updated_at": "2010-04-17 09:52:45",
1440
+ "actions": [
1441
+ {
1442
+ "date": "2009-05-10 20:00:00",
1443
+ "action": "Placed on General State Calendar",
1444
+ "updated_at": "2010-04-14 20:35:30",
1445
+ "actor": "lower"
1446
+ },
1447
+ {
1448
+ "date": "2009-05-07 20:00:00",
1449
+ "action": "Considered in Calendars",
1450
+ "updated_at": "2010-04-14 20:35:30",
1451
+ "actor": "lower"
1452
+ },
1453
+ {
1454
+ "date": "2009-05-04 20:00:00",
1455
+ "action": "Committee report sent to Calendars",
1456
+ "updated_at": "2010-04-14 20:35:30",
1457
+ "actor": "lower"
1458
+ },
1459
+ {
1460
+ "date": "2009-05-03 20:00:00",
1461
+ "action": "Committee report printed and distributed",
1462
+ "updated_at": "2010-04-14 20:35:30",
1463
+ "actor": "lower"
1464
+ },
1465
+ {
1466
+ "date": "2009-05-03 20:00:00",
1467
+ "action": "Comte report filed with Committee Coordinator",
1468
+ "updated_at": "2010-04-14 20:35:30",
1469
+ "actor": "lower"
1470
+ },
1471
+ {
1472
+ "date": "2009-04-29 20:00:00",
1473
+ "action": "Reported favorably as substituted",
1474
+ "updated_at": "2010-04-14 20:35:30",
1475
+ "actor": "lower"
1476
+ },
1477
+ {
1478
+ "date": "2009-04-29 20:00:00",
1479
+ "action": "Committee substitute considered in committee",
1480
+ "updated_at": "2010-04-14 20:35:30",
1481
+ "actor": "lower"
1482
+ },
1483
+ {
1484
+ "date": "2009-04-29 20:00:00",
1485
+ "action": "Considered in formal meeting",
1486
+ "updated_at": "2010-04-14 20:35:30",
1487
+ "actor": "lower"
1488
+ },
1489
+ {
1490
+ "date": "2009-04-27 20:00:00",
1491
+ "action": "Left pending in committee",
1492
+ "updated_at": "2010-04-14 20:35:30",
1493
+ "actor": "lower"
1494
+ },
1495
+ {
1496
+ "date": "2009-04-27 20:00:00",
1497
+ "action": "Committee substitute considered in committee",
1498
+ "updated_at": "2010-04-14 20:35:30",
1499
+ "actor": "lower"
1500
+ },
1501
+ {
1502
+ "date": "2009-04-27 20:00:00",
1503
+ "action": "Testimony taken/registration(s) recorded in committee",
1504
+ "updated_at": "2010-04-14 20:35:30",
1505
+ "actor": "lower"
1506
+ },
1507
+ {
1508
+ "date": "2009-04-27 20:00:00",
1509
+ "action": "Considered in public hearing",
1510
+ "updated_at": "2010-04-14 20:35:30",
1511
+ "actor": "lower"
1512
+ },
1513
+ {
1514
+ "date": "2009-04-27 20:00:00",
1515
+ "action": "Scheduled for public hearing on . . .",
1516
+ "updated_at": "2010-04-14 20:35:30",
1517
+ "actor": "lower"
1518
+ },
1519
+ {
1520
+ "date": "2009-03-22 20:00:00",
1521
+ "action": "Referred to State Affairs",
1522
+ "updated_at": "2010-04-14 20:35:30",
1523
+ "actor": "lower"
1524
+ },
1525
+ {
1526
+ "date": "2009-03-22 20:00:00",
1527
+ "action": "Read first time",
1528
+ "updated_at": "2010-04-14 20:35:30",
1529
+ "actor": "lower"
1530
+ },
1531
+ {
1532
+ "date": "2009-03-12 20:00:00",
1533
+ "action": "Filed",
1534
+ "updated_at": "2010-04-14 20:35:30",
1535
+ "actor": "lower"
1536
+ }
1537
+ ],
1538
+ "sponsors": [
1539
+ {
1540
+ "leg_id": 443,
1541
+ "type": "author",
1542
+ "full_name": "Chisum, Warren"
1543
+ }
1544
+ ],
1545
+ "chamber": "lower",
1546
+ "state": "tx",
1547
+ "session": "81",
1548
+ "sources": [
1549
+ {
1550
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/house_bills/HB04100_HB04199/HB 4107.xml",
1551
+ "retrieved": "2010-06-07 18:15:55"
1552
+ },
1553
+ {
1554
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB04100_HB04199",
1555
+ "retrieved": "2010-06-07 18:15:59"
1556
+ }
1557
+ ],
1558
+ "versions": [
1559
+ {
1560
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB04100_HB04199/HB04107H.HTM",
1561
+ "name": "HB04107H",
1562
+ "updated_at": "2010-04-17 09:52:45"
1563
+ },
1564
+ {
1565
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB04100_HB04199/HB04107I.HTM",
1566
+ "name": "HB04107I",
1567
+ "updated_at": "2010-04-17 09:52:45"
1568
+ }
1569
+ ],
1570
+ "bill_id": "HB 4107"
1571
+ },
1572
+ {
1573
+ "votes": [],
1574
+ "last_action": "2009-05-07 20:00:00",
1575
+ "first_action": "2009-03-04 19:00:00",
1576
+ "title": "Relating to small and large employer health group cooperatives.",
1577
+ "updated_at": "2010-04-17 09:52:50",
1578
+ "actions": [
1579
+ {
1580
+ "date": "2009-05-07 20:00:00",
1581
+ "action": "Placed on General State Calendar",
1582
+ "updated_at": "2010-04-14 20:36:05",
1583
+ "actor": "lower"
1584
+ },
1585
+ {
1586
+ "date": "2009-05-05 20:00:00",
1587
+ "action": "Considered in Calendars",
1588
+ "updated_at": "2010-04-14 20:36:05",
1589
+ "actor": "lower"
1590
+ },
1591
+ {
1592
+ "date": "2009-04-28 20:00:00",
1593
+ "action": "Committee report sent to Calendars",
1594
+ "updated_at": "2010-04-14 20:36:05",
1595
+ "actor": "lower"
1596
+ },
1597
+ {
1598
+ "date": "2009-04-27 20:00:00",
1599
+ "action": "Comte report filed with Committee Coordinator",
1600
+ "updated_at": "2010-04-14 20:36:05",
1601
+ "actor": "lower"
1602
+ },
1603
+ {
1604
+ "date": "2009-04-27 20:00:00",
1605
+ "action": "Committee report printed and distributed",
1606
+ "updated_at": "2010-04-14 20:36:05",
1607
+ "actor": "lower"
1608
+ },
1609
+ {
1610
+ "date": "2009-04-08 20:00:00",
1611
+ "action": "Scheduled for formal meeting on . . .",
1612
+ "updated_at": "2010-04-14 20:36:05",
1613
+ "actor": "lower"
1614
+ },
1615
+ {
1616
+ "date": "2009-04-08 20:00:00",
1617
+ "action": "Reported favorably as substituted",
1618
+ "updated_at": "2010-04-14 20:36:05",
1619
+ "actor": "lower"
1620
+ },
1621
+ {
1622
+ "date": "2009-04-08 20:00:00",
1623
+ "action": "Amendment(s) considered in committee",
1624
+ "updated_at": "2010-04-14 20:36:05",
1625
+ "actor": "lower"
1626
+ },
1627
+ {
1628
+ "date": "2009-04-08 20:00:00",
1629
+ "action": "Committee substitute considered in committee",
1630
+ "updated_at": "2010-04-14 20:36:05",
1631
+ "actor": "lower"
1632
+ },
1633
+ {
1634
+ "date": "2009-04-08 20:00:00",
1635
+ "action": "Considered in formal meeting",
1636
+ "updated_at": "2010-04-14 20:36:05",
1637
+ "actor": "lower"
1638
+ },
1639
+ {
1640
+ "date": "2009-03-16 20:00:00",
1641
+ "action": "Considered in public hearing",
1642
+ "updated_at": "2010-04-14 20:36:05",
1643
+ "actor": "lower"
1644
+ },
1645
+ {
1646
+ "date": "2009-03-16 20:00:00",
1647
+ "action": "Testimony taken/registration(s) recorded in committee",
1648
+ "updated_at": "2010-04-14 20:36:05",
1649
+ "actor": "lower"
1650
+ },
1651
+ {
1652
+ "date": "2009-03-16 20:00:00",
1653
+ "action": "Committee substitute considered in committee",
1654
+ "updated_at": "2010-04-14 20:36:05",
1655
+ "actor": "lower"
1656
+ },
1657
+ {
1658
+ "date": "2009-03-16 20:00:00",
1659
+ "action": "Left pending in committee",
1660
+ "updated_at": "2010-04-14 20:36:05",
1661
+ "actor": "lower"
1662
+ },
1663
+ {
1664
+ "date": "2009-03-16 20:00:00",
1665
+ "action": "Scheduled for public hearing on . . .",
1666
+ "updated_at": "2010-04-14 20:36:05",
1667
+ "actor": "lower"
1668
+ },
1669
+ {
1670
+ "date": "2009-03-11 20:00:00",
1671
+ "action": "Referred to Insurance",
1672
+ "updated_at": "2010-04-14 20:36:05",
1673
+ "actor": "lower"
1674
+ },
1675
+ {
1676
+ "date": "2009-03-11 20:00:00",
1677
+ "action": "Read first time",
1678
+ "updated_at": "2010-04-14 20:36:05",
1679
+ "actor": "lower"
1680
+ },
1681
+ {
1682
+ "date": "2009-03-04 19:00:00",
1683
+ "action": "Filed",
1684
+ "updated_at": "2010-04-14 20:36:05",
1685
+ "actor": "lower"
1686
+ }
1687
+ ],
1688
+ "sponsors": [
1689
+ {
1690
+ "leg_id": 358,
1691
+ "type": "author",
1692
+ "full_name": "Smithee, John T."
1693
+ }
1694
+ ],
1695
+ "chamber": "lower",
1696
+ "state": "tx",
1697
+ "session": "81",
1698
+ "sources": [
1699
+ {
1700
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/house_bills/HB02500_HB02599/HB 2586.xml",
1701
+ "retrieved": "2010-06-07 15:05:27"
1702
+ },
1703
+ {
1704
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB02500_HB02599",
1705
+ "retrieved": "2010-06-07 15:05:31"
1706
+ }
1707
+ ],
1708
+ "versions": [
1709
+ {
1710
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB02500_HB02599/HB02586H.HTM",
1711
+ "name": "HB02586H",
1712
+ "updated_at": "2010-04-17 09:52:50"
1713
+ },
1714
+ {
1715
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/house_bills/HB02500_HB02599/HB02586I.HTM",
1716
+ "name": "HB02586I",
1717
+ "updated_at": "2010-04-17 09:52:50"
1718
+ }
1719
+ ],
1720
+ "bill_id": "HB 2586"
1721
+ },
1722
+ {
1723
+ "votes": [],
1724
+ "last_action": "2009-05-22 20:00:00",
1725
+ "first_action": "2009-03-12 20:00:00",
1726
+ "title": "Relating to the exemption of certain electric cooperatives from certain regulations.",
1727
+ "updated_at": "2010-04-17 09:53:05",
1728
+ "actions": [
1729
+ {
1730
+ "date": "2009-05-22 20:00:00",
1731
+ "action": "Placed on Major State Calendar",
1732
+ "updated_at": "2010-04-14 20:37:08",
1733
+ "actor": "lower"
1734
+ },
1735
+ {
1736
+ "date": "2009-05-20 20:00:00",
1737
+ "action": "Considered in Calendars",
1738
+ "updated_at": "2010-04-14 20:37:08",
1739
+ "actor": "lower"
1740
+ },
1741
+ {
1742
+ "date": "2009-05-19 20:00:00",
1743
+ "action": "Committee report sent to Calendars",
1744
+ "updated_at": "2010-04-14 20:37:08",
1745
+ "actor": "lower"
1746
+ },
1747
+ {
1748
+ "date": "2009-05-19 20:00:00",
1749
+ "action": "Committee report printed and distributed",
1750
+ "updated_at": "2010-04-14 20:37:08",
1751
+ "actor": "lower"
1752
+ },
1753
+ {
1754
+ "date": "2009-05-19 20:00:00",
1755
+ "action": "Comte report filed with Committee Coordinator",
1756
+ "updated_at": "2010-04-14 20:37:08",
1757
+ "actor": "lower"
1758
+ },
1759
+ {
1760
+ "date": "2009-05-17 20:00:00",
1761
+ "action": "Reported favorably w/o amendment(s)",
1762
+ "updated_at": "2010-04-14 20:37:08",
1763
+ "actor": "lower"
1764
+ },
1765
+ {
1766
+ "date": "2009-05-17 20:00:00",
1767
+ "action": "Considered in formal meeting",
1768
+ "updated_at": "2010-04-14 20:37:08",
1769
+ "actor": "lower"
1770
+ },
1771
+ {
1772
+ "date": "2009-05-03 20:00:00",
1773
+ "action": "Referred to State Affairs",
1774
+ "updated_at": "2010-04-14 20:37:08",
1775
+ "actor": "lower"
1776
+ },
1777
+ {
1778
+ "date": "2009-05-03 20:00:00",
1779
+ "action": "Read first time",
1780
+ "updated_at": "2010-04-14 20:37:08",
1781
+ "actor": "lower"
1782
+ },
1783
+ {
1784
+ "date": "2009-04-28 20:00:00",
1785
+ "action": "Received from the Senate",
1786
+ "updated_at": "2010-04-14 20:37:08",
1787
+ "actor": "lower"
1788
+ },
1789
+ {
1790
+ "date": "2009-04-28 20:00:00",
1791
+ "action": "Reported engrossed",
1792
+ "updated_at": "2010-04-14 20:37:08",
1793
+ "actor": "upper"
1794
+ },
1795
+ {
1796
+ "date": "2009-04-28 20:00:00",
1797
+ "action": "Record vote",
1798
+ "updated_at": "2010-04-14 20:37:08",
1799
+ "actor": "upper"
1800
+ },
1801
+ {
1802
+ "date": "2009-04-28 20:00:00",
1803
+ "action": "Passed",
1804
+ "updated_at": "2010-04-14 20:37:08",
1805
+ "actor": "upper"
1806
+ },
1807
+ {
1808
+ "date": "2009-04-28 20:00:00",
1809
+ "action": "Read 3rd time",
1810
+ "updated_at": "2010-04-14 20:37:08",
1811
+ "actor": "upper"
1812
+ },
1813
+ {
1814
+ "date": "2009-04-28 20:00:00",
1815
+ "action": "Record vote",
1816
+ "updated_at": "2010-04-14 20:37:08",
1817
+ "actor": "upper"
1818
+ },
1819
+ {
1820
+ "date": "2009-04-28 20:00:00",
1821
+ "action": "Three day rule suspended",
1822
+ "updated_at": "2010-04-14 20:37:08",
1823
+ "actor": "upper"
1824
+ },
1825
+ {
1826
+ "date": "2009-04-28 20:00:00",
1827
+ "action": "Vote recorded in Journal",
1828
+ "updated_at": "2010-04-14 20:37:08",
1829
+ "actor": "upper"
1830
+ },
1831
+ {
1832
+ "date": "2009-04-28 20:00:00",
1833
+ "action": "Passed to engrossment as amended",
1834
+ "updated_at": "2010-04-14 20:37:08",
1835
+ "actor": "upper"
1836
+ },
1837
+ {
1838
+ "date": "2009-04-28 20:00:00",
1839
+ "action": "Vote recorded in Journal",
1840
+ "updated_at": "2010-04-14 20:37:08",
1841
+ "actor": "upper"
1842
+ },
1843
+ {
1844
+ "date": "2009-04-28 20:00:00",
1845
+ "action": "Amended",
1846
+ "updated_at": "2010-04-14 20:37:08",
1847
+ "actor": "upper"
1848
+ },
1849
+ {
1850
+ "date": "2009-04-28 20:00:00",
1851
+ "action": "Amendment(s) offered",
1852
+ "updated_at": "2010-04-14 20:37:08",
1853
+ "actor": "upper"
1854
+ },
1855
+ {
1856
+ "date": "2009-04-28 20:00:00",
1857
+ "action": "Read 2nd time",
1858
+ "updated_at": "2010-04-14 20:37:08",
1859
+ "actor": "upper"
1860
+ },
1861
+ {
1862
+ "date": "2009-04-28 20:00:00",
1863
+ "action": "Rules suspended-Regular order of business",
1864
+ "updated_at": "2010-04-14 20:37:08",
1865
+ "actor": "upper"
1866
+ },
1867
+ {
1868
+ "date": "2009-04-26 20:00:00",
1869
+ "action": "Placed on intent calendar",
1870
+ "updated_at": "2010-04-14 20:37:08",
1871
+ "actor": "upper"
1872
+ },
1873
+ {
1874
+ "date": "2009-04-22 20:00:00",
1875
+ "action": "Committee report printed and distributed",
1876
+ "updated_at": "2010-04-14 20:37:08",
1877
+ "actor": "upper"
1878
+ },
1879
+ {
1880
+ "date": "2009-04-22 20:00:00",
1881
+ "action": "Recommended for local & uncontested calendar",
1882
+ "updated_at": "2010-04-14 20:37:08",
1883
+ "actor": "upper"
1884
+ },
1885
+ {
1886
+ "date": "2009-04-22 20:00:00",
1887
+ "action": "Reported favorably as substituted",
1888
+ "updated_at": "2010-04-14 20:37:08",
1889
+ "actor": "upper"
1890
+ },
1891
+ {
1892
+ "date": "2009-04-20 20:00:00",
1893
+ "action": "Considered in public hearing",
1894
+ "updated_at": "2010-04-14 20:37:08",
1895
+ "actor": "upper"
1896
+ },
1897
+ {
1898
+ "date": "2009-04-13 20:00:00",
1899
+ "action": "Left pending in committee",
1900
+ "updated_at": "2010-04-14 20:37:08",
1901
+ "actor": "upper"
1902
+ },
1903
+ {
1904
+ "date": "2009-04-13 20:00:00",
1905
+ "action": "Testimony taken in committee",
1906
+ "updated_at": "2010-04-14 20:37:08",
1907
+ "actor": "upper"
1908
+ },
1909
+ {
1910
+ "date": "2009-04-13 20:00:00",
1911
+ "action": "Considered in public hearing",
1912
+ "updated_at": "2010-04-14 20:37:08",
1913
+ "actor": "upper"
1914
+ },
1915
+ {
1916
+ "date": "2009-04-13 20:00:00",
1917
+ "action": "Scheduled for public hearing on . . .",
1918
+ "updated_at": "2010-04-14 20:37:08",
1919
+ "actor": "upper"
1920
+ },
1921
+ {
1922
+ "date": "2009-03-30 20:00:00",
1923
+ "action": "Referred to Natural Resources",
1924
+ "updated_at": "2010-04-14 20:37:08",
1925
+ "actor": "upper"
1926
+ },
1927
+ {
1928
+ "date": "2009-03-30 20:00:00",
1929
+ "action": "Read first time",
1930
+ "updated_at": "2010-04-14 20:37:08",
1931
+ "actor": "upper"
1932
+ },
1933
+ {
1934
+ "date": "2009-03-12 20:00:00",
1935
+ "action": "Filed",
1936
+ "updated_at": "2010-04-14 20:37:08",
1937
+ "actor": "upper"
1938
+ },
1939
+ {
1940
+ "date": "2009-03-12 20:00:00",
1941
+ "action": "Received by the Secretary of the Senate",
1942
+ "updated_at": "2010-04-14 20:37:08",
1943
+ "actor": "upper"
1944
+ }
1945
+ ],
1946
+ "sponsors": [
1947
+ {
1948
+ "leg_id": 292,
1949
+ "type": "author",
1950
+ "full_name": "Kel Seliger"
1951
+ }
1952
+ ],
1953
+ "chamber": "upper",
1954
+ "state": "tx",
1955
+ "session": "81",
1956
+ "sources": [
1957
+ {
1958
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billhistory/senate_bills/SB02200_SB02299/SB 2236.xml",
1959
+ "retrieved": "2010-06-07 08:49:58"
1960
+ },
1961
+ {
1962
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB02200_SB02299",
1963
+ "retrieved": "2010-06-07 08:50:00"
1964
+ }
1965
+ ],
1966
+ "versions": [
1967
+ {
1968
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB02200_SB02299/SB02236E.HTM",
1969
+ "name": "SB02236E",
1970
+ "updated_at": "2010-04-17 09:53:05"
1971
+ },
1972
+ {
1973
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB02200_SB02299/SB02236H.HTM",
1974
+ "name": "SB02236H",
1975
+ "updated_at": "2010-04-17 09:53:05"
1976
+ },
1977
+ {
1978
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB02200_SB02299/SB02236I.HTM",
1979
+ "name": "SB02236I",
1980
+ "updated_at": "2010-04-17 09:53:05"
1981
+ },
1982
+ {
1983
+ "url": "ftp://ftp.legis.state.tx.us/bills/81R/billtext/html/senate_bills/SB02200_SB02299/SB02236S.HTM",
1984
+ "name": "SB02236S",
1985
+ "updated_at": "2010-04-17 09:53:05"
1986
+ }
1987
+ ],
1988
+ "bill_id": "SB 2236"
1989
+ }
1990
+ ]