├── .gitignore ├── Influenza.ipynb ├── README.md ├── data ├── committee-membership-current.yaml ├── committees-current.yaml └── legislators-current.yaml ├── import ├── Makefile ├── edges.csv ├── filter_edge_csv.sh ├── filter_node_csv.sh ├── import_edges.cypher ├── import_nodes.cypher └── nodes.csv └── queries.cypher /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahuguet/influenza/35f4ea9a094db31eaf9ccbb15d696902e1c53c5c/.gitignore -------------------------------------------------------------------------------- /Influenza.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Creating a graph database for the Legislative Branch." 8 | ] 9 | }, 10 | { 11 | "cell_type": "code", 12 | "execution_count": 12, 13 | "metadata": { 14 | "collapsed": false, 15 | "scrolled": true 16 | }, 17 | "outputs": [], 18 | "source": [ 19 | "import yaml\n", 20 | "\n", 21 | "with open(\"/Users/sahuguet/Documents/Dev/Influenza/legislators-current.yaml\", 'r') as stream:\n", 22 | " try:\n", 23 | " data = yaml.load(stream)\n", 24 | " except yaml.YAMLError as exc:\n", 25 | " print(exc)" 26 | ] 27 | }, 28 | { 29 | "cell_type": "markdown", 30 | "metadata": {}, 31 | "source": [ 32 | "CREATE (:`Government Organization` { name:\"US Senate\"})\n", 33 | "CREATE (:`Government Organization` { name:\"House of Representatives\"})" 34 | ] 35 | }, 36 | { 37 | "cell_type": "code", 38 | "execution_count": 15, 39 | "metadata": { 40 | "collapsed": false 41 | }, 42 | "outputs": [ 43 | { 44 | "name": "stdout", 45 | "output_type": "stream", 46 | "text": [ 47 | "CREATE (:Person:Senator { name: \"Sherrod Brown\", party: \"Democrat\" })\n", 48 | "CREATE (:Person:Senator { name: \"Maria Cantwell\", party: \"Democrat\" })\n", 49 | "CREATE (:Person:Senator { name: \"Benjamin L. Cardin\", party: \"Democrat\" })\n", 50 | "CREATE (:Person:Senator { name: \"Thomas R. Carper\", party: \"Democrat\" })\n", 51 | "CREATE (:Person:Senator { name: \"Robert P. Casey, Jr.\", party: \"Democrat\" })\n", 52 | "CREATE (:Person:Senator { name: \"Bob Corker\", party: \"Republican\" })\n", 53 | "CREATE (:Person:Senator { name: \"Dianne Feinstein\", party: \"Democrat\" })\n", 54 | "CREATE (:Person:Senator { name: \"Orrin G. Hatch\", party: \"Republican\" })\n", 55 | "CREATE (:Person:Senator { name: \"Amy Klobuchar\", party: \"Democrat\" })\n", 56 | "CREATE (:Person:Senator { name: \"Claire McCaskill\", party: \"Democrat\" })\n", 57 | "CREATE (:Person:Senator { name: \"Robert Menendez\", party: \"Democrat\" })\n", 58 | "CREATE (:Person:Senator { name: \"Bill Nelson\", party: \"Democrat\" })\n", 59 | "CREATE (:Person:Senator { name: \"Bernard Sanders\", party: \"Independent\" })\n", 60 | "CREATE (:Person:Senator { name: \"Debbie Stabenow\", party: \"Democrat\" })\n", 61 | "CREATE (:Person:Senator { name: \"Jon Tester\", party: \"Democrat\" })\n", 62 | "CREATE (:Person:Senator { name: \"Sheldon Whitehouse\", party: \"Democrat\" })\n", 63 | "CREATE (:Person:Senator { name: \"John Barrasso\", party: \"Republican\" })\n", 64 | "CREATE (:Person:Senator { name: \"Roger F. Wicker\", party: \"Republican\" })\n", 65 | "CREATE (:Person:Senator { name: \"Lamar Alexander\", party: \"Republican\" })\n", 66 | "CREATE (:Person:Senator { name: \"Thad Cochran\", party: \"Republican\" })\n", 67 | "CREATE (:Person:Senator { name: \"Susan M. Collins\", party: \"Republican\" })\n", 68 | "CREATE (:Person:Senator { name: \"John Cornyn\", party: \"Republican\" })\n", 69 | "CREATE (:Person:Senator { name: \"Richard J. Durbin\", party: \"Democrat\" })\n", 70 | "CREATE (:Person:Senator { name: \"Michael B. Enzi\", party: \"Republican\" })\n", 71 | "CREATE (:Person:Senator { name: \"Lindsey Graham\", party: \"Republican\" })\n", 72 | "CREATE (:Person:Senator { name: \"James M. Inhofe\", party: \"Republican\" })\n", 73 | "CREATE (:Person:Senator { name: \"Mitch McConnell\", party: \"Republican\" })\n", 74 | "CREATE (:Person:Senator { name: \"Jeff Merkley\", party: \"Democrat\" })\n", 75 | "CREATE (:Person:Senator { name: \"Jack Reed\", party: \"Democrat\" })\n", 76 | "CREATE (:Person:Senator { name: \"James E. Risch\", party: \"Republican\" })\n", 77 | "CREATE (:Person:Senator { name: \"Pat Roberts\", party: \"Republican\" })\n", 78 | "CREATE (:Person:Senator { name: \"Jeff Sessions\", party: \"Republican\" })\n", 79 | "CREATE (:Person:Senator { name: \"Jeanne Shaheen\", party: \"Democrat\" })\n", 80 | "CREATE (:Person:Senator { name: \"Tom Udall\", party: \"Democrat\" })\n", 81 | "CREATE (:Person:Senator { name: \"Mark R. Warner\", party: \"Democrat\" })\n", 82 | "CREATE (:Person:Senator { name: \"Kirsten E. Gillibrand\", party: \"Democrat\" })\n", 83 | "CREATE (:Person:Senator { name: \"Al Franken\", party: \"Democrat\" })\n", 84 | "CREATE (:Person:Senator { name: \"Christopher A. Coons\", party: \"Democrat\" })\n", 85 | "CREATE (:Person:Senator { name: \"Joe Manchin, III\", party: \"Democrat\" })\n", 86 | "CREATE (:Person:Representative { name: \"Robert B. Aderholt\", party: \"Republican\" })\n", 87 | "CREATE (:Person:Representative { name: \"Justin Amash\", party: \"Republican\" })\n", 88 | "CREATE (:Person:Senator { name: \"Tammy Baldwin\", party: \"Democrat\" })\n", 89 | "CREATE (:Person:Representative { name: \"Lou Barletta\", party: \"Republican\" })\n", 90 | "CREATE (:Person:Representative { name: \"Joe Barton\", party: \"Republican\" })\n", 91 | "CREATE (:Person:Representative { name: \"Karen Bass\", party: \"Democrat\" })\n", 92 | "CREATE (:Person:Representative { name: \"Xavier Becerra\", party: \"Democrat\" })\n", 93 | "CREATE (:Person:Senator { name: \"Michael F. Bennet\", party: \"Democrat\" })\n", 94 | "CREATE (:Person:Representative { name: \"Gus M. Bilirakis\", party: \"Republican\" })\n", 95 | "CREATE (:Person:Representative { name: \"Rob Bishop\", party: \"Republican\" })\n", 96 | "CREATE (:Person:Representative { name: \"Sanford D. Bishop, Jr.\", party: \"Democrat\" })\n", 97 | "CREATE (:Person:Representative { name: \"Diane Black\", party: \"Republican\" })\n", 98 | "CREATE (:Person:Representative { name: \"Marsha Blackburn\", party: \"Republican\" })\n", 99 | "CREATE (:Person:Representative { name: \"Earl Blumenauer\", party: \"Democrat\" })\n", 100 | "CREATE (:Person:Senator { name: \"Richard Blumenthal\", party: \"Democrat\" })\n", 101 | "CREATE (:Person:Senator { name: \"Roy Blunt\", party: \"Republican\" })\n", 102 | "CREATE (:Person:Senator { name: \"John Boozman\", party: \"Republican\" })\n", 103 | "CREATE (:Person:Representative { name: \"Madeleine Z. Bordallo\", party: \"Democrat\" })\n", 104 | "CREATE (:Person:Representative { name: \"Kevin Brady\", party: \"Republican\" })\n", 105 | "CREATE (:Person:Representative { name: \"Robert A. Brady\", party: \"Democrat\" })\n", 106 | "CREATE (:Person:Representative { name: \"Mo Brooks\", party: \"Republican\" })\n", 107 | "CREATE (:Person:Representative { name: \"Vern Buchanan\", party: \"Republican\" })\n", 108 | "CREATE (:Person:Representative { name: \"Larry Bucshon\", party: \"Republican\" })\n", 109 | "CREATE (:Person:Representative { name: \"Michael C. Burgess\", party: \"Republican\" })\n", 110 | "CREATE (:Person:Senator { name: \"Richard Burr\", party: \"Republican\" })\n", 111 | "CREATE (:Person:Representative { name: \"G. K. Butterfield\", party: \"Democrat\" })\n", 112 | "CREATE (:Person:Representative { name: \"Ken Calvert\", party: \"Republican\" })\n", 113 | "CREATE (:Person:Senator { name: \"Shelley Moore Capito\", party: \"Republican\" })\n", 114 | "CREATE (:Person:Representative { name: \"Michael E. Capuano\", party: \"Democrat\" })\n", 115 | "CREATE (:Person:Representative { name: \"André Carson\", party: \"Democrat\" })\n", 116 | "CREATE (:Person:Representative { name: \"John R. Carter\", party: \"Republican\" })\n", 117 | "CREATE (:Person:Senator { name: \"Bill Cassidy\", party: \"Republican\" })\n", 118 | "CREATE (:Person:Representative { name: \"Kathy Castor\", party: \"Democrat\" })\n", 119 | "CREATE (:Person:Representative { name: \"Steve Chabot\", party: \"Republican\" })\n", 120 | "CREATE (:Person:Representative { name: \"Jason Chaffetz\", party: \"Republican\" })\n", 121 | "CREATE (:Person:Representative { name: \"Judy Chu\", party: \"Democrat\" })\n", 122 | "CREATE (:Person:Representative { name: \"David N. Cicilline\", party: \"Democrat\" })\n", 123 | "CREATE (:Person:Representative { name: \"Yvette D. Clarke\", party: \"Democrat\" })\n", 124 | "CREATE (:Person:Representative { name: \"Wm. Lacy Clay\", party: \"Democrat\" })\n", 125 | "CREATE (:Person:Representative { name: \"Emanuel Cleaver\", party: \"Democrat\" })\n", 126 | "CREATE (:Person:Representative { name: \"James E. Clyburn\", party: \"Democrat\" })\n", 127 | "CREATE (:Person:Representative { name: \"Mike Coffman\", party: \"Republican\" })\n", 128 | "CREATE (:Person:Representative { name: \"Steve Cohen\", party: \"Democrat\" })\n", 129 | "CREATE (:Person:Representative { name: \"Tom Cole\", party: \"Republican\" })\n", 130 | "CREATE (:Person:Representative { name: \"K. Michael Conaway\", party: \"Republican\" })\n", 131 | "CREATE (:Person:Representative { name: \"Gerald E. Connolly\", party: \"Democrat\" })\n", 132 | "CREATE (:Person:Representative { name: \"John Conyers, Jr.\", party: \"Democrat\" })\n", 133 | "CREATE (:Person:Representative { name: \"Jim Cooper\", party: \"Democrat\" })\n", 134 | "CREATE (:Person:Representative { name: \"Jim Costa\", party: \"Democrat\" })\n", 135 | "CREATE (:Person:Representative { name: \"Joe Courtney\", party: \"Democrat\" })\n", 136 | "CREATE (:Person:Senator { name: \"Mike Crapo\", party: \"Republican\" })\n", 137 | "CREATE (:Person:Representative { name: \"Eric A. \\\"Rick\\\" Crawford\", party: \"Republican\" })\n", 138 | "CREATE (:Person:Representative { name: \"Joseph Crowley\", party: \"Democrat\" })\n", 139 | "CREATE (:Person:Representative { name: \"Henry Cuellar\", party: \"Democrat\" })\n", 140 | "CREATE (:Person:Representative { name: \"John Abney Culberson\", party: \"Republican\" })\n", 141 | "CREATE (:Person:Representative { name: \"Elijah E. Cummings\", party: \"Democrat\" })\n", 142 | "CREATE (:Person:Representative { name: \"Danny K. Davis\", party: \"Democrat\" })\n", 143 | "CREATE (:Person:Representative { name: \"Susan A. Davis\", party: \"Democrat\" })\n", 144 | "CREATE (:Person:Representative { name: \"Peter A. DeFazio\", party: \"Democrat\" })\n", 145 | "CREATE (:Person:Representative { name: \"Diana DeGette\", party: \"Democrat\" })\n", 146 | "CREATE (:Person:Representative { name: \"Rosa L. DeLauro\", party: \"Democrat\" })\n", 147 | "CREATE (:Person:Representative { name: \"Jeff Denham\", party: \"Republican\" })\n", 148 | "CREATE (:Person:Representative { name: \"Charles W. Dent\", party: \"Republican\" })\n", 149 | "CREATE (:Person:Representative { name: \"Scott DesJarlais\", party: \"Republican\" })\n", 150 | "CREATE (:Person:Representative { name: \"Theodore E. Deutch\", party: \"Democrat\" })\n", 151 | "CREATE (:Person:Representative { name: \"Mario Diaz-Balart\", party: \"Republican\" })\n", 152 | "CREATE (:Person:Representative { name: \"Lloyd Doggett\", party: \"Democrat\" })\n", 153 | "CREATE (:Person:Senator { name: \"Joe Donnelly\", party: \"Democrat\" })\n", 154 | "CREATE (:Person:Representative { name: \"Michael F. Doyle\", party: \"Democrat\" })\n", 155 | "CREATE (:Person:Representative { name: \"Sean P. Duffy\", party: \"Republican\" })\n", 156 | "CREATE (:Person:Representative { name: \"Jeff Duncan\", party: \"Republican\" })\n", 157 | "CREATE (:Person:Representative { name: \"John J. Duncan, Jr.\", party: \"Republican\" })\n", 158 | "CREATE (:Person:Representative { name: \"Keith Ellison\", party: \"Democrat\" })\n", 159 | "CREATE (:Person:Representative { name: \"Eliot L. Engel\", party: \"Democrat\" })\n", 160 | "CREATE (:Person:Representative { name: \"Anna G. Eshoo\", party: \"Democrat\" })\n", 161 | "CREATE (:Person:Representative { name: \"Blake Farenthold\", party: \"Republican\" })\n", 162 | "CREATE (:Person:Senator { name: \"Jeff Flake\", party: \"Republican\" })\n", 163 | "CREATE (:Person:Representative { name: \"Charles J. \\\"Chuck\\\" Fleischmann\", party: \"Republican\" })\n", 164 | "CREATE (:Person:Representative { name: \"Bill Flores\", party: \"Republican\" })\n", 165 | "CREATE (:Person:Representative { name: \"Jeff Fortenberry\", party: \"Republican\" })\n", 166 | "CREATE (:Person:Representative { name: \"Virginia Foxx\", party: \"Republican\" })\n", 167 | "CREATE (:Person:Representative { name: \"Trent Franks\", party: \"Republican\" })\n", 168 | "CREATE (:Person:Representative { name: \"Rodney P. Frelinghuysen\", party: \"Republican\" })\n", 169 | "CREATE (:Person:Representative { name: \"Marcia L. Fudge\", party: \"Democrat\" })\n", 170 | "CREATE (:Person:Representative { name: \"John Garamendi\", party: \"Democrat\" })\n", 171 | "CREATE (:Person:Senator { name: \"Cory Gardner\", party: \"Republican\" })\n", 172 | "CREATE (:Person:Representative { name: \"Bob Gibbs\", party: \"Republican\" })\n", 173 | "CREATE (:Person:Representative { name: \"Louie Gohmert\", party: \"Republican\" })\n", 174 | "CREATE (:Person:Representative { name: \"Bob Goodlatte\", party: \"Republican\" })\n", 175 | "CREATE (:Person:Representative { name: \"Paul A. Gosar\", party: \"Republican\" })\n", 176 | "CREATE (:Person:Representative { name: \"Trey Gowdy\", party: \"Republican\" })\n", 177 | "CREATE (:Person:Representative { name: \"Kay Granger\", party: \"Republican\" })\n", 178 | "CREATE (:Person:Senator { name: \"Chuck Grassley\", party: \"Republican\" })\n", 179 | "CREATE (:Person:Representative { name: \"Sam Graves\", party: \"Republican\" })\n", 180 | "CREATE (:Person:Representative { name: \"Tom Graves\", party: \"Republican\" })\n", 181 | "CREATE (:Person:Representative { name: \"Al Green\", party: \"Democrat\" })\n", 182 | "CREATE (:Person:Representative { name: \"Gene Green\", party: \"Democrat\" })\n", 183 | "CREATE (:Person:Representative { name: \"H. Morgan Griffith\", party: \"Republican\" })\n", 184 | "CREATE (:Person:Representative { name: \"Raúl M. Grijalva\", party: \"Democrat\" })\n", 185 | "CREATE (:Person:Representative { name: \"Brett Guthrie\", party: \"Republican\" })\n", 186 | "CREATE (:Person:Representative { name: \"Luis V. Gutiérrez\", party: \"Democrat\" })\n", 187 | "CREATE (:Person:Representative { name: \"Gregg Harper\", party: \"Republican\" })\n", 188 | "CREATE (:Person:Representative { name: \"Andy Harris\", party: \"Republican\" })\n", 189 | "CREATE (:Person:Representative { name: \"Vicky Hartzler\", party: \"Republican\" })\n", 190 | "CREATE (:Person:Representative { name: \"Alcee L. Hastings\", party: \"Democrat\" })\n", 191 | "CREATE (:Person:Senator { name: \"Martin Heinrich\", party: \"Democrat\" })\n", 192 | "CREATE (:Person:Representative { name: \"Jeb Hensarling\", party: \"Republican\" })\n", 193 | "CREATE (:Person:Representative { name: \"Jaime Herrera Beutler\", party: \"Republican\" })\n", 194 | "CREATE (:Person:Representative { name: \"Brian Higgins\", party: \"Democrat\" })\n", 195 | "CREATE (:Person:Representative { name: \"James A. Himes\", party: \"Democrat\" })\n", 196 | "CREATE (:Person:Senator { name: \"Mazie K. Hirono\", party: \"Democrat\" })\n", 197 | "CREATE (:Person:Senator { name: \"John Hoeven\", party: \"Republican\" })\n", 198 | "CREATE (:Person:Representative { name: \"Steny H. Hoyer\", party: \"Democrat\" })\n", 199 | "CREATE (:Person:Representative { name: \"Bill Huizenga\", party: \"Republican\" })\n", 200 | "CREATE (:Person:Representative { name: \"Randy Hultgren\", party: \"Republican\" })\n", 201 | "CREATE (:Person:Representative { name: \"Duncan Hunter\", party: \"Republican\" })\n", 202 | "CREATE (:Person:Senator { name: \"Johnny Isakson\", party: \"Republican\" })\n", 203 | "CREATE (:Person:Representative { name: \"Darrell E. Issa\", party: \"Republican\" })\n", 204 | "CREATE (:Person:Representative { name: \"Sheila Jackson Lee\", party: \"Democrat\" })\n", 205 | "CREATE (:Person:Representative { name: \"Lynn Jenkins\", party: \"Republican\" })\n", 206 | "CREATE (:Person:Representative { name: \"Bill Johnson\", party: \"Republican\" })\n", 207 | "CREATE (:Person:Representative { name: \"Eddie Bernice Johnson\", party: \"Democrat\" })\n", 208 | "CREATE (:Person:Representative { name: \"Henry C. \\\"Hank\\\" Johnson, Jr.\", party: \"Democrat\" })\n", 209 | "CREATE (:Person:Senator { name: \"Ron Johnson\", party: \"Republican\" })\n", 210 | "CREATE (:Person:Representative { name: \"Sam Johnson\", party: \"Republican\" })\n", 211 | "CREATE (:Person:Representative { name: \"Walter B. Jones\", party: \"Republican\" })\n", 212 | "CREATE (:Person:Representative { name: \"Jim Jordan\", party: \"Republican\" })\n", 213 | "CREATE (:Person:Representative { name: \"Marcy Kaptur\", party: \"Democrat\" })\n", 214 | "CREATE (:Person:Representative { name: \"William R. Keating\", party: \"Democrat\" })\n", 215 | "CREATE (:Person:Representative { name: \"Mike Kelly\", party: \"Republican\" })\n", 216 | "CREATE (:Person:Representative { name: \"Ron Kind\", party: \"Democrat\" })\n", 217 | "CREATE (:Person:Representative { name: \"Peter T. King\", party: \"Republican\" })\n", 218 | "CREATE (:Person:Representative { name: \"Steve King\", party: \"Republican\" })\n", 219 | "CREATE (:Person:Representative { name: \"Adam Kinzinger\", party: \"Republican\" })\n", 220 | "CREATE (:Person:Representative { name: \"Raúl R. Labrador\", party: \"Republican\" })\n", 221 | "CREATE (:Person:Representative { name: \"Doug Lamborn\", party: \"Republican\" })\n", 222 | "CREATE (:Person:Representative { name: \"Leonard Lance\", party: \"Republican\" })\n", 223 | "CREATE (:Person:Representative { name: \"James R. Langevin\", party: \"Democrat\" })\n", 224 | "CREATE (:Person:Senator { name: \"James Lankford\", party: \"Republican\" })\n", 225 | "CREATE (:Person:Representative { name: \"Rick Larsen\", party: \"Democrat\" })\n", 226 | "CREATE (:Person:Representative { name: \"John B. Larson\", party: \"Democrat\" })\n", 227 | "CREATE (:Person:Representative { name: \"Robert E. Latta\", party: \"Republican\" })\n", 228 | "CREATE (:Person:Senator { name: \"Patrick J. Leahy\", party: \"Democrat\" })\n", 229 | "CREATE (:Person:Representative { name: \"Barbara Lee\", party: \"Democrat\" })\n", 230 | "CREATE (:Person:Senator { name: \"Mike Lee\", party: \"Republican\" })\n", 231 | "CREATE (:Person:Representative { name: \"Sander M. Levin\", party: \"Democrat\" })\n", 232 | "CREATE (:Person:Representative { name: \"John Lewis\", party: \"Democrat\" })\n", 233 | "CREATE (:Person:Representative { name: \"Daniel Lipinski\", party: \"Democrat\" })\n", 234 | "CREATE (:Person:Representative { name: \"Frank A. LoBiondo\", party: \"Republican\" })\n", 235 | "CREATE (:Person:Representative { name: \"David Loebsack\", party: \"Democrat\" })\n", 236 | "CREATE (:Person:Representative { name: \"Zoe Lofgren\", party: \"Democrat\" })\n", 237 | "CREATE (:Person:Representative { name: \"Billy Long\", party: \"Republican\" })\n", 238 | "CREATE (:Person:Representative { name: \"Nita M. Lowey\", party: \"Democrat\" })\n", 239 | "CREATE (:Person:Representative { name: \"Frank D. Lucas\", party: \"Republican\" })\n", 240 | "CREATE (:Person:Representative { name: \"Blaine Luetkemeyer\", party: \"Republican\" })\n", 241 | "CREATE (:Person:Representative { name: \"Ben Ray Luján\", party: \"Democrat\" })\n", 242 | "CREATE (:Person:Representative { name: \"Stephen F. Lynch\", party: \"Democrat\" })\n", 243 | "CREATE (:Person:Representative { name: \"Carolyn B. Maloney\", party: \"Democrat\" })\n", 244 | "CREATE (:Person:Representative { name: \"Kenny Marchant\", party: \"Republican\" })\n", 245 | "CREATE (:Person:Representative { name: \"Tom Marino\", party: \"Republican\" })\n", 246 | "CREATE (:Person:Senator { name: \"Edward J. Markey\", party: \"Democrat\" })\n", 247 | "CREATE (:Person:Representative { name: \"Doris O. Matsui\", party: \"Democrat\" })\n", 248 | "CREATE (:Person:Senator { name: \"John McCain\", party: \"Republican\" })\n", 249 | "CREATE (:Person:Representative { name: \"Kevin McCarthy\", party: \"Republican\" })\n", 250 | "CREATE (:Person:Representative { name: \"Michael T. McCaul\", party: \"Republican\" })\n", 251 | "CREATE (:Person:Representative { name: \"Tom McClintock\", party: \"Republican\" })\n", 252 | "CREATE (:Person:Representative { name: \"Betty McCollum\", party: \"Democrat\" })\n", 253 | "CREATE (:Person:Representative { name: \"James P. McGovern\", party: \"Democrat\" })\n", 254 | "CREATE (:Person:Representative { name: \"Patrick T. McHenry\", party: \"Republican\" })\n", 255 | "CREATE (:Person:Representative { name: \"David B. McKinley\", party: \"Republican\" })\n", 256 | "CREATE (:Person:Representative { name: \"Cathy McMorris Rodgers\", party: \"Republican\" })\n", 257 | "CREATE (:Person:Representative { name: \"Jerry McNerney\", party: \"Democrat\" })\n", 258 | "CREATE (:Person:Representative { name: \"Patrick Meehan\", party: \"Republican\" })\n", 259 | "CREATE (:Person:Representative { name: \"Gregory W. Meeks\", party: \"Democrat\" })\n", 260 | "CREATE (:Person:Representative { name: \"Gwen Moore\", party: \"Democrat\" })\n", 261 | "CREATE (:Person:Senator { name: \"Jerry Moran\", party: \"Republican\" })\n", 262 | "CREATE (:Person:Representative { name: \"Mick Mulvaney\", party: \"Republican\" })\n", 263 | "CREATE (:Person:Senator { name: \"Lisa Murkowski\", party: \"Republican\" })\n", 264 | "CREATE (:Person:Senator { name: \"Christopher Murphy\", party: \"Democrat\" })\n", 265 | "CREATE (:Person:Representative { name: \"Tim Murphy\", party: \"Republican\" })\n", 266 | "CREATE (:Person:Senator { name: \"Patty Murray\", party: \"Democrat\" })\n", 267 | "CREATE (:Person:Representative { name: \"Jerrold Nadler\", party: \"Democrat\" })\n", 268 | "CREATE (:Person:Representative { name: \"Grace F. Napolitano\", party: \"Democrat\" })\n", 269 | "CREATE (:Person:Representative { name: \"Richard E. Neal\", party: \"Democrat\" })\n", 270 | "CREATE (:Person:Representative { name: \"Kristi L. Noem\", party: \"Republican\" })\n", 271 | "CREATE (:Person:Representative { name: \"Eleanor Holmes Norton\", party: \"Democrat\" })\n", 272 | "CREATE (:Person:Representative { name: \"Devin Nunes\", party: \"Republican\" })\n", 273 | "CREATE (:Person:Representative { name: \"Pete Olson\", party: \"Republican\" })\n", 274 | "CREATE (:Person:Representative { name: \"Steven M. Palazzo\", party: \"Republican\" })\n", 275 | "CREATE (:Person:Representative { name: \"Frank Pallone, Jr.\", party: \"Democrat\" })\n", 276 | "CREATE (:Person:Representative { name: \"Bill Pascrell, Jr.\", party: \"Democrat\" })\n", 277 | "CREATE (:Person:Senator { name: \"Rand Paul\", party: \"Republican\" })\n", 278 | "CREATE (:Person:Representative { name: \"Erik Paulsen\", party: \"Republican\" })\n", 279 | "CREATE (:Person:Representative { name: \"Stevan Pearce\", party: \"Republican\" })\n", 280 | "CREATE (:Person:Representative { name: \"Nancy Pelosi\", party: \"Democrat\" })\n", 281 | "CREATE (:Person:Representative { name: \"Ed Perlmutter\", party: \"Democrat\" })\n", 282 | "CREATE (:Person:Senator { name: \"Gary C. Peters\", party: \"Democrat\" })\n", 283 | "CREATE (:Person:Representative { name: \"Collin C. Peterson\", party: \"Democrat\" })\n", 284 | "CREATE (:Person:Representative { name: \"Chellie Pingree\", party: \"Democrat\" })\n", 285 | "CREATE (:Person:Representative { name: \"Ted Poe\", party: \"Republican\" })\n", 286 | "CREATE (:Person:Representative { name: \"Jared Polis\", party: \"Democrat\" })\n", 287 | "CREATE (:Person:Representative { name: \"Mike Pompeo\", party: \"Republican\" })\n", 288 | "CREATE (:Person:Senator { name: \"Rob Portman\", party: \"Republican\" })\n", 289 | "CREATE (:Person:Representative { name: \"Bill Posey\", party: \"Republican\" })\n", 290 | "CREATE (:Person:Representative { name: \"David E. Price\", party: \"Democrat\" })\n", 291 | "CREATE (:Person:Representative { name: \"Tom Price\", party: \"Republican\" })\n", 292 | "CREATE (:Person:Representative { name: \"Mike Quigley\", party: \"Democrat\" })\n", 293 | "CREATE (:Person:Representative { name: \"Tom Reed\", party: \"Republican\" })\n", 294 | "CREATE (:Person:Representative { name: \"David G. Reichert\", party: \"Republican\" })\n", 295 | "CREATE (:Person:Representative { name: \"James B. Renacci\", party: \"Republican\" })\n", 296 | "CREATE (:Person:Representative { name: \"Cedric L. Richmond\", party: \"Democrat\" })\n", 297 | "CREATE (:Person:Representative { name: \"Martha Roby\", party: \"Republican\" })\n", 298 | "CREATE (:Person:Representative { name: \"David P. Roe\", party: \"Republican\" })\n", 299 | "CREATE (:Person:Representative { name: \"Harold Rogers\", party: \"Republican\" })\n", 300 | "CREATE (:Person:Representative { name: \"Mike Rogers\", party: \"Republican\" })\n", 301 | "CREATE (:Person:Representative { name: \"Dana Rohrabacher\", party: \"Republican\" })\n", 302 | "CREATE (:Person:Representative { name: \"Todd Rokita\", party: \"Republican\" })\n", 303 | "CREATE (:Person:Representative { name: \"Thomas J. Rooney\", party: \"Republican\" })\n", 304 | "CREATE (:Person:Representative { name: \"Ileana Ros-Lehtinen\", party: \"Republican\" })\n", 305 | "CREATE (:Person:Representative { name: \"Peter J. Roskam\", party: \"Republican\" })\n", 306 | "CREATE (:Person:Representative { name: \"Dennis A. Ross\", party: \"Republican\" })\n", 307 | "CREATE (:Person:Representative { name: \"Lucille Roybal-Allard\", party: \"Democrat\" })\n", 308 | "CREATE (:Person:Representative { name: \"Edward R. Royce\", party: \"Republican\" })\n", 309 | "CREATE (:Person:Senator { name: \"Marco Rubio\", party: \"Republican\" })\n", 310 | "CREATE (:Person:Representative { name: \"C. A. Dutch Ruppersberger\", party: \"Democrat\" })\n", 311 | "CREATE (:Person:Representative { name: \"Bobby L. Rush\", party: \"Democrat\" })\n", 312 | "CREATE (:Person:Representative { name: \"Paul D. Ryan\", party: \"Republican\" })\n", 313 | "CREATE (:Person:Representative { name: \"Tim Ryan\", party: \"Democrat\" })\n", 314 | "CREATE (:Person:Representative { name: \"Gregorio Kilili Camacho Sablan\", party: \"Democrat\" })\n", 315 | "CREATE (:Person:Representative { name: \"John P. Sarbanes\", party: \"Democrat\" })\n", 316 | "CREATE (:Person:Representative { name: \"Steve Scalise\", party: \"Republican\" })\n", 317 | "CREATE (:Person:Representative { name: \"Janice D. Schakowsky\", party: \"Democrat\" })\n", 318 | "CREATE (:Person:Representative { name: \"Adam B. Schiff\", party: \"Democrat\" })\n", 319 | "CREATE (:Person:Representative { name: \"Kurt Schrader\", party: \"Democrat\" })\n", 320 | "CREATE (:Person:Senator { name: \"Charles E. Schumer\", party: \"Democrat\" })\n", 321 | "CREATE (:Person:Representative { name: \"David Schweikert\", party: \"Republican\" })\n", 322 | "CREATE (:Person:Representative { name: \"Austin Scott\", party: \"Republican\" })\n", 323 | "CREATE (:Person:Representative { name: \"David Scott\", party: \"Democrat\" })\n", 324 | "CREATE (:Person:Representative { name: \"Robert C. \\\"Bobby\\\" Scott\", party: \"Democrat\" })\n", 325 | "CREATE (:Person:Senator { name: \"Tim Scott\", party: \"Republican\" })\n", 326 | "CREATE (:Person:Representative { name: \"F. James Sensenbrenner, Jr.\", party: \"Republican\" })\n", 327 | "CREATE (:Person:Representative { name: \"José E. Serrano\", party: \"Democrat\" })\n", 328 | "CREATE (:Person:Representative { name: \"Pete Sessions\", party: \"Republican\" })\n", 329 | "CREATE (:Person:Representative { name: \"Terri A. Sewell\", party: \"Democrat\" })\n", 330 | "CREATE (:Person:Senator { name: \"Richard C. Shelby\", party: \"Republican\" })\n", 331 | "CREATE (:Person:Representative { name: \"Brad Sherman\", party: \"Democrat\" })\n", 332 | "CREATE (:Person:Representative { name: \"John Shimkus\", party: \"Republican\" })\n", 333 | "CREATE (:Person:Representative { name: \"Bill Shuster\", party: \"Republican\" })\n", 334 | "CREATE (:Person:Representative { name: \"Michael K. Simpson\", party: \"Republican\" })\n", 335 | "CREATE (:Person:Representative { name: \"Albio Sires\", party: \"Democrat\" })\n", 336 | "CREATE (:Person:Representative { name: \"Louise McIntosh Slaughter\", party: \"Democrat\" })\n", 337 | "CREATE (:Person:Representative { name: \"Adam Smith\", party: \"Democrat\" })\n", 338 | "CREATE (:Person:Representative { name: \"Adrian Smith\", party: \"Republican\" })\n", 339 | "CREATE (:Person:Representative { name: \"Christopher H. Smith\", party: \"Republican\" })\n", 340 | "CREATE (:Person:Representative { name: \"Lamar Smith\", party: \"Republican\" })\n", 341 | "CREATE (:Person:Representative { name: \"Jackie Speier\", party: \"Democrat\" })\n", 342 | "CREATE (:Person:Representative { name: \"Steve Stivers\", party: \"Republican\" })\n", 343 | "CREATE (:Person:Representative { name: \"Linda T. Sánchez\", party: \"Democrat\" })\n", 344 | "CREATE (:Person:Representative { name: \"Bennie G. Thompson\", party: \"Democrat\" })\n", 345 | "CREATE (:Person:Representative { name: \"Mike Thompson\", party: \"Democrat\" })\n", 346 | "CREATE (:Person:Representative { name: \"Glenn Thompson\", party: \"Republican\" })\n", 347 | "CREATE (:Person:Representative { name: \"Mac Thornberry\", party: \"Republican\" })\n", 348 | "CREATE (:Person:Senator { name: \"John Thune\", party: \"Republican\" })\n", 349 | "CREATE (:Person:Representative { name: \"Patrick J. Tiberi\", party: \"Republican\" })\n", 350 | "CREATE (:Person:Representative { name: \"Scott R. Tipton\", party: \"Republican\" })\n", 351 | "CREATE (:Person:Representative { name: \"Paul Tonko\", party: \"Democrat\" })\n", 352 | "CREATE (:Person:Senator { name: \"Patrick J. Toomey\", party: \"Republican\" })\n", 353 | "CREATE (:Person:Representative { name: \"Niki Tsongas\", party: \"Democrat\" })\n", 354 | "CREATE (:Person:Representative { name: \"Michael R. Turner\", party: \"Republican\" })\n", 355 | "CREATE (:Person:Representative { name: \"Fred Upton\", party: \"Republican\" })\n", 356 | "CREATE (:Person:Senator { name: \"Chris Van Hollen\", party: \"Democrat\" })\n", 357 | "CREATE (:Person:Representative { name: \"Nydia M. Velázquez\", party: \"Democrat\" })\n", 358 | "CREATE (:Person:Representative { name: \"Peter J. Visclosky\", party: \"Democrat\" })\n", 359 | "CREATE (:Person:Representative { name: \"Tim Walberg\", party: \"Republican\" })\n", 360 | "CREATE (:Person:Representative { name: \"Greg Walden\", party: \"Republican\" })\n", 361 | "CREATE (:Person:Representative { name: \"Timothy J. Walz\", party: \"Democrat\" })\n", 362 | "CREATE (:Person:Representative { name: \"Debbie Wasserman Schultz\", party: \"Democrat\" })\n", 363 | "CREATE (:Person:Representative { name: \"Maxine Waters\", party: \"Democrat\" })\n", 364 | "CREATE (:Person:Representative { name: \"Daniel Webster\", party: \"Republican\" })\n", 365 | "CREATE (:Person:Representative { name: \"Peter Welch\", party: \"Democrat\" })\n", 366 | "CREATE (:Person:Representative { name: \"Joe Wilson\", party: \"Republican\" })\n", 367 | "CREATE (:Person:Representative { name: \"Frederica S. Wilson\", party: \"Democrat\" })\n", 368 | "CREATE (:Person:Representative { name: \"Robert J. Wittman\", party: \"Republican\" })\n", 369 | "CREATE (:Person:Representative { name: \"Steve Womack\", party: \"Republican\" })\n", 370 | "CREATE (:Person:Representative { name: \"Rob Woodall\", party: \"Republican\" })\n", 371 | "CREATE (:Person:Senator { name: \"Ron Wyden\", party: \"Democrat\" })\n", 372 | "CREATE (:Person:Representative { name: \"John A. Yarmuth\", party: \"Democrat\" })\n", 373 | "CREATE (:Person:Representative { name: \"Kevin Yoder\", party: \"Republican\" })\n", 374 | "CREATE (:Person:Representative { name: \"Don Young\", party: \"Republican\" })\n", 375 | "CREATE (:Person:Senator { name: \"Todd Young\", party: \"Republican\" })\n", 376 | "CREATE (:Person:Senator { name: \"Dean Heller\", party: \"Republican\" })\n", 377 | "CREATE (:Person:Representative { name: \"Mark E. Amodei\", party: \"Republican\" })\n", 378 | "CREATE (:Person:Representative { name: \"Suzanne Bonamici\", party: \"Democrat\" })\n", 379 | "CREATE (:Person:Representative { name: \"Suzan K. DelBene\", party: \"Democrat\" })\n", 380 | "CREATE (:Person:Representative { name: \"Thomas Massie\", party: \"Republican\" })\n", 381 | "CREATE (:Person:Representative { name: \"Donald M. Payne, Jr.\", party: \"Democrat\" })\n", 382 | "CREATE (:Person:Senator { name: \"Brian Schatz\", party: \"Democrat\" })\n", 383 | "CREATE (:Person:Representative { name: \"Bill Foster\", party: \"Democrat\" })\n", 384 | "CREATE (:Person:Representative { name: \"Dina Titus\", party: \"Democrat\" })\n", 385 | "CREATE (:Person:Senator { name: \"Tom Cotton\", party: \"Republican\" })\n", 386 | "CREATE (:Person:Representative { name: \"Kyrsten Sinema\", party: \"Democrat\" })\n", 387 | "CREATE (:Person:Representative { name: \"Doug LaMalfa\", party: \"Republican\" })\n", 388 | "CREATE (:Person:Representative { name: \"Jared Huffman\", party: \"Democrat\" })\n", 389 | "CREATE (:Person:Representative { name: \"Ami Bera\", party: \"Democrat\" })\n", 390 | "CREATE (:Person:Representative { name: \"Paul Cook\", party: \"Republican\" })\n", 391 | "CREATE (:Person:Representative { name: \"Eric Swalwell\", party: \"Democrat\" })\n", 392 | "CREATE (:Person:Representative { name: \"David G. Valadao\", party: \"Republican\" })\n", 393 | "CREATE (:Person:Representative { name: \"Julia Brownley\", party: \"Democrat\" })\n", 394 | "CREATE (:Person:Representative { name: \"Tony Cárdenas\", party: \"Democrat\" })\n", 395 | "CREATE (:Person:Representative { name: \"Raul Ruiz\", party: \"Democrat\" })\n", 396 | "CREATE (:Person:Representative { name: \"Mark Takano\", party: \"Democrat\" })\n", 397 | "CREATE (:Person:Representative { name: \"Alan S. Lowenthal\", party: \"Democrat\" })\n", 398 | "CREATE (:Person:Representative { name: \"Juan Vargas\", party: \"Democrat\" })\n", 399 | "CREATE (:Person:Representative { name: \"Scott H. Peters\", party: \"Democrat\" })\n", 400 | "CREATE (:Person:Representative { name: \"Elizabeth H. Esty\", party: \"Democrat\" })\n", 401 | "CREATE (:Person:Representative { name: \"Ted S. Yoho\", party: \"Republican\" })\n", 402 | "CREATE (:Person:Representative { name: \"Ron DeSantis\", party: \"Republican\" })\n", 403 | "CREATE (:Person:Representative { name: \"Lois Frankel\", party: \"Democrat\" })\n", 404 | "CREATE (:Person:Representative { name: \"Doug Collins\", party: \"Republican\" })\n", 405 | "CREATE (:Person:Representative { name: \"Tulsi Gabbard\", party: \"Democrat\" })\n", 406 | "CREATE (:Person:Senator { name: \"Tammy Duckworth\", party: \"Democrat\" })\n", 407 | "CREATE (:Person:Representative { name: \"Rodney Davis\", party: \"Republican\" })\n", 408 | "CREATE (:Person:Representative { name: \"Cheri Bustos\", party: \"Democrat\" })\n", 409 | "CREATE (:Person:Representative { name: \"Jackie Walorski\", party: \"Republican\" })\n", 410 | "CREATE (:Person:Representative { name: \"Susan W. Brooks\", party: \"Republican\" })\n", 411 | "CREATE (:Person:Representative { name: \"Luke Messer\", party: \"Republican\" })\n", 412 | "CREATE (:Person:Representative { name: \"Andy Barr\", party: \"Republican\" })\n", 413 | "CREATE (:Person:Senator { name: \"Elizabeth Warren\", party: \"Democrat\" })\n", 414 | "CREATE (:Person:Representative { name: \"Joseph P. Kennedy III\", party: \"Democrat\" })\n", 415 | "CREATE (:Person:Representative { name: \"John K. Delaney\", party: \"Democrat\" })\n", 416 | "CREATE (:Person:Senator { name: \"Angus S. King, Jr.\", party: \"Independent\" })\n", 417 | "CREATE (:Person:Representative { name: \"Daniel T. Kildee\", party: \"Democrat\" })\n", 418 | "CREATE (:Person:Representative { name: \"Richard M. Nolan\", party: \"Democrat\" })\n", 419 | "CREATE (:Person:Representative { name: \"Ann Wagner\", party: \"Republican\" })\n", 420 | "CREATE (:Person:Senator { name: \"Steve Daines\", party: \"Republican\" })\n", 421 | "CREATE (:Person:Representative { name: \"Richard Hudson\", party: \"Republican\" })\n", 422 | "CREATE (:Person:Representative { name: \"Robert Pittenger\", party: \"Republican\" })\n", 423 | "CREATE (:Person:Representative { name: \"Mark Meadows\", party: \"Republican\" })\n", 424 | "CREATE (:Person:Representative { name: \"George Holding\", party: \"Republican\" })\n", 425 | "CREATE (:Person:Senator { name: \"Heidi Heitkamp\", party: \"Democrat\" })\n", 426 | "CREATE (:Person:Representative { name: \"Kevin Cramer\", party: \"Republican\" })\n", 427 | "CREATE (:Person:Senator { name: \"Deb Fischer\", party: \"Republican\" })\n", 428 | "CREATE (:Person:Representative { name: \"Ann M. Kuster\", party: \"Democrat\" })\n", 429 | "CREATE (:Person:Representative { name: \"Michelle Lujan Grisham\", party: \"Democrat\" })\n", 430 | "CREATE (:Person:Representative { name: \"Grace Meng\", party: \"Democrat\" })\n", 431 | "CREATE (:Person:Representative { name: \"Hakeem S. Jeffries\", party: \"Democrat\" })\n", 432 | "CREATE (:Person:Representative { name: \"Sean Patrick Maloney\", party: \"Democrat\" })\n", 433 | "CREATE (:Person:Representative { name: \"Chris Collins\", party: \"Republican\" })\n", 434 | "CREATE (:Person:Representative { name: \"Brad R. Wenstrup\", party: \"Republican\" })\n", 435 | "CREATE (:Person:Representative { name: \"Joyce Beatty\", party: \"Democrat\" })\n", 436 | "CREATE (:Person:Representative { name: \"David P. Joyce\", party: \"Republican\" })\n", 437 | "CREATE (:Person:Representative { name: \"Jim Bridenstine\", party: \"Republican\" })\n", 438 | "CREATE (:Person:Representative { name: \"Markwayne Mullin\", party: \"Republican\" })\n", 439 | "CREATE (:Person:Representative { name: \"Scott Perry\", party: \"Republican\" })\n", 440 | "CREATE (:Person:Representative { name: \"Keith J. Rothfus\", party: \"Republican\" })\n", 441 | "CREATE (:Person:Representative { name: \"Matt Cartwright\", party: \"Democrat\" })\n", 442 | "CREATE (:Person:Representative { name: \"Tom Rice\", party: \"Republican\" })\n", 443 | "CREATE (:Person:Senator { name: \"Ted Cruz\", party: \"Republican\" })\n", 444 | "CREATE (:Person:Representative { name: \"Randy K. Weber, Sr.\", party: \"Republican\" })\n", 445 | "CREATE (:Person:Representative { name: \"Beto O'Rourke\", party: \"Democrat\" })\n", 446 | "CREATE (:Person:Representative { name: \"Joaquin Castro\", party: \"Democrat\" })\n", 447 | "CREATE (:Person:Representative { name: \"Roger Williams\", party: \"Republican\" })\n", 448 | "CREATE (:Person:Representative { name: \"Marc A. Veasey\", party: \"Democrat\" })\n", 449 | "CREATE (:Person:Representative { name: \"Filemon Vela\", party: \"Democrat\" })\n", 450 | "CREATE (:Person:Representative { name: \"Chris Stewart\", party: \"Republican\" })\n", 451 | "CREATE (:Person:Senator { name: \"Tim Kaine\", party: \"Democrat\" })\n", 452 | "CREATE (:Person:Representative { name: \"Derek Kilmer\", party: \"Democrat\" })\n", 453 | "CREATE (:Person:Representative { name: \"Denny Heck\", party: \"Democrat\" })\n", 454 | "CREATE (:Person:Representative { name: \"Mark Pocan\", party: \"Democrat\" })\n", 455 | "CREATE (:Person:Representative { name: \"Robin L. Kelly\", party: \"Democrat\" })\n", 456 | "CREATE (:Person:Representative { name: \"Mark Sanford\", party: \"Republican\" })\n", 457 | "CREATE (:Person:Representative { name: \"Jason Smith\", party: \"Republican\" })\n", 458 | "CREATE (:Person:Senator { name: \"Cory A. Booker\", party: \"Democrat\" })\n", 459 | "CREATE (:Person:Representative { name: \"Katherine M. Clark\", party: \"Democrat\" })\n", 460 | "CREATE (:Person:Representative { name: \"Bradley Byrne\", party: \"Republican\" })\n", 461 | "CREATE (:Person:Representative { name: \"Dave Brat\", party: \"Republican\" })\n", 462 | "CREATE (:Person:Representative { name: \"Donald Norcross\", party: \"Democrat\" })\n", 463 | "CREATE (:Person:Representative { name: \"Alma S. Adams\", party: \"Democrat\" })\n", 464 | "CREATE (:Person:Representative { name: \"Gary J. Palmer\", party: \"Republican\" })\n", 465 | "CREATE (:Person:Representative { name: \"J. French Hill\", party: \"Republican\" })\n", 466 | "CREATE (:Person:Representative { name: \"Bruce Westerman\", party: \"Republican\" })\n", 467 | "CREATE (:Person:Representative { name: \"Martha McSally\", party: \"Republican\" })\n", 468 | "CREATE (:Person:Representative { name: \"Ruben Gallego\", party: \"Democrat\" })\n", 469 | "CREATE (:Person:Representative { name: \"Mark DeSaulnier\", party: \"Democrat\" })\n", 470 | "CREATE (:Person:Representative { name: \"Stephen Knight\", party: \"Republican\" })\n", 471 | "CREATE (:Person:Representative { name: \"Pete Aguilar\", party: \"Democrat\" })\n", 472 | "CREATE (:Person:Representative { name: \"Ted Lieu\", party: \"Democrat\" })\n", 473 | "CREATE (:Person:Representative { name: \"Norma J. Torres\", party: \"Democrat\" })\n", 474 | "CREATE (:Person:Representative { name: \"Mimi Walters\", party: \"Republican\" })\n", 475 | "CREATE (:Person:Representative { name: \"Ken Buck\", party: \"Republican\" })\n", 476 | "CREATE (:Person:Representative { name: \"Carlos Curbelo\", party: \"Republican\" })\n", 477 | "CREATE (:Person:Representative { name: \"Earl L. \\\"Buddy\\\" Carter\", party: \"Republican\" })\n", 478 | "CREATE (:Person:Representative { name: \"Jody B. Hice\", party: \"Republican\" })\n", 479 | "CREATE (:Person:Representative { name: \"Barry Loudermilk\", party: \"Republican\" })\n", 480 | "CREATE (:Person:Representative { name: \"Rick W. Allen\", party: \"Republican\" })\n", 481 | "CREATE (:Person:Representative { name: \"Rod Blum\", party: \"Republican\" })\n", 482 | "CREATE (:Person:Representative { name: \"David Young\", party: \"Republican\" })\n", 483 | "CREATE (:Person:Representative { name: \"Mike Bost\", party: \"Republican\" })\n", 484 | "CREATE (:Person:Representative { name: \"Ralph Lee Abraham\", party: \"Republican\" })\n", 485 | "CREATE (:Person:Representative { name: \"Garret Graves\", party: \"Republican\" })\n", 486 | "CREATE (:Person:Representative { name: \"Seth Moulton\", party: \"Democrat\" })\n", 487 | "CREATE (:Person:Representative { name: \"Bruce Poliquin\", party: \"Republican\" })\n", 488 | "CREATE (:Person:Representative { name: \"John R. Moolenaar\", party: \"Republican\" })\n", 489 | "CREATE (:Person:Representative { name: \"Mike Bishop\", party: \"Republican\" })\n", 490 | "CREATE (:Person:Representative { name: \"David A. Trott\", party: \"Republican\" })\n", 491 | "CREATE (:Person:Representative { name: \"Debbie Dingell\", party: \"Democrat\" })\n", 492 | "CREATE (:Person:Representative { name: \"Brenda L. Lawrence\", party: \"Democrat\" })\n", 493 | "CREATE (:Person:Representative { name: \"Tom Emmer\", party: \"Republican\" })\n", 494 | "CREATE (:Person:Representative { name: \"Ryan K. Zinke\", party: \"Republican\" })\n", 495 | "CREATE (:Person:Representative { name: \"David Rouzer\", party: \"Republican\" })\n", 496 | "CREATE (:Person:Representative { name: \"Thomas MacArthur\", party: \"Republican\" })\n", 497 | "CREATE (:Person:Representative { name: \"Bonnie Watson Coleman\", party: \"Democrat\" })\n", 498 | "CREATE (:Person:Representative { name: \"Lee M. Zeldin\", party: \"Republican\" })\n", 499 | "CREATE (:Person:Representative { name: \"Kathleen M. Rice\", party: \"Democrat\" })\n", 500 | "CREATE (:Person:Representative { name: \"Elise M. Stefanik\", party: \"Republican\" })\n", 501 | "CREATE (:Person:Representative { name: \"John Katko\", party: \"Republican\" })\n", 502 | "CREATE (:Person:Representative { name: \"Steve Russell\", party: \"Republican\" })\n", 503 | "CREATE (:Person:Representative { name: \"Ryan A. Costello\", party: \"Republican\" })\n", 504 | "CREATE (:Person:Representative { name: \"Brendan F. Boyle\", party: \"Democrat\" })\n", 505 | "CREATE (:Person:Representative { name: \"John Ratcliffe\", party: \"Republican\" })\n", 506 | "CREATE (:Person:Representative { name: \"Will Hurd\", party: \"Republican\" })\n", 507 | "CREATE (:Person:Representative { name: \"Brian Babin\", party: \"Republican\" })\n", 508 | "CREATE (:Person:Representative { name: \"Mia B. Love\", party: \"Republican\" })\n", 509 | "CREATE (:Person:Representative { name: \"Donald S. Beyer, Jr.\", party: \"Democrat\" })\n", 510 | "CREATE (:Person:Representative { name: \"Barbara Comstock\", party: \"Republican\" })\n", 511 | "CREATE (:Person:Representative { name: \"Stacey E. Plaskett\", party: \"Democrat\" })\n", 512 | "CREATE (:Person:Representative { name: \"Dan Newhouse\", party: \"Republican\" })\n", 513 | "CREATE (:Person:Representative { name: \"Glenn Grothman\", party: \"Republican\" })\n", 514 | "CREATE (:Person:Representative { name: \"Alexander X. Mooney\", party: \"Republican\" })\n", 515 | "CREATE (:Person:Representative { name: \"Evan H. Jenkins\", party: \"Republican\" })\n", 516 | "CREATE (:Person:Representative { name: \"Aumua Amata Coleman Radewagen\", party: \"Republican\" })\n", 517 | "CREATE (:Person:Senator { name: \"Daniel Sullivan\", party: \"Republican\" })\n", 518 | "CREATE (:Person:Senator { name: \"David Perdue\", party: \"Republican\" })\n", 519 | "CREATE (:Person:Senator { name: \"Joni Ernst\", party: \"Republican\" })\n", 520 | "CREATE (:Person:Senator { name: \"Thom Tillis\", party: \"Republican\" })\n", 521 | "CREATE (:Person:Senator { name: \"Mike Rounds\", party: \"Republican\" })\n", 522 | "CREATE (:Person:Representative { name: \"Mark Walker\", party: \"Republican\" })\n", 523 | "CREATE (:Person:Senator { name: \"Ben Sasse\", party: \"Republican\" })\n", 524 | "CREATE (:Person:Representative { name: \"Daniel M. Donovan, Jr.\", party: \"Republican\" })\n", 525 | "CREATE (:Person:Representative { name: \"Trent Kelly\", party: \"Republican\" })\n", 526 | "CREATE (:Person:Representative { name: \"Darin LaHood\", party: \"Republican\" })\n", 527 | "CREATE (:Person:Representative { name: \"Warren Davidson\", party: \"Republican\" })\n", 528 | "CREATE (:Person:Representative { name: \"Colleen Hanabusa\", party: \"Democrat\" })\n", 529 | "CREATE (:Person:Representative { name: \"James Comer\", party: \"Republican\" })\n", 530 | "CREATE (:Person:Representative { name: \"Dwight Evans\", party: \"Democrat\" })\n", 531 | "CREATE (:Person:Senator { name: \"Kamala D. Harris\", party: \"Democrat\" })\n", 532 | "CREATE (:Person:Senator { name: \"John Kennedy\", party: \"Republican\" })\n", 533 | "CREATE (:Person:Senator { name: \"Margaret Wood Hassan\", party: \"Democrat\" })\n", 534 | "CREATE (:Person:Senator { name: \"Catherine Cortez Masto\", party: \"Democrat\" })\n", 535 | "CREATE (:Person:Representative { name: \"Bradley Scott Schneider\", party: \"Democrat\" })\n", 536 | "CREATE (:Person:Representative { name: \"Carol Shea-Porter\", party: \"Democrat\" })\n", 537 | "CREATE (:Person:Representative { name: \"Tom O'Halleran\", party: \"Democrat\" })\n", 538 | "CREATE (:Person:Representative { name: \"Andy Biggs\", party: \"Republican\" })\n", 539 | "CREATE (:Person:Representative { name: \"Ro Khanna\", party: \"Democrat\" })\n", 540 | "CREATE (:Person:Representative { name: \"Jimmy Panetta\", party: \"Democrat\" })\n", 541 | "CREATE (:Person:Representative { name: \"Salud O. Carbajal\", party: \"Democrat\" })\n", 542 | "CREATE (:Person:Representative { name: \"Nanette Diaz Barragán\", party: \"Democrat\" })\n", 543 | "CREATE (:Person:Representative { name: \"J. Luis Correa\", party: \"Democrat\" })\n", 544 | "CREATE (:Person:Representative { name: \"Lisa Blunt Rochester\", party: \"Democrat\" })\n", 545 | "CREATE (:Person:Representative { name: \"Matt Gaetz\", party: \"Republican\" })\n", 546 | "CREATE (:Person:Representative { name: \"Neal P. Dunn\", party: \"Republican\" })\n", 547 | "CREATE (:Person:Representative { name: \"John H. Rutherford\", party: \"Republican\" })\n", 548 | "CREATE (:Person:Representative { name: \"Al Lawson, Jr.\", party: \"Democrat\" })\n", 549 | "CREATE (:Person:Representative { name: \"Stephanie N. Murphy\", party: \"Democrat\" })\n", 550 | "CREATE (:Person:Representative { name: \"Darren Soto\", party: \"Democrat\" })\n", 551 | "CREATE (:Person:Representative { name: \"Val Butler Demings\", party: \"Democrat\" })\n", 552 | "CREATE (:Person:Representative { name: \"Charlie Crist\", party: \"Democrat\" })\n", 553 | "CREATE (:Person:Representative { name: \"Brian J. Mast\", party: \"Republican\" })\n", 554 | "CREATE (:Person:Representative { name: \"Francis Rooney\", party: \"Republican\" })\n", 555 | "CREATE (:Person:Representative { name: \"A. Drew Ferguson IV\", party: \"Republican\" })\n", 556 | "CREATE (:Person:Representative { name: \"Raja Krishnamoorthi\", party: \"Democrat\" })\n", 557 | "CREATE (:Person:Representative { name: \"Jim Banks\", party: \"Republican\" })\n", 558 | "CREATE (:Person:Representative { name: \"Trey Hollingsworth\", party: \"Republican\" })\n", 559 | "CREATE (:Person:Representative { name: \"Roger W. Marshall\", party: \"Republican\" })\n", 560 | "CREATE (:Person:Representative { name: \"Clay Higgins\", party: \"Republican\" })\n", 561 | "CREATE (:Person:Representative { name: \"Mike Johnson\", party: \"Republican\" })\n", 562 | "CREATE (:Person:Representative { name: \"Anthony G. Brown\", party: \"Democrat\" })\n", 563 | "CREATE (:Person:Representative { name: \"Jamie Raskin\", party: \"Democrat\" })\n", 564 | "CREATE (:Person:Representative { name: \"Jack Bergman\", party: \"Republican\" })\n", 565 | "CREATE (:Person:Representative { name: \"Paul Mitchell\", party: \"Republican\" })\n", 566 | "CREATE (:Person:Representative { name: \"Jason Lewis\", party: \"Republican\" })\n", 567 | "CREATE (:Person:Representative { name: \"Ted Budd\", party: \"Republican\" })\n", 568 | "CREATE (:Person:Representative { name: \"Don Bacon\", party: \"Republican\" })\n", 569 | "CREATE (:Person:Representative { name: \"Josh Gottheimer\", party: \"Democrat\" })\n", 570 | "CREATE (:Person:Representative { name: \"Jacky Rosen\", party: \"Democrat\" })\n", 571 | "CREATE (:Person:Representative { name: \"Ruben Kihuen\", party: \"Democrat\" })\n", 572 | "CREATE (:Person:Representative { name: \"Thomas R. Suozzi\", party: \"Democrat\" })\n", 573 | "CREATE (:Person:Representative { name: \"Adriano Espaillat\", party: \"Democrat\" })\n", 574 | "CREATE (:Person:Representative { name: \"John J. Faso\", party: \"Republican\" })\n", 575 | "CREATE (:Person:Representative { name: \"Claudia Tenney\", party: \"Republican\" })\n", 576 | "CREATE (:Person:Representative { name: \"Brian K. Fitzpatrick\", party: \"Republican\" })\n", 577 | "CREATE (:Person:Representative { name: \"Lloyd Smucker\", party: \"Republican\" })\n", 578 | "CREATE (:Person:Representative { name: \"Jenniffer González-Colón\", party: \"Republican\" })\n", 579 | "CREATE (:Person:Representative { name: \"David Kustoff\", party: \"Republican\" })\n", 580 | "CREATE (:Person:Representative { name: \"Vicente Gonzalez\", party: \"Democrat\" })\n", 581 | "CREATE (:Person:Representative { name: \"Jodey C. Arrington\", party: \"Republican\" })\n", 582 | "CREATE (:Person:Representative { name: \"Scott Taylor\", party: \"Republican\" })\n", 583 | "CREATE (:Person:Representative { name: \"A. Donald McEachin\", party: \"Democrat\" })\n", 584 | "CREATE (:Person:Representative { name: \"Thomas A. Garrett, Jr.\", party: \"Republican\" })\n", 585 | "CREATE (:Person:Representative { name: \"Pramila Jayapal\", party: \"Democrat\" })\n", 586 | "CREATE (:Person:Representative { name: \"Mike Gallagher\", party: \"Republican\" })\n", 587 | "CREATE (:Person:Representative { name: \"Liz Cheney\", party: \"Republican\" })\n" 588 | ] 589 | } 590 | ], 591 | "source": [ 592 | "for people in data:\n", 593 | " name = people['name']['official_full'].replace('\"','\\\\\"')\n", 594 | " role = people['terms'][-1]['type']\n", 595 | " party = people['terms'][-1]['party']\n", 596 | " if role == 'sen':\n", 597 | " print \"\"\"CREATE (:Person:Senator { name: \"%s\", party: \"%s\" })\"\"\" % (name, party)\n", 598 | " elif role == 'rep':\n", 599 | " print \"\"\"CREATE (:Person:Representative { name: \"%s\", party: \"%s\" })\"\"\" % (name, party)" 600 | ] 601 | }, 602 | { 603 | "cell_type": "markdown", 604 | "metadata": {}, 605 | "source": [ 606 | "-- Senators are MEMBER_OF the US Senate.\n", 607 | "MATCH (n:Senator)\n", 608 | "MATCH (senate:`Government Organization` { name: \"US Senate\"})\n", 609 | "CREATE (n)-[:MEMBER_OF]->(senate);\n", 610 | "\n", 611 | "-- Representatives are MEMBER_OF the House.\n", 612 | "MATCH (n:Representative)\n", 613 | "MATCH (house:`Government Organization` { name: \"House of Representatives\"})\n", 614 | "CREATE (n)-[:MEMBER_OF]->(house);\n" 615 | ] 616 | } 617 | ], 618 | "metadata": { 619 | "kernelspec": { 620 | "display_name": "Python 2", 621 | "language": "python", 622 | "name": "python2" 623 | }, 624 | "language_info": { 625 | "codemirror_mode": { 626 | "name": "ipython", 627 | "version": 2 628 | }, 629 | "file_extension": ".py", 630 | "mimetype": "text/x-python", 631 | "name": "python", 632 | "nbconvert_exporter": "python", 633 | "pygments_lexer": "ipython2", 634 | "version": "2.7.11" 635 | } 636 | }, 637 | "nbformat": 4, 638 | "nbformat_minor": 0 639 | } 640 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # influenza 2 | A graph database debugging tool for US politics (Debug Politics Hackathon, Jan 2017, NYC) 3 | 4 | ## How to set-up Neo4j on your local machine 5 | See tutorial at https://neo4j.com/developer/docker/#_how_to_use_the_neo4j_docker_image . 6 | 7 | ``` 8 | docker run \ 9 | --publish=7474:7474 --publish=7687:7687 \ 10 | --volume=$HOME/neo4j/data:/data \ 11 | --volume=$HOME/neo4j/logs:/logs \ 12 |    neo4j:3.0 13 | ``` 14 | ## How to query the Neo4j database 15 | https://neo4j.com/docs/cypher-refcard/current/ 16 | 17 | See https://github.com/sahuguet/influenza/blob/master/queries.cypher for some examples. 18 | -------------------------------------------------------------------------------- /data/committees-current.yaml: -------------------------------------------------------------------------------- 1 | - type: house 2 | name: House Committee on Agriculture 3 | url: http://agriculture.house.gov/ 4 | minority_url: http://democrats.agriculture.house.gov/ 5 | thomas_id: HSAG 6 | house_committee_id: AG 7 | subcommittees: 8 | - name: Conservation and Forestry 9 | thomas_id: '15' 10 | address: 1301 LHOB; Washington, DC 20515 11 | phone: (202) 225-2171 12 | - name: Commodity Exchanges, Energy, and Credit 13 | thomas_id: '22' 14 | address: 1301 LHOB; Washington, DC 20515 15 | phone: (202) 225-2171 16 | - name: General Farm Commodities and Risk Management 17 | thomas_id: '16' 18 | address: 1301 LHOB; Washington, DC 20515 19 | phone: (202) 225-2171 20 | - name: Livestock and Foreign Agriculture 21 | thomas_id: '29' 22 | address: 1301 LHOB; Washington, DC 20515 23 | phone: (202) 225-2171 24 | - name: Biotechnology, Horticulture, and Research 25 | thomas_id: '14' 26 | address: 1301 LHOB; Washington, DC 20515 27 | phone: (202) 225-2171 28 | - name: Nutrition 29 | thomas_id: '03' 30 | address: 1301 LHOB; Washington, DC 20515 31 | phone: (202) 225-2171 32 | address: 1301 LHOB; Washington, DC 20515-6001 33 | phone: (202) 225-2171 34 | rss_url: http://agriculture.house.gov/rss.xml 35 | minority_rss_url: http://democrats.agriculture.house.gov/Rss.aspx?GroupID=1 36 | jurisdiction: The House Committee on Agriculture has jurisdiction over federal agriculture 37 | policy and oversight of some federal agencies, and it can recommend funding appropriations 38 | for various governmental agencies, programs, and activities, as defined by House 39 | rules. 40 | jurisdiction_source: http://en.wikipedia.org/wiki/House_Committee_on_Agriculture 41 | - type: house 42 | name: House Committee on Appropriations 43 | url: http://appropriations.house.gov/ 44 | minority_url: http://democrats.appropriations.house.gov 45 | thomas_id: HSAP 46 | house_committee_id: AP 47 | subcommittees: 48 | - name: Agriculture, Rural Development, Food and Drug Administration, and Related 49 | Agencies 50 | thomas_id: '01' 51 | address: 2362A RHOB; Washington, DC 20515 52 | phone: (202) 225-2638 53 | - name: Commerce, Justice, Science, and Related Agencies 54 | thomas_id: '19' 55 | address: H310 CAPITOL; Washington, DC 20515 56 | phone: (202) 225-3351 57 | - name: Defense 58 | thomas_id: '02' 59 | address: H405 CAPITOL; Washington, DC 20515 60 | phone: (202) 225-2847 61 | - name: Energy and Water Development, and Related Agencies 62 | thomas_id: '10' 63 | address: 2362B RHOB; Washington, DC 20515 64 | phone: (202) 225-3421 65 | - name: Financial Services and General Government 66 | thomas_id: '23' 67 | address: 2000 RHOB; Washington, DC 20515 68 | phone: (202) 225-7245 69 | - name: Homeland Security 70 | thomas_id: '15' 71 | address: 2006 RHOB; Washington, DC 20515 72 | phone: (202) 225-5834 73 | - name: Interior, Environment, and Related Agencies 74 | thomas_id: '06' 75 | address: 2007 RHOB; Washington, DC 20515 76 | phone: (202) 225-3081 77 | - name: Labor, Health and Human Services, Education, and Related Agencies 78 | thomas_id: '07' 79 | address: 2358B RHOB; Washington, DC 20515 80 | phone: (202) 225-3508 81 | - name: Legislative Branch 82 | thomas_id: '24' 83 | address: HT2 CAPITOL; Washington, DC 20515 84 | phone: (202) 226-7252 85 | - name: Military Construction, Veterans Affairs, and Related Agencies 86 | thomas_id: '18' 87 | address: HVC227 CAPITOL; Washington, DC 20515 88 | phone: (202) 225-3047 89 | - name: State, Foreign Operations, and Related Programs 90 | thomas_id: '04' 91 | address: HT2 CAPITOL; Washington, DC 20515 92 | phone: (202) 225-2041 93 | - name: Transportation, and Housing and Urban Development, and Related Agencies 94 | thomas_id: '20' 95 | address: 2358A RHOB; Washington, DC 20515 96 | phone: (202) 225-2141 97 | address: H305 CAPITOL; Washington, DC 20515-6015 98 | phone: (202) 225-2771 99 | rss_url: http://appropriations.house.gov/news/rss.aspx 100 | minority_rss_url: http://democrats.appropriations.house.gov/rss.xml 101 | jurisdiction: The House Committee on Appropriations is responsible for setting specific 102 | expenditures of money by the government of the United States. As such, it is one 103 | of the most powerful of the committees, and its members are seen as influential. 104 | The bills passed by the committee are called appropriations bills. 105 | jurisdiction_source: http://en.wikipedia.org/wiki/House_Committee_on_Appropriations 106 | - type: house 107 | name: House Committee on Armed Services 108 | url: http://armedservices.house.gov/ 109 | minority_url: http://democrats.armedservices.house.gov/ 110 | thomas_id: HSAS 111 | house_committee_id: AS 112 | subcommittees: 113 | - name: Tactical Air and Land Forces 114 | thomas_id: '25' 115 | address: 2340 RHOB; Washington, DC 20515 116 | phone: (202) 225-4440 117 | - name: Military Personnel 118 | thomas_id: '02' 119 | address: 2340 RHOB; Washington, DC 20515 120 | phone: (202) 225-7560 121 | - name: Oversight and Investigations 122 | thomas_id: '06' 123 | address: 2119 RHOB; Washington, DC 20515 124 | phone: (202) 226-5048 125 | - name: Readiness 126 | thomas_id: '03' 127 | address: 2340 RHOB; Washington, DC 20515 128 | phone: (202) 226-8979 129 | - name: Seapower and Projection Forces 130 | thomas_id: '28' 131 | address: 2340 RHOB; Washington, DC 20515 132 | phone: (202) 226-2211 133 | - name: Strategic Forces 134 | thomas_id: '29' 135 | address: 2340 RHOB; Washington, DC 20515 136 | phone: (202) 225-1967 137 | - name: Emerging Threats and Capabilities 138 | thomas_id: '26' 139 | address: 2340 RHOB; Washington, DC 20515 140 | phone: (202) 226-2843 141 | address: 2216 RHOB; Washington, DC 20515-6035 142 | phone: (202) 225-4151 143 | rss_url: http://armedservices.house.gov/index.cfm/rss/feed 144 | minority_rss_url: http://democrats.armedservices.house.gov/index.cfm/rss/feed 145 | jurisdiction: The House Committee on Armed Services has jurisdiction over defense 146 | policy generally, ongoing military operations, the organization and reform of 147 | the Department of Defense and Department of Energy, counter-drug programs, acquisition 148 | and industrial base policy, technology transfer and export controls, joint interoperability, 149 | the Cooperative Threat Reduction program, Department of Energy nonproliferation 150 | programs, and detainee affairs and policy. 151 | jurisdiction_source: http://armedservices.house.gov/index.cfm/jurisdiction 152 | - type: house 153 | name: House Committee on Financial Services 154 | url: http://financialservices.house.gov/ 155 | minority_url: http://democrats.financialservices.house.gov/ 156 | thomas_id: HSBA 157 | house_committee_id: BA 158 | subcommittees: 159 | - name: Capital Markets and Government Sponsored Enterprises 160 | thomas_id: '16' 161 | address: 2129 RHOB; Washington, DC 20515 162 | phone: (202) 225-7502 163 | - name: Financial Institutions and Consumer Credit 164 | thomas_id: '15' 165 | address: 2129 RHOB; Washington, DC 20515 166 | phone: (202) 225-7502 167 | - name: Housing and Insurance 168 | thomas_id: '04' 169 | address: 2129 RHOB; Washington, DC 20515 170 | phone: (202) 225-7502 171 | - name: Monetary Policy and Trade 172 | thomas_id: '20' 173 | address: 2129 RHOB; Washington, DC 20515 174 | phone: (202) 225-7502 175 | - name: Oversight and Investigations 176 | thomas_id: '09' 177 | address: 2129 RHOB; Washington, DC 20515 178 | phone: (202) 225-7502 179 | address: 2129 RHOB; Washington, DC 20515-6050 180 | phone: (202) 225-7502 181 | rss_url: http://financialservices.house.gov/news/rss.aspx 182 | minority_rss_url: http://democrats.financialservices.house.gov/Rss.aspx?GroupID=1 183 | jurisdiction: The House Financial Services Committee has jurisdiction over issues 184 | pertaining to the economy, the banking system, housing, insurance, and securities 185 | and exchanges. Additionally, the Committee also has jurisdiction over monetary 186 | policy, international finance, international monetary organizations, and efforts 187 | to combat terrorist financing. 188 | jurisdiction_source: http://financialservices.house.gov/about/ 189 | - type: house 190 | name: House Committee on the Budget 191 | url: http://budget.house.gov/ 192 | minority_url: http://democrats.budget.house.gov/ 193 | thomas_id: HSBU 194 | house_committee_id: BU 195 | address: B234 LHOB; Washington, DC 20515-6065 196 | phone: (202) 226-7270 197 | rss_url: http://budget.house.gov/news/rss.aspx 198 | minority_rss_url: http://democrats.budget.house.gov/rss.xml 199 | jurisdiction: 'The House Committee on the Budget has responsibilities under the 200 | following categories: the budget resolution, reconciliation, budget process reform, 201 | oversight of the Congressional Budget Office, revisions of allocations and adjustments, 202 | and scorekeeping.' 203 | jurisdiction_source: http://budget.house.gov/about/ 204 | - type: house 205 | name: House Committee on Education and the Workforce 206 | url: http://edworkforce.house.gov/ 207 | minority_url: http://democrats.edworkforce.house.gov/ 208 | thomas_id: HSED 209 | house_committee_id: ED 210 | subcommittees: 211 | - name: Early Childhood, Elementary, and Secondary Education 212 | thomas_id: '14' 213 | address: 2176 RHOB; Washington, DC 20515 214 | phone: (202) 225-4527 215 | - name: Health, Employment, Labor, and Pensions 216 | thomas_id: '02' 217 | address: 2176 RHOB; Washington, DC 20515 218 | phone: (202) 225-4527 219 | - name: Higher Education and Workforce Training 220 | thomas_id: '13' 221 | address: 2176 RHOB; Washington, DC 20515 222 | phone: (202) 225-4527 223 | - name: Workforce Protections 224 | thomas_id: '10' 225 | address: 2176 RHOB; Washington, DC 20515 226 | phone: (202) 225-4527 227 | address: 2176 RHOB; Washington, DC 20515-6100 228 | phone: (202) 225-4527 229 | rss_url: http://edworkforce.house.gov/news/rss.aspx 230 | minority_rss_url: http://democrats.edworkforce.house.gov/rss.xml 231 | jurisdiction: The House Committee on Education and the Workforce’s basic jurisdiction 232 | is over education and workforce matters generally. 233 | jurisdiction_source: http://edworkforce.house.gov/committee/committeehistory.htm 234 | - type: house 235 | name: House Committee on Foreign Affairs 236 | url: http://foreignaffairs.house.gov/ 237 | minority_url: http://democrats.foreignaffairs.house.gov/ 238 | thomas_id: HSFA 239 | house_committee_id: FA 240 | subcommittees: 241 | - name: Africa, Global Health, Global Human Rights, and International Organizations 242 | thomas_id: '16' 243 | address: 5210 OFOB; Washington, DC 20515 244 | phone: (202) 226-7812 245 | - name: Asia and the Pacific 246 | thomas_id: '05' 247 | address: 5190 OFOB; Washington, DC 20515 248 | phone: (202) 226-7825 249 | - name: Europe, Eurasia, and Emerging Threats 250 | thomas_id: '14' 251 | address: 5210 OFOB; Washington, DC 20515 252 | phone: (202) 226-6434 253 | - name: Terrorism, Nonproliferation, and Trade 254 | thomas_id: '18' 255 | address: 5100 OFOB; Washington, DC 20515 256 | phone: (202) 226-1500 257 | - name: The Middle East and North Africa 258 | thomas_id: '13' 259 | address: 5210 OFOB; Washington, DC 20515 260 | phone: (202) 225-3345 261 | - name: The Western Hemisphere 262 | thomas_id: '07' 263 | address: 5100 OFOB; Washington, DC 20515 264 | phone: (202) 226-9980 265 | address: 2170 RHOB; Washington, DC 20515-6128 266 | phone: (202) 225-5021 267 | rss_url: http://foreignaffairs.house.gov/rss.xml 268 | jurisdiction: The House Committee on Foreign Affairs considers legislation that 269 | impacts the diplomatic community, which includes the Department of State, the 270 | Agency for International Development (USAID), the Peace Corps, the United Nations, 271 | and the enforcement of the Arms Export Control Act. 272 | jurisdiction_source: http://foreignaffairs.house.gov/about 273 | - type: house 274 | name: House Committee on Oversight and Government Reform 275 | url: http://oversight.house.gov/ 276 | minority_url: http://democrats.oversight.house.gov/ 277 | thomas_id: HSGO 278 | house_committee_id: GO 279 | subcommittees: 280 | - name: Information Technology 281 | thomas_id: '25' 282 | address: 2157 RHOB; Washington, DC 20515 283 | phone: (202) 225-5074 284 | - name: Government Operations 285 | thomas_id: '24' 286 | address: 2157 RHOB; Washington, DC 20515 287 | phone: (202) 225-5074 288 | - name: National Security 289 | thomas_id: '06' 290 | address: 2157 RHOB; Washington, DC 20515 291 | phone: (202) 225-5074 292 | - name: Health Care, Benefits and Administrative Rules 293 | thomas_id: '27' 294 | address: 2157 RHOB; Washington, DC 20515 295 | phone: (202) 225-5074 296 | - name: The Interior 297 | thomas_id: '28' 298 | address: 2157 RHOB; Washington, DC 20515 299 | phone: (202) 225-5074 300 | - name: Transportation and Public Assets 301 | thomas_id: '29' 302 | address: 2157 RHOB; Washington, DC 20515 303 | phone: (202) 225-5074 304 | address: 2157 RHOB; Washington, DC 20515-6143 305 | phone: (202) 225-5074 306 | rss_url: http://oversight.house.gov/feed/rss/ 307 | minority_rss_url: http://democrats.oversight.house.gov/rss.xml 308 | jurisdiction: The Committee on Oversight and Government Reform has legislative jurisdiction 309 | over the District of Columbia, the government procurement process, federal personnel 310 | systems, the Postal Service and other oversight matters across the government. 311 | jurisdiction_source: http://oversight.house.gov/about-the-committee/ 312 | - type: house 313 | name: House Committee on House Administration 314 | url: http://cha.house.gov/ 315 | minority_url: http://democrats.cha.house.gov/ 316 | thomas_id: HSHA 317 | house_committee_id: HA 318 | address: 1309 LHOB; Washington, DC 20515-6157 319 | phone: (202) 225-8281 320 | rss_url: http://cha.house.gov/rss.xml 321 | minority_rss_url: http://democrats.cha.house.gov/rss.xml 322 | jurisdiction: The Committee on House Administration is charged with the oversight 323 | of federal elections and the day-to-day operations of the House of Representatives 324 | jurisdiction_source: http://cha.house.gov/about 325 | - type: house 326 | name: House Committee on Homeland Security 327 | url: http://homeland.house.gov/ 328 | minority_url: http://chsdemocrats.house.gov/ 329 | thomas_id: HSHM 330 | house_committee_id: HM 331 | subcommittees: 332 | - name: Border and Maritime Security 333 | thomas_id: '11' 334 | address: 176 FHOB; Washington, DC 20515 335 | phone: (202) 226-8417 336 | - name: Emergency Preparedness, Response, and Communications 337 | thomas_id: '12' 338 | address: 176 FHOB; Washington, DC 20515 339 | phone: (202) 226-8417 340 | - name: Cybersecurity, Infrastructure Protection, and Security Technologies 341 | thomas_id: '08' 342 | address: 176 FHOB; Washington, DC 20515 343 | phone: (202) 226-8417 344 | - name: Counterterrorism and Intelligence 345 | thomas_id: '05' 346 | address: 176 FHOB; Washington, DC 20515 347 | phone: (202) 226-8417 348 | - name: Oversight and Management Efficiency 349 | thomas_id: '09' 350 | address: 176 FHOB; Washington, DC 20515 351 | phone: (202) 226-8417 352 | - name: Transportation Security 353 | thomas_id: '07' 354 | address: 176 FHOB; Washington, DC 20515 355 | phone: (202) 226-8417 356 | address: 176 FHOB; Washington, DC 20515-6480 357 | phone: (202) 226-8417 358 | rss_url: http://homeland.house.gov/rss.xml 359 | jurisdiction: The Committee on Homeland Security was established in 2002 to provide 360 | Congressional oversight for the U.S. Department of Homeland Security and better 361 | protect the American people against a possible terrorist attack.  362 | jurisdiction_source: http://homeland.house.gov/about/history-jurisdiction 363 | - type: house 364 | name: House Committee on Energy and Commerce 365 | url: http://energycommerce.house.gov/ 366 | minority_url: http://democrats.energycommerce.house.gov/ 367 | thomas_id: HSIF 368 | house_committee_id: IF 369 | subcommittees: 370 | - name: Commerce, Manufacturing, and Trade 371 | thomas_id: '17' 372 | address: 2125 RHOB; Washington, DC 20515 373 | phone: (202) 225-2927 374 | - name: Communications and Technology 375 | thomas_id: '16' 376 | address: 2125 RHOB; Washington, DC 20515 377 | phone: (202) 225-2927 378 | - name: Energy and Power 379 | thomas_id: '03' 380 | address: 2125 RHOB; Washington, DC 20515 381 | phone: (202) 225-2927 382 | - name: Health 383 | thomas_id: '14' 384 | address: 2125 RHOB; Washington, DC 20515 385 | phone: (202) 225-2927 386 | - name: Oversight and Investigations 387 | thomas_id: '02' 388 | address: 2125 RHOB; Washington, DC 20515 389 | phone: (202) 225-2927 390 | - name: Environment and the Economy 391 | thomas_id: '18' 392 | address: 2125 RHOB; Washington, DC 20515 393 | phone: (202) 225-2927 394 | address: 2125 RHOB; Washington, DC 20515-6115 395 | phone: (202) 225-2927 396 | rss_url: http://energycommerce.house.gov/rss.aspx 397 | jurisdiction: The Committee on Energy and Commerce, the oldest standing legislative 398 | committee in the U.S. House of Representatives, is vested with the broadest jurisdiction 399 | of any congressional authorizing committee. It has responsibility for the nation’s 400 | telecommunications, consumer protection, food and drug safety, public health research, 401 | environmental quality, energy policy, and interstate and foreign commerce. It 402 | oversees multiple cabinet-level Departments and independent agencies, including 403 | the Departments of Energy, Health and Human Services, Commerce, and Transportation, 404 | as well as the Environmental Protection Agency, the Federal Trade Commission, 405 | the Food and Drug Administration, and the Federal Communications Commission. 406 | jurisdiction_source: http://energycommerce.house.gov/about/committee-history 407 | - type: house 408 | name: House Committee on Natural Resources 409 | url: http://naturalresources.house.gov/ 410 | minority_url: http://democrats.naturalresources.house.gov/ 411 | thomas_id: HSII 412 | house_committee_id: II 413 | subcommittees: 414 | - name: Energy and Mineral Resources 415 | thomas_id: '06' 416 | address: 1522 LHOB; Washington, DC 20515 417 | phone: (202) 225-9297 418 | - name: Federal Lands 419 | thomas_id: '10' 420 | address: 1332 LHOB; Washington, DC 20515 421 | phone: (202) 226-7736 422 | - name: Water, Power and Oceans 423 | thomas_id: '13' 424 | address: 4120 OFOB; Washington, DC 20515 425 | phone: (202) 225-8331 426 | - name: Fisheries, Wildlife, Oceans and Insular Affairs 427 | thomas_id: '22' 428 | address: 140 CHOB; Washington, DC 20515 429 | phone: (202) 226-0200 430 | - name: Indian, Insular and Alaska Native Affairs 431 | thomas_id: '24' 432 | address: 4450 OFOB; Washington, DC 20515 433 | phone: (202) 226-9725 434 | - name: Oversight and Investigations 435 | thomas_id: '15' 436 | address: 4170 OFOB; Washington, DC 20515 437 | phone: (202) 225-7107 438 | address: 1324 LHOB; Washington, DC 20515-6201 439 | phone: (202) 225-2761 440 | rss_url: http://naturalresources.house.gov/news.xml 441 | minority_rss_url: http://democrats.naturalresources.house.gov/rss.xml 442 | jurisdiction: The House Committee on Natural Resources considers legislation about 443 | American energy production, mineral lands and mining, fisheries and wildlife, 444 | public lands, oceans, Native Americans, irrigation and reclamation. 445 | jurisdiction_source: http://naturalresources.house.gov/about/ 446 | - type: house 447 | name: House Permanent Select Committee on Intelligence 448 | url: http://intelligence.house.gov/ 449 | minority_url: http://democrats.intelligence.house.gov/ 450 | thomas_id: HLIG 451 | house_committee_id: IG 452 | subcommittees: 453 | - name: Oversight and Investigations 454 | thomas_id: '09' 455 | address: HVC304 CAPITOL; Washington, DC 20515 456 | phone: (202) 225-4121 457 | - name: Technical and Tactical Intelligence 458 | thomas_id: '05' 459 | address: HVC304 CAPITOL; Washington, DC 20515 460 | phone: (202) 225-4121 461 | - name: Terrorism, Human Intelligence, Analysis, and Counterintelligence 462 | thomas_id: '08' 463 | address: HVC304 CAPITOL; Washington, DC 20515 464 | phone: (202) 225-4121 465 | - name: Central Intelligence Agency 466 | thomas_id: '01' 467 | address: HVC304 CAPITOL; Washington, DC 20515-6415 468 | phone: (202) 225-4121 469 | - name: National Security Agency and Cybersecurity 470 | thomas_id: '02' 471 | address: HVC304 CAPITOL; Washington, DC 20515-6415 472 | phone: (202) 225-4121 473 | - name: Emerging Threats 474 | thomas_id: '03' 475 | address: HVC304 CAPITOL; Washington, DC 20515-6415 476 | phone: (202) 225-4121 477 | - name: Department of Defense Intelligence and Overhead Architecture 478 | thomas_id: '04' 479 | address: HVC304 CAPITOL; Washington, DC 20515-6415 480 | phone: (202) 225-4121 481 | address: HVC304 CAPITOL; Washington, DC 20515-6415 482 | phone: (202) 225-4121 483 | rss_url: http://intelligence.house.gov/rss.xml 484 | minority_rss_url: http://democrats.intelligence.house.gov/rss.xml 485 | jurisdiction: The United States House Permanent Select Committee on Intelligence 486 | is charged with the oversight of the United States intelligence community, which 487 | includes the intelligence and intelligence related activities of 17 elements of 488 | the U.S. Government, and the Military Intelligence Program. 489 | jurisdiction_source: http://intelligence.house.gov/about/history-jurisdiction 490 | - type: house 491 | name: House Committee on the Judiciary 492 | url: http://judiciary.house.gov/ 493 | minority_url: http://democrats.judiciary.house.gov/ 494 | thomas_id: HSJU 495 | house_committee_id: JU 496 | subcommittees: 497 | - name: The Constitution and Civil Justice 498 | thomas_id: '10' 499 | address: 362 FHOB; Washington, DC 20515 500 | phone: (202) 225-2825 501 | - name: Courts, Intellectual Property, and the Internet 502 | thomas_id: '03' 503 | address: 6310 OFOB; Washington, DC 20515 504 | phone: (202) 225-5741 505 | - name: Crime, Terrorism, Homeland Security, and Investigations 506 | thomas_id: '08' 507 | address: 6340 OFOB; Washington, DC 20515 508 | phone: (202) 225-5727 509 | - name: Immigration and Border Security 510 | thomas_id: '01' 511 | address: 6320 OFOB; Washington, DC 20515 512 | phone: (202) 225-3926 513 | - name: Regulatory Reform, Commercial, and Antitrust Law 514 | thomas_id: '05' 515 | address: 6240 OFOB; Washington, DC 20515 516 | phone: (202) 226-7680 517 | address: 2138 RHOB; Washington, DC 20515-6216 518 | phone: (202) 225-3951 519 | minority_rss_url: http://democrats.judiciary.house.gov/rss.xml 520 | jurisdiction: The Committee on the Judiciary has been called the lawyer for the 521 | House of Representatives because of its jurisdiction over matters relating to 522 | the administration of justice in federal courts, administrative bodies, and law 523 | enforcement agencies. Its infrequent but important role in impeachment proceedings 524 | has also brought it much attention. 525 | jurisdiction_source: http://judiciary.house.gov/index.cfm/about-the-committee 526 | - type: house 527 | name: House Committee on Transportation and Infrastructure 528 | url: http://transportation.house.gov/ 529 | minority_url: http://democrats.transportation.house.gov/ 530 | thomas_id: HSPW 531 | house_committee_id: PW 532 | subcommittees: 533 | - name: Aviation 534 | thomas_id: '05' 535 | address: 2251 RHOB; Washington, DC 20515 536 | phone: (202) 226-3220 537 | - name: Coast Guard and Maritime Transportation 538 | thomas_id: '07' 539 | address: 507 FHOB; Washington, DC 20515 540 | phone: (202) 226-3552 541 | - name: Economic Development, Public Buildings, and Emergency Management 542 | thomas_id: '13' 543 | address: 586 FHOB; Washington, DC 20515 544 | phone: (202) 225-3014 545 | - name: Highways and Transit 546 | thomas_id: '12' 547 | address: 2251 RHOB; Washington, DC 20515 548 | phone: (202) 225-6715 549 | - name: Railroads, Pipelines, and Hazardous Materials 550 | thomas_id: '14' 551 | address: 2029 RHOB; Washington, DC 20515 552 | phone: (202) 226-0727 553 | - name: Water Resources and Environment 554 | thomas_id: '02' 555 | address: 585 FHOB; Washington, DC 20515 556 | phone: (202) 225-4360 557 | address: 2251 RHOB; Washington, DC 20515-6256 558 | phone: (202) 225-9446 559 | rss_url: http://transportation.house.gov/rss.xml 560 | minority_rss_url: http://democrats.transportation.house.gov/rss.xml 561 | jurisdiction: 'The Transportation and Infrastructure Committee has jurisdiction 562 | over all modes of transportation: aviation, maritime and waterborne transportation, 563 | highways, bridges, mass transit, and railroads.  The Committee also has jurisdiction 564 | over other aspects of our national infrastructure, such as clean water and waste 565 | water management, the transport of resources by pipeline, flood damage reduction, 566 | the management of federally owned real estate and public buildings, the development 567 | of economically depressed rural and urban areas, disaster preparedness and response, 568 | and hazardous materials transportation.' 569 | jurisdiction_source: http://transportation.house.gov/about/history.htm 570 | - type: house 571 | name: House Committee on Rules 572 | url: http://rules.house.gov/ 573 | minority_url: http://democrats.rules.house.gov/ 574 | thomas_id: HSRU 575 | house_committee_id: RU 576 | subcommittees: 577 | - name: Legislative and Budget Process 578 | thomas_id: '02' 579 | address: H312 CAPITOL; Washington, DC 20515 580 | phone: (202) 225-9191 581 | - name: Rules and Organization of the House 582 | thomas_id: '04' 583 | address: H312 CAPITOL; Washington, DC 20515 584 | phone: (202) 225-9191 585 | address: H312 CAPITOL; Washington, DC 20515-6269 586 | phone: (202) 225-9191 587 | minority_rss_url: http://democrats.rules.house.gov/rss.xml 588 | jurisdiction: 'The Rules Committee has two broad categories of jurisdiction: special 589 | orders for the consideration of legislation (known as “special rules” or “rules”) 590 | and original jurisdiction matters. A special rule provides the terms and conditions 591 | of debate on a measure or matter, consideration of which constitutes the bulk 592 | of the work of the Rules Committee. The Committee also considers original jurisdiction 593 | measures, which commonly represent changes to the standing rules of the House, 594 | or measures that contain special rules, such as the expedited procedures in trade 595 | legislation.' 596 | jurisdiction_source: http://rules.house.gov/about 597 | - type: house 598 | name: House Committee on Small Business 599 | url: http://smallbusiness.house.gov/ 600 | minority_url: http://democrats.smallbusiness.house.gov/ 601 | thomas_id: HSSM 602 | house_committee_id: SM 603 | subcommittees: 604 | - name: Contracting and Workforce 605 | thomas_id: '23' 606 | address: 2361 RHOB; Washington, DC 20515 607 | phone: (202) 225-5821 608 | - name: Investigations, Oversight and Regulations 609 | thomas_id: '24' 610 | address: 2361 RHOB; Washington, DC 20515 611 | phone: (202) 225-5821 612 | - name: Agriculture, Energy and Trade 613 | thomas_id: '25' 614 | address: 2361 RHOB; Washington, DC 20515 615 | phone: (202) 225-5821 616 | - name: Health and Technology 617 | thomas_id: '26' 618 | address: 2361 RHOB; Washington, DC 20515 619 | phone: (202) 225-5821 620 | - name: Economic Growth, Tax and Capital Access 621 | thomas_id: '27' 622 | address: 2361 RHOB; Washington, DC 20515 623 | phone: (202) 225-5821 624 | address: 2361 RHOB; Washington, DC 20515-6315 625 | phone: (202) 225-5821 626 | rss_url: http://smallbusiness.house.gov/news/rss.aspx 627 | minority_rss_url: http://democrats.smallbusiness.house.gov/rss.xml 628 | jurisdiction: The House Small Business Committee was established to protect and 629 | assist small businesses.  The Committee has jurisdiction over matters related 630 | to small business financial aid, regulatory flexibility, paperwork reduction, 631 | and the Small Business Administration (SBA) and its programs. 632 | jurisdiction_source: http://smallbusiness.house.gov/about/rulesandjurisdiction.htm 633 | - type: house 634 | name: House Committee on Ethics 635 | url: http://ethics.house.gov/ 636 | thomas_id: HSSO 637 | house_committee_id: SO 638 | address: 1015 LHOB; Washington, DC 20515-6328 639 | phone: (202) 225-7103 640 | rss_url: http://ethics.house.gov/rss.xml 641 | jurisdiction: The House Ethics Committee has the jurisdiction to administer travel, 642 | gift, financial disclosure, outside income, and other regulations related to the 643 | actions of members of the House. 644 | jurisdiction_source: http://ethics.house.gov/about/committee-history 645 | - type: house 646 | name: House Committee on Science, Space, and Technology 647 | url: http://science.house.gov/ 648 | minority_url: http://democrats.science.house.gov/ 649 | thomas_id: HSSY 650 | house_committee_id: SY 651 | subcommittees: 652 | - name: Energy 653 | thomas_id: '20' 654 | address: 2319 RHOB; Washington, DC 20515 655 | phone: (202) 225-6371 656 | - name: Oversight 657 | thomas_id: '21' 658 | address: 2321 RHOB; Washington, DC 20515 659 | phone: (202) 225-6371 660 | - name: Space 661 | thomas_id: '16' 662 | address: 4220 OFOB; Washington, DC 20515 663 | phone: (202) 225-6371 664 | - name: Environment 665 | thomas_id: '18' 666 | address: 2319 RHOB; Washington, DC 20515 667 | phone: (202) 225-6371 668 | - name: Research and Technology 669 | thomas_id: '15' 670 | address: 4220 OFOB; Washington, DC 20515 671 | phone: (202) 225-6371 672 | address: 2321 RHOB; Washington, DC 20515-6301 673 | phone: (202) 225-6371 674 | rss_url: http://science.house.gov/rss.xml 675 | minority_rss_url: http://democrats.science.house.gov/rss.xml 676 | jurisdiction: The Committee on Science, Space, and Technology has jurisdiction over 677 | energy research, all federally owned or operated non-military energy laboratories, 678 | astronautical research and development, civil aviation, environmental research 679 | and development, marine research, the National Institute of Standards and Technology, 680 | NASA, NSF, NWS, outer space, and other aspects of scientific research. 681 | jurisdiction_source: http://science.house.gov/jurisdiction 682 | - type: house 683 | name: House Select Committee on the Events Surrounding the 2012 Terrorist Attack 684 | in Benghazi 685 | url: http://benghazi.house.gov/ 686 | minority_url: http://democrats.benghazi.house.gov/ 687 | house_committee_id: ZI 688 | thomas_id: HLZI 689 | address: 1036 LHOB; Washington, DC 20515-6090 690 | phone: (202) 226-7100 691 | rss_url: http://benghazi.house.gov/rss.xml 692 | minority_rss_url: http://democrats.benghazi.house.gov/rss.xml 693 | - type: house 694 | name: House Committee on Veterans' Affairs 695 | url: http://veterans.house.gov/ 696 | minority_url: http://democrats.veterans.house.gov/ 697 | thomas_id: HSVR 698 | house_committee_id: VR 699 | subcommittees: 700 | - name: Disability Assistance and Memorial Affairs 701 | thomas_id: '09' 702 | address: 337 CHOB; Washington, DC 20515 703 | phone: (202) 225-9164 704 | - name: Economic Opportunity 705 | thomas_id: '10' 706 | address: 335 CHOB; Washington, DC 20515 707 | phone: (202) 226-5491 708 | - name: Health 709 | thomas_id: '03' 710 | address: 338 CHOB; Washington, DC 20515 711 | phone: (202) 225-9154 712 | - name: Oversight and Investigations 713 | thomas_id: '08' 714 | address: 337A CHOB; Washington, DC 20515 715 | phone: (202) 225-3569 716 | address: 335 CHOB; Washington, DC 20515-6335 717 | phone: (202) 225-3527 718 | rss_url: http://veterans.house.gov/rss.xml 719 | minority_rss_url: http://democrats.veterans.house.gov/rss.xml 720 | jurisdiction: The Committee on Veterans’ Affairs is the authorizing Committee for 721 | the Department of Veterans Affairs. The Committee recommends legislation expanding, 722 | curtailing, or fine-tuning existing laws relating to veterans’ benefits. The Committee 723 | also has oversight responsibility of the VA. 724 | jurisdiction_source: http://veterans.house.gov/about/history-jurisdiction 725 | - type: house 726 | name: House Committee on Ways and Means 727 | url: http://waysandmeans.house.gov/ 728 | minority_url: http://democrats.waysandmeans.house.gov/ 729 | thomas_id: HSWM 730 | house_committee_id: WM 731 | subcommittees: 732 | - name: Health 733 | thomas_id: '02' 734 | address: 1104 LHOB; Washington, DC 20515 735 | phone: (202) 225-3943 736 | - name: Human Resources 737 | thomas_id: '03' 738 | address: 1129 LHOB; Washington, DC 20515 739 | phone: (202) 225-1025 740 | - name: Oversight 741 | thomas_id: '06' 742 | address: 2018 RHOB; Washington, DC 20515 743 | phone: (202) 225-9263 744 | - name: Tax Policy 745 | thomas_id: '05' 746 | address: 1136 LHOB; Washington, DC 20515 747 | phone: (202) 225-5522 748 | - name: Social Security 749 | thomas_id: '01' 750 | address: 2018 RHOB; Washington, DC 20515 751 | phone: (202) 225-9263 752 | - name: Trade 753 | thomas_id: '04' 754 | address: 1103 LHOB; Washington, DC 20515 755 | phone: (202) 225-6649 756 | address: 1102 LHOB; Washington, DC 20515-6348 757 | phone: (202) 225-3625 758 | minority_rss_url: http://democrats.waysandmeans.house.gov/rss.xml 759 | jurisdiction: The Committee on Ways and Means is the oldest committee of the United 760 | States Congress, and is the chief tax-writing committee in the House of Representatives. 761 | The Committee derives a large share of its jurisdiction from Article I, Section 762 | VII of the U.S. Constitution which declares, “All Bills for raising Revenue shall 763 | originate in the House of Representatives.” 764 | jurisdiction_source: http://waysandmeans.house.gov/about/history.htm 765 | - type: joint 766 | name: Commission on Security and Cooperation in Europe 767 | url: http://www.csce.gov/ 768 | thomas_id: JCSE 769 | senate_committee_id: JCSE 770 | wikipedia: Commission on Security and Cooperation in Europe 771 | - type: joint 772 | name: Joint Economic Committee 773 | url: http://jec.senate.gov/ 774 | thomas_id: JSEC 775 | senate_committee_id: JSEC 776 | rss_url: http://www.jec.senate.gov/republicans/public/?a=RSS.Feed 777 | minority_rss_url: http://www.jec.senate.gov/public/?a=RSS.Feed 778 | wikipedia: Joint Economic Committee 779 | - type: joint 780 | name: Joint Committee on the Library 781 | url: https://cha.house.gov/jointcommittees/joint-committee-library 782 | thomas_id: JSLC 783 | senate_committee_id: JSLC 784 | wikipedia: Joint Committee on the Library 785 | - type: joint 786 | name: Joint Committee on Printing 787 | url: https://cha.house.gov/jointcommittees/joint-committee-on-printing 788 | thomas_id: JSPR 789 | senate_committee_id: JSPR 790 | wikipedia: Joint Committee on Printing 791 | - type: joint 792 | name: Joint Committee on Taxation 793 | url: https://www.jct.gov 794 | thomas_id: JSTX 795 | senate_committee_id: JSTX 796 | wikipedia: United States Congress Joint Committee on Taxation 797 | - type: senate 798 | name: United States Senate Caucus on International Narcotics Control 799 | url: http://www.drugcaucus.senate.gov/ 800 | thomas_id: SCNC 801 | senate_committee_id: SCNC 802 | - type: senate 803 | name: Senate Select Committee on Ethics 804 | url: http://ethics.senate.gov/ 805 | thomas_id: SLET 806 | senate_committee_id: SLET 807 | rss_url: http://www.ethics.senate.gov/public/?a=RSS.Feed 808 | wikipedia: United States Senate Select Committee on Ethics 809 | - type: senate 810 | name: Senate Committee on Indian Affairs 811 | url: http://indian.senate.gov/ 812 | thomas_id: SLIA 813 | senate_committee_id: SLIA 814 | wikipedia: United States Senate Committee on Indian Affairs 815 | - type: senate 816 | name: Senate Select Committee on Intelligence 817 | url: http://intelligence.senate.gov/ 818 | thomas_id: SLIN 819 | senate_committee_id: SLIN 820 | wikipedia: United States Senate Select Committee on Intelligence 821 | - type: senate 822 | name: Senate Special Committee on Aging 823 | url: http://www.aging.senate.gov/ 824 | thomas_id: SPAG 825 | senate_committee_id: SPAG 826 | wikipedia: United States Senate Special Committee on Aging 827 | - type: senate 828 | name: Senate Committee on Agriculture, Nutrition, and Forestry 829 | url: http://agriculture.senate.gov/ 830 | thomas_id: SSAF 831 | senate_committee_id: SSAF 832 | subcommittees: 833 | - name: Commodities, Risk Management and Trade 834 | thomas_id: '13' 835 | wikipedia: United States Senate Agriculture Subcommittee on Commodities, Markets, 836 | Trade and Risk Management 837 | - name: Conservation, Forestry and Natural Resources 838 | thomas_id: '14' 839 | wikipedia: United States Senate Agriculture Subcommittee on Conservation, Forestry 840 | and Natural Resources 841 | - name: Rural Development and Energy 842 | thomas_id: '15' 843 | wikipedia: United States Senate Agriculture Subcommittee on Jobs, Rural Economic 844 | Growth and Energy Innovation 845 | - name: Nutrition, Specialty Crops, and Agricultural Research 846 | thomas_id: '16' 847 | wikipedia: United States Senate Agriculture Subcommittee on Nutrition, Specialty 848 | Crops, Food and Agricultural Research 849 | - name: Livestock, Marketing and Agriculture Security 850 | thomas_id: '17' 851 | wikipedia: United States Senate Agriculture Subcommittee on Livestock, Dairy, 852 | Poultry, Marketing and Agriculture Security 853 | rss_url: http://www.ag.senate.gov/rss/feeds/?type=press&groups=democrat 854 | minority_rss_url: http://www.ag.senate.gov/rss/feeds/?type=press&groups=republican 855 | wikipedia: United States Senate Committee on Agriculture, Nutrition and Forestry 856 | - type: senate 857 | name: Senate Committee on Appropriations 858 | url: http://appropriations.senate.gov/ 859 | thomas_id: SSAP 860 | senate_committee_id: SSAP 861 | subcommittees: 862 | - name: Commerce, Justice, Science, and Related Agencies 863 | thomas_id: '16' 864 | wikipedia: United States Senate Appropriations Subcommittee on Commerce, Justice, 865 | Science, and Related Agencies 866 | - name: Energy and Water Development 867 | thomas_id: '22' 868 | wikipedia: United States Senate Appropriations Subcommittee on Financial Services 869 | and General Government 870 | - name: Financial Services and General Government 871 | thomas_id: '23' 872 | wikipedia: United States Senate Appropriations Subcommittee on Financial Services 873 | and General Government 874 | - name: Department of Homeland Security 875 | thomas_id: '14' 876 | wikipedia: United States Senate Appropriations Subcommittee on Homeland Security 877 | - name: Department of the Interior, Environment, and Related Agencies 878 | thomas_id: '17' 879 | wikipedia: United States Senate Appropriations Subcommittee on Interior, Environment, 880 | and Related Agencies 881 | - name: Departments of Labor, Health and Human Services, and Education, and Related 882 | Agencies 883 | thomas_id: '18' 884 | wikipedia: United States Senate Appropriations Subcommittee on Labor, Health and 885 | Human Services, Education, and Related Agencies 886 | - name: Military Construction and Veterans Affairs, and Related Agencies 887 | thomas_id: '19' 888 | wikipedia: United States Senate Appropriations Subcommittee on Military Construction, 889 | Veterans Affairs, and Related Agencies 890 | - name: State, Foreign Operations, and Related Programs 891 | thomas_id: '20' 892 | wikipedia: United States Senate Appropriations Subcommittee on the Department 893 | of State, Foreign Operations, and Related Programs 894 | - name: Transportation, Housing and Urban Development, and Related Agencies 895 | thomas_id: '24' 896 | wikipedia: United States Senate Appropriations Subcommittee on Transportation, 897 | Housing and Urban Development, and Related Agencies 898 | - name: Agriculture, Rural Development, Food and Drug Administration, and Related 899 | Agencies 900 | thomas_id: '01' 901 | wikipedia: United States Senate Appropriations Subcommittee on Agriculture, Rural 902 | Development, Food and Drug Administration, and Related Agencies 903 | - name: Department of Defense 904 | thomas_id: '02' 905 | wikipedia: United States Senate Appropriations Subcommittee on Defense 906 | - name: Legislative Branch 907 | thomas_id: '08' 908 | wikipedia: United States Senate Appropriations Subcommittee on Legislative Branch 909 | wikipedia: United States Senate Committee on Appropriations 910 | - type: senate 911 | name: Senate Committee on Armed Services 912 | url: http://armed-services.senate.gov/ 913 | thomas_id: SSAS 914 | senate_committee_id: SSAS 915 | subcommittees: 916 | - name: Airland 917 | thomas_id: '14' 918 | wikipedia: United States Senate Armed Services Subcommittee on Airland 919 | - name: Emerging Threats and Capabilities 920 | thomas_id: '20' 921 | wikipedia: United States Senate Armed Services Subcommittee on Emerging Threats 922 | and Capabilities 923 | - name: Personnel 924 | thomas_id: '17' 925 | wikipedia: United States Senate Armed Services Subcommittee on Personnel 926 | - name: Readiness and Management Support 927 | thomas_id: '15' 928 | wikipedia: United States Senate Armed Services Subcommittee on Readiness and Management 929 | Support 930 | - name: SeaPower 931 | thomas_id: '13' 932 | wikipedia: United States Senate Armed Services Subcommittee on Seapower 933 | - name: Strategic Forces 934 | thomas_id: '16' 935 | wikipedia: United States Senate Armed Services Subcommittee on Strategic Forces 936 | rss_url: http://www.armed-services.senate.gov/press/index.cfm?xml=Press%20Releases,RSS2.0 937 | wikipedia: United States Senate Committee on Armed Services 938 | - type: senate 939 | name: Senate Committee on Banking, Housing, and Urban Affairs 940 | url: http://banking.senate.gov/ 941 | thomas_id: SSBK 942 | senate_committee_id: SSBK 943 | subcommittees: 944 | - name: Economic Policy 945 | thomas_id: '12' 946 | wikipedia: United States Senate Banking Subcommittee on Economic Policy 947 | - name: National Security and International Trade and Finance 948 | thomas_id: '05' 949 | wikipedia: United States Senate Banking Subcommittee on Security and International 950 | Trade and Finance 951 | - name: Securities, Insurance, and Investment 952 | thomas_id: '04' 953 | wikipedia: United States Senate Banking Subcommittee on Securities, Insurance, 954 | and Investment 955 | - name: Housing, Transportation, and Community Development 956 | thomas_id: '09' 957 | wikipedia: United States Senate Banking Subcommittee on Housing, Transportation, 958 | and Community Development 959 | - name: Financial Institutions and Consumer Protection 960 | thomas_id: '08' 961 | wikipedia: United States Senate Banking Subcommittee on Financial Institutions 962 | and Consumer Protection 963 | wikipedia: United States Senate Committee on Banking, Housing, and Urban Affairs 964 | - type: senate 965 | name: Senate Committee on the Budget 966 | url: http://budget.senate.gov/ 967 | thomas_id: SSBU 968 | senate_committee_id: SSBU 969 | rss_url: http://www.budget.senate.gov/democratic/index.cfm?a=RSS.Feed&Type=press-releases,statements 970 | minority_rss_url: http://www.budget.senate.gov/republican/public/index.cfm/rss/feed 971 | wikipedia: United States Senate Committee on the Budget 972 | - type: senate 973 | name: Senate Committee on Commerce, Science, and Transportation 974 | url: http://commerce.senate.gov/ 975 | thomas_id: SSCM 976 | senate_committee_id: SSCM 977 | subcommittees: 978 | - name: Communications, Technology, Innovation, and the Internet 979 | thomas_id: '26' 980 | wikipedia: United States Senate Commerce Subcommittee on Communications, Technology, 981 | and the Internet 982 | - name: Tourism, Competitiveness, and Innovation 983 | thomas_id: '27' 984 | wikipedia: United States Senate Commerce Subcommittee on Competitiveness, Innovation, 985 | and Export Promotion 986 | - name: Consumer Protection, Product Safety, Insurance, and Data Security 987 | thomas_id: '20' 988 | wikipedia: United States Senate Commerce Subcommittee on Consumer Protection, 989 | Product Safety, and Insurance 990 | - name: Oceans, Atmosphere, Fisheries, and Coast Guard 991 | thomas_id: '22' 992 | wikipedia: United States Senate Commerce Subcommittee on Oceans, Atmosphere, Fisheries, 993 | and Coast Guard 994 | - name: Space, Science, and Competitiveness 995 | thomas_id: '24' 996 | wikipedia: United States Senate Commerce Subcommittee on Science and Space 997 | - name: Surface Transportation and Merchant Marine Infrastructure, Safety and Security 998 | thomas_id: '25' 999 | wikipedia: United States Senate Commerce Subcommittee on Surface Transportation 1000 | and Merchant Marine Infrastructure, Safety, and Security 1001 | - name: Aviation Operations, Safety, and Security 1002 | thomas_id: '01' 1003 | wikipedia: United States Senate Commerce Subcommittee on Aviation Operations, 1004 | Safety, and Security 1005 | rss_url: http://www.commerce.senate.gov/public/?a=RSS.Feed 1006 | wikipedia: United States Senate Committee on Commerce, Science and Transportation 1007 | - type: senate 1008 | name: Senate Committee on Energy and Natural Resources 1009 | url: http://energy.senate.gov/ 1010 | thomas_id: SSEG 1011 | senate_committee_id: SSEG 1012 | subcommittees: 1013 | - name: Water and Power 1014 | thomas_id: '07' 1015 | wikipedia: United States Senate Energy Subcommittee on Water and Power 1016 | - name: National Parks 1017 | thomas_id: '04' 1018 | wikipedia: United States Senate Energy Subcommittee on National Parks 1019 | - name: Energy 1020 | thomas_id: '01' 1021 | wikipedia: United States Senate Energy Subcommittee on Energy 1022 | - name: Public Lands, Forests, and Mining 1023 | thomas_id: '03' 1024 | wikipedia: United States Senate Energy Subcommittee on Public Lands, Forests and 1025 | Mining 1026 | rss_url: http://www.energy.senate.gov/public/index.cfm/rss/feed?type=democratic-news 1027 | minority_rss_url: http://www.energy.senate.gov/public/index.cfm/rss/feed?type=republican-news 1028 | wikipedia: United States Senate Committee on Energy and Natural Resources 1029 | - type: senate 1030 | name: Senate Committee on Environment and Public Works 1031 | url: http://epw.senate.gov/ 1032 | thomas_id: SSEV 1033 | senate_committee_id: SSEV 1034 | subcommittees: 1035 | - name: Clean Air and Nuclear Safety 1036 | thomas_id: '10' 1037 | wikipedia: United States Senate Environment and Public Works Subcommittee on Clean 1038 | Air and Nuclear Safety 1039 | - name: Superfund, Waste Management, and Regulatory Oversight 1040 | thomas_id: '09' 1041 | wikipedia: United States Senate Environment and Public Works Subcommittee on Superfund, 1042 | Toxics and Environmental Health 1043 | - thomas_id: '16' 1044 | name: Green Jobs and the New Economy 1045 | wikipedia: United States Senate Environment and Public Works Subcommittee on Green 1046 | Jobs and the New Economy 1047 | - thomas_id: '18' 1048 | name: Oversight 1049 | wikipedia: United States Senate Environment and Public Works Subcommittee on Oversight 1050 | - thomas_id: '08' 1051 | name: Transportation and Infrastructure 1052 | wikipedia: United States Senate Environment and Public Works Subcommittee on Transportation 1053 | and Infrastructure 1054 | - thomas_id: '15' 1055 | name: Fisheries, Water, and Wildlife 1056 | wikipedia: United States Senate Environment and Public Works Subcommittee on Water 1057 | and Wildlife 1058 | rss_url: http://www.epw.senate.gov/public/index.cfm?FuseAction=RSS.Majority 1059 | minority_rss_url: http://www.epw.senate.gov/public/index.cfm?FuseAction=RSS.Minority 1060 | wikipedia: United States Senate Committee on Environment and Public Works 1061 | - type: senate 1062 | name: Senate Committee on Finance 1063 | url: http://finance.senate.gov/ 1064 | thomas_id: SSFI 1065 | senate_committee_id: SSFI 1066 | subcommittees: 1067 | - name: Energy, Natural Resources, and Infrastructure 1068 | thomas_id: '12' 1069 | wikipedia: United States Senate Finance Subcommittee on Energy, Natural Resources, 1070 | and Infrastructure 1071 | - name: Health Care 1072 | thomas_id: '10' 1073 | wikipedia: United States Senate Finance Subcommittee on Health Care 1074 | - name: International Trade, Customs, and Global Competitiveness 1075 | thomas_id: '13' 1076 | wikipedia: United States Senate Finance Subcommittee on International Trade, Customs, 1077 | and Global Competitiveness 1078 | - name: Fiscal Responsibility and Economic Growth 1079 | thomas_id: '14' 1080 | wikipedia: United States Senate Finance Subcommittee on Fiscal Responsibility 1081 | and Economic Growth 1082 | - name: Taxation and IRS Oversight 1083 | thomas_id: '11' 1084 | wikipedia: United States Senate Finance Subcommittee on Taxation and IRS Oversight 1085 | - name: Social Security, Pensions, and Family Policy 1086 | thomas_id: '02' 1087 | wikipedia: United States Senate Finance Subcommittee on Social Security, Pensions, 1088 | and Family Policy 1089 | rss_url: http://www.finance.senate.gov/rss/feed/chair/ 1090 | minority_rss_url: http://www.finance.senate.gov/rss/feed/ranking/ 1091 | wikipedia: United States Senate Committee on Finance 1092 | - type: senate 1093 | name: Senate Committee on Foreign Relations 1094 | url: http://foreign.senate.gov/ 1095 | thomas_id: SSFR 1096 | senate_committee_id: SSFR 1097 | subcommittees: 1098 | - name: International Development and Foreign Assistance, Economic Affairs, International 1099 | Environmental Protection, and Peace Corps 1100 | thomas_id: '12' 1101 | wikipedia: United States Senate Foreign Relations Subcommittee on International 1102 | Development and Foreign Assistance, Economic Affairs and International Environmental 1103 | Protection, and Peace Corps 1104 | - name: International Operations and Organizations, Human Rights, Democracy, and 1105 | Global Women's Issues 1106 | thomas_id: '13' 1107 | wikipedia: United States Senate Foreign Relations Subcommittee on International 1108 | Operations and Organizations, Human Rights, Democracy and Global Women's Issues 1109 | - name: Europe and Regional Security Cooperation 1110 | thomas_id: '01' 1111 | wikipedia: United States Senate Foreign Relations Subcommittee on European Affairs 1112 | - name: Africa and Global Health Policy 1113 | thomas_id: '09' 1114 | wikipedia: United States Senate Foreign Relations Subcommittee on African Affairs 1115 | - name: East Asia, the Pacific, and International Cybersecurity Policy 1116 | thomas_id: '02' 1117 | wikipedia: United States Senate Foreign Relations Subcommittee on East Asian and 1118 | Pacific Affairs 1119 | - name: Near East, South Asia, Central Asia, and Counterterrorism 1120 | thomas_id: '07' 1121 | wikipedia: United States Senate Foreign Relations Subcommittee on Near Eastern 1122 | and South and Central Asian Affairs 1123 | - name: Western Hemisphere, Transnational Crime, Civilian Security, Democracy, Human 1124 | Rights, and Global Women's Issues 1125 | thomas_id: '06' 1126 | wikipedia: United States Senate Foreign Relations Subcommittee on Western Hemisphere 1127 | and Global Narcotics Affairs 1128 | - thomas_id: '15' 1129 | name: Multilateral International Development, Multilateral Institutions, and International 1130 | Economic, Energy, and Environmental Policy 1131 | - thomas_id: '14' 1132 | name: State Department and USAID Management, International Operations, and Bilateral 1133 | International Development 1134 | rss_url: http://www.foreign.senate.gov/rss/feed/chair/ 1135 | minority_rss_url: http://www.foreign.senate.gov/rss/feed/ranking/ 1136 | wikipedia: United States Senate Committee on Foreign Relations 1137 | - type: senate 1138 | name: Senate Committee on Homeland Security and Governmental Affairs 1139 | url: http://hsgac.senate.gov/ 1140 | thomas_id: SSGA 1141 | senate_committee_id: SSGA 1142 | subcommittees: 1143 | - thomas_id: '01' 1144 | name: Permanent Subcommittee on Investigations 1145 | wikipedia: United States Senate Homeland Security Permanent Subcommittee on Investigations 1146 | - thomas_id: '17' 1147 | name: Emergency Management, Intergovernmental Relations, and the District of Columbia 1148 | - thomas_id: '15' 1149 | name: Financial and Contracting Oversight 1150 | - thomas_id: '16' 1151 | name: the Efficiency and Effectiveness of Federal Programs and the Federal Workforce 1152 | - thomas_id: '18' 1153 | name: Federal Spending Oversight and Emergency Management 1154 | - thomas_id: '19' 1155 | name: Regulatory Affairs and Federal Management 1156 | wikipedia: United States Senate Committee on Homeland Security and Governmental 1157 | Affairs 1158 | - type: senate 1159 | name: Senate Committee on Health, Education, Labor, and Pensions 1160 | url: http://help.senate.gov/ 1161 | thomas_id: SSHR 1162 | senate_committee_id: SSHR 1163 | subcommittees: 1164 | - name: Employment and Workplace Safety 1165 | thomas_id: '11' 1166 | wikipedia: United States Senate Health Subcommittee on Employment and Workplace 1167 | Safety 1168 | - name: Primary Health and Retirement Security 1169 | thomas_id: '12' 1170 | wikipedia: United States Senate Health Subcommittee on Primary Health and Aging 1171 | - name: Children and Families 1172 | thomas_id: '09' 1173 | wikipedia: United States Senate Health Subcommittee on Children and Families 1174 | rss_url: http://www.help.senate.gov/rss/feed/chair/ 1175 | minority_rss_url: http://www.help.senate.gov/rss/feed/ranking/ 1176 | wikipedia: United States Senate Committee on Health, Education, Labor, and Pensions 1177 | - type: senate 1178 | name: Senate Committee on the Judiciary 1179 | url: http://judiciary.senate.gov/ 1180 | thomas_id: SSJU 1181 | senate_committee_id: SSJU 1182 | subcommittees: 1183 | - name: the Constitution 1184 | thomas_id: '21' 1185 | wikipedia: United States Senate Judiciary Subcommittee on the Constitution, Civil 1186 | Rights and Human Rights 1187 | - name: Crime and Terrorism 1188 | thomas_id: '22' 1189 | wikipedia: United States Senate Judiciary Subcommittee on Crime and Terrorism 1190 | - name: Privacy, Technology and the Law 1191 | thomas_id: '23' 1192 | wikipedia: United States Senate Judiciary Subcommittee on Privacy, Technology 1193 | and the Law 1194 | - name: Antitrust, Competition Policy and Consumer Rights 1195 | thomas_id: '01' 1196 | wikipedia: United States Senate Judiciary Subcommittee on Antitrust, Competition 1197 | Policy and Consumer Rights 1198 | - name: Immigration and the National Interest 1199 | thomas_id: '04' 1200 | wikipedia: United States Senate Judiciary Subcommittee on Immigration, Refugees 1201 | and Border Security 1202 | - thomas_id: '24' 1203 | name: Bankruptcy and the Courts 1204 | - thomas_id: '25' 1205 | name: Oversight, Agency Action, Federal Rights and Federal Courts 1206 | wikipedia: United States Senate Committee on the Judiciary 1207 | - type: senate 1208 | name: Senate Committee on Rules and Administration 1209 | url: http://rules.senate.gov/ 1210 | thomas_id: SSRA 1211 | senate_committee_id: SSRA 1212 | rss_url: http://www.rules.senate.gov/public/?a=RSS.Feed 1213 | wikipedia: United States Senate Committee on Rules and Administration 1214 | - type: senate 1215 | name: Senate Committee on Small Business and Entrepreneurship 1216 | url: http://sbc.senate.gov/ 1217 | thomas_id: SSSB 1218 | senate_committee_id: SSSB 1219 | rss_url: http://www.sbc.senate.gov/public/?a=RSS.Feed 1220 | wikipedia: United States Senate Committee on Small Business and Entrepreneurship 1221 | - type: senate 1222 | name: Senate Committee on Veterans' Affairs 1223 | url: http://veterans.senate.gov/ 1224 | thomas_id: SSVA 1225 | senate_committee_id: SSVA 1226 | rss_url: http://www.veterans.senate.gov/rss.cfm 1227 | minority_rss_url: http://www.veterans.senate.gov/rankingmember/rss.cfm 1228 | wikipedia: United States Senate Committee on Veterans' Affairs 1229 | -------------------------------------------------------------------------------- /import/Makefile: -------------------------------------------------------------------------------- 1 | 2 | .PHONY: default 3 | 4 | NEO4J_HOME=/usr/local/Cellar/neo4j/3.0.0 5 | DB=$(NEO4J_HOME)/libexec/data/databases/graph.db 6 | 7 | NODES_SOURCE=import_nodes.cypher 8 | EDGES_SOURCE=import_edges.cypher 9 | 10 | default: 11 | #mv -f ~/Downloads/Debug\ Politics\ -\ Influenza\ -\ Nodes.csv nodes.csv 12 | sh filter_node_csv.sh 13 | #mv -f ~/Downloads/Debug\ Politics\ -\ Influenza\ -\ Edges.csv edges.csv 14 | sh filter_edge_csv.sh 15 | neo4j-shell -path influenza.db -file $(NODES_SOURCE) 16 | neo4j-shell -path influenza.db -c 'schema await' 17 | neo4j-shell -path influenza.db -file $(EDGES_SOURCE) 18 | rm -rf $(NEO4J_HOME)/libexec/data/databases/old.db 19 | mv -f $(DB) $(NEO4J_HOME)/libexec/data/databases/old.db 20 | mv influenza.db $(DB) 21 | 22 | -------------------------------------------------------------------------------- /import/filter_edge_csv.sh: -------------------------------------------------------------------------------- 1 | 2 | # To list edge types: 3 | # ruby -r csv -ne'row = CSV.parse($_).first; puts "#{row[0]} -#{row[2]}-> #{row[3]}".inspect' edges.csv | sort -u 4 | 5 | echo "Filtering edges" 6 | 7 | echo "Government Organization -Employs-> Person" 8 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_gov_people.csv 9 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Government Organization" && row[3] == "Person"' edges.csv >> /tmp/edges_gov_people.csv 10 | 11 | echo "Government Organization -Regulatory Action-> Private Sector Company" 12 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_gov_cos.csv 13 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Government Organization" && row[3] == "Private Sector Company"' edges.csv >> /tmp/edges_gov_cos.csv 14 | 15 | echo "Nonprofit -Pays-> Person" 16 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_nonprofits_people.csv 17 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Nonprofit" && row[3] == "Person"' edges.csv >> /tmp/edges_nonprofits_people.csv 18 | 19 | echo "Person -Advised-> Private Sector Company" 20 | echo "Person -Owner-> Private Sector Company" 21 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_people_cos.csv 22 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Person" && row[3] == "Private Sector Company"' edges.csv >> /tmp/edges_people_cos.csv 23 | 24 | echo "Person -Campaign Contribution-> Person" 25 | echo "Person -Married-> Person" 26 | echo "Person -Nominated-> Person" 27 | echo "Person -Direct Report-> Person" 28 | echo "Person -PAC Contribution-> Person" 29 | echo "Person -Reports To-> Person" 30 | echo "Person -Parent-> Person" 31 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_people.csv 32 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Person" && row[3] == "Person"' edges.csv >> /tmp/edges_people.csv 33 | 34 | echo "Person -Founded-> Nonprofit" 35 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_people_nonprofits.csv 36 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Person" && row[3] == "Nonprofit"' edges.csv >> /tmp/edges_people_nonprofits.csv 37 | 38 | echo "Person -Member-> Government Organization" 39 | echo "Person -Runs-> Government Organization" 40 | echo "Person -Employed by-> Government Organization" 41 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_people_gov.csv 42 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Person" && row[3] == "Government Organization"' edges.csv >> /tmp/edges_people_gov.csv 43 | 44 | echo "Person -Member-> House Committee" 45 | echo "Person -Member-> Joint Committee" 46 | echo "Person -Member-> Senate Committee" 47 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_people_committees.csv 48 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Person" && ( row[3] =~ /Committee$/ )' edges.csv >> /tmp/edges_people_committees.csv 49 | 50 | echo "Person -Nominee-> Ambassador" 51 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_people_ambassador.csv 52 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Person" && row[3] == "Ambassador"' edges.csv >> /tmp/edges_people_ambassador.csv 53 | 54 | echo "Person -Nominee-> Cabinet Position" 55 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_people_cabinet.csv 56 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Person" && row[3] == "Cabinet Position"' edges.csv >> /tmp/edges_people_cabinet.csv 57 | 58 | echo "Senate Committee -Confirms Nominee-> Ambassador" 59 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_committee_ambassador.csv 60 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if (row[0] =~ /Committee$/) && row[3] == "Ambassador"' edges.csv >> /tmp/edges_committee_ambassador.csv 61 | 62 | echo "Political Organization -Employs-> Person" 63 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_political_people.csv 64 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Political Organization" && row[3] == "Person"' edges.csv >> /tmp/edges_political_people.csv 65 | 66 | echo "Private Sector Company -Campaign Contribution-> Person" 67 | echo "Private Sector Company -Employs-> Person" 68 | echo "Private Sector Company -PAC Contribution-> Person" 69 | echo "Private Sector Company -Owned by-> Person" 70 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_cos_people.csv 71 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Private Sector Company" && row[3] == "Person"' edges.csv >> /tmp/edges_cos_people.csv 72 | 73 | echo "Private Sector Company -Debt-> Private Sector Company" 74 | echo "Private Sector Company -Owns-> Private Sector Company" 75 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_companies.csv 76 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if row[0] == "Private Sector Company" && row[3] == "Private Sector Company"' edges.csv >> /tmp/edges_companies.csv 77 | 78 | echo "Private University -Employs-> Person" 79 | echo "Public University -Employs-> Person" 80 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_school_people.csv 81 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if (row[0] =~ /University$/) && row[3] == "Person"' edges.csv >> /tmp/edges_school_people.csv 82 | 83 | echo "Senate Committee -Confirms Nominee-> Cabinet Position" 84 | head -1 edges.csv | perl -pe's/ //g' > /tmp/edges_committee_cabinet.csv 85 | ruby -r csv -ne'row = CSV.parse($_).first; puts $_ if (row[0] =~ /Committee$/) && row[3] == "Cabinet Position"' edges.csv >> /tmp/edges_committee_cabinet.csv 86 | 87 | echo "Filtered edges" 88 | for file in /tmp/edges_*.csv; do 89 | echo "$file: " `tail -n +2 $file | wc -l` 90 | done 91 | 92 | -------------------------------------------------------------------------------- /import/filter_node_csv.sh: -------------------------------------------------------------------------------- 1 | 2 | # To list node types: cut -d, -f1 nodes.csv | sort -u 3 | 4 | echo "Filtering nodes" 5 | 6 | echo "Ambassador" 7 | head -1 nodes.csv | perl -pe's/ //g' > /tmp/nodes_ambassadors.csv 8 | grep '^Ambassador' nodes.csv >> /tmp/nodes_ambassadors.csv 9 | 10 | echo "CabinetPosition" 11 | head -1 nodes.csv | perl -pe's/ //g' > /tmp/nodes_cabinet_positions.csv 12 | grep '^Cabinet Position' nodes.csv >> /tmp/nodes_cabinet_positions.csv 13 | 14 | echo "GovernmentOrg" 15 | head -1 nodes.csv | perl -pe's/ //g' > /tmp/nodes_gov_orgs.csv 16 | grep '^Government Organization' nodes.csv >> /tmp/nodes_gov_orgs.csv 17 | 18 | echo "Committee" 19 | head -1 nodes.csv | perl -pe's/ //g' > /tmp/nodes_committees.csv 20 | grep '^House Committee' nodes.csv >> /tmp/nodes_committees.csv 21 | grep '^Senate Committee' nodes.csv >> /tmp/nodes_committees.csv 22 | grep '^Joint Committee' nodes.csv >> /tmp/nodes_committees.csv 23 | 24 | echo "Nonprofit" 25 | head -1 nodes.csv | perl -pe's/ //g' > /tmp/nodes_nonprofits.csv 26 | grep '^Nonprofit' nodes.csv >> /tmp/nodes_nonprofits.csv 27 | 28 | echo "Person" 29 | head -1 nodes.csv | perl -pe's/ //g' > /tmp/nodes_people.csv 30 | grep '^Person' nodes.csv >> /tmp/nodes_people.csv 31 | 32 | echo "PoliticalOrg" 33 | head -1 nodes.csv | perl -pe's/ //g' > /tmp/nodes_political_orgs.csv 34 | grep '^Political Organization' nodes.csv >> /tmp/nodes_political_orgs.csv 35 | 36 | echo "Company" 37 | head -1 nodes.csv | perl -pe's/ //g' > /tmp/nodes_companies.csv 38 | grep '^Private Sector Company' nodes.csv >> /tmp/nodes_companies.csv 39 | 40 | echo "School" 41 | head -1 nodes.csv | perl -pe's/ //g' > /tmp/nodes_universities.csv 42 | grep '^Private University' nodes.csv >> /tmp/nodes_universities.csv 43 | grep '^Public University' nodes.csv >> /tmp/nodes_universities.csv 44 | 45 | echo "Filtered nodes" 46 | for file in /tmp/nodes_*.csv; do 47 | echo "$file: " `tail -n +2 $file | wc -l` 48 | done 49 | 50 | 51 | -------------------------------------------------------------------------------- /import/import_edges.cypher: -------------------------------------------------------------------------------- 1 | 2 | USING PERIODIC COMMIT 3 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_gov_people.csv" AS row 4 | MATCH (g:GovernmentOrg {name: row.FromName}) 5 | MATCH (p:Person {name: row.ToName}) 6 | MERGE (g)-[:EMPLOYS]->(p); 7 | 8 | USING PERIODIC COMMIT 9 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_gov_cos.csv" AS row 10 | MATCH (g:GovernmentOrg {name: row.FromName}) 11 | MATCH (c:Company {name: row.ToName}) 12 | MERGE (g)-[:REGULATES]->(c); 13 | 14 | USING PERIODIC COMMIT 15 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_nonprofits_people.csv" AS row 16 | MATCH (n:Nonprofit {name: row.FromName}) 17 | MATCH (p:Person {name: row.ToName}) 18 | MERGE (n)-[:PAYS]->(p); 19 | 20 | USING PERIODIC COMMIT 21 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_people_cabinet.csv" AS row 22 | MATCH (p:Person {name: row.FromName}) 23 | MATCH (c:CabinetPosition {name: row.ToName}) 24 | MERGE (p)-[:NOMINEE]->(c); 25 | 26 | USING PERIODIC COMMIT 27 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_people_cos.csv" AS row 28 | MATCH (p:Person {name: row.FromName}) 29 | MATCH (c:Company {name: row.ToName}) 30 | FOREACH (t in CASE when row.Edge="Owner" THEN [1] ELSE [] END | 31 | MERGE (p)-[:OWNS]->(c) ) 32 | FOREACH (t in CASE when row.Edge="Advised" THEN [1] ELSE [] END | 33 | MERGE (p)-[:ADVISES]->(c) ); 34 | 35 | USING PERIODIC COMMIT 36 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_people.csv" AS row 37 | MATCH (p1:Person {name: row.FromName}) 38 | MATCH (p2:Person {name: row.ToName}) 39 | FOREACH (t in CASE when row.Edge="Campaign Contribution" THEN [1] ELSE [] END | 40 | MERGE (p1)-[:CONTRIBUTED]->(p2) ) 41 | FOREACH (t in CASE when row.Edge="Reports To" THEN [1] ELSE [] END | 42 | MERGE (p1)-[:REPORTS_TO]->(p2) ) 43 | FOREACH (t in CASE when row.Edge="Direct Report" THEN [1] ELSE [] END | 44 | MERGE (p1)-[:REPORTS_TO]->(p2) ) 45 | FOREACH (t in CASE when row.Edge="Nominated" THEN [1] ELSE [] END | 46 | MERGE (p1)-[:NOMINATED]->(p2) ) 47 | FOREACH (t in CASE when row.Edge="Married" THEN [1] ELSE [] END | 48 | MERGE (p1)-[:MARRIED]->(p2) ) 49 | FOREACH (t in CASE when row.Edge="Parent" THEN [1] ELSE [] END | 50 | MERGE (p1)-[:PARENT]->(p2) ); 51 | 52 | USING PERIODIC COMMIT 53 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_people_nonprofits.csv" AS row 54 | MATCH (p:Person {name: row.FromName}) 55 | MATCH (n:Nonprofit {name: row.ToName}) 56 | MERGE (p)-[:FOUNDED]->(n); 57 | 58 | USING PERIODIC COMMIT 59 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_people_gov.csv" AS row 60 | MATCH (p:Person {name: row.FromName}) 61 | MATCH (g:GovernmentOrg {name: row.ToName}) 62 | FOREACH (t in CASE when row.Edge="Runs" THEN [1] ELSE [] END | 63 | MERGE (p)-[:RUNS]->(g) ) 64 | FOREACH (t in CASE when row.Edge="Member" THEN [1] ELSE [] END | 65 | MERGE (p)-[:MEMBER]->(g) ) 66 | FOREACH (t in CASE when row.Edge="Employed by" THEN [1] ELSE [] END | 67 | MERGE (p)-[:EMPLOYED_BY]->(g) ); 68 | 69 | USING PERIODIC COMMIT 70 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_people_committees.csv" AS row 71 | MATCH (p:Person {name: row.FromName}) 72 | MATCH (c:Committee {name: row.ToName}) 73 | MERGE (p)-[:MEMBER]->(c); 74 | 75 | USING PERIODIC COMMIT 76 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_people_ambassador.csv" AS row 77 | MATCH (p:Person {name: row.FromName}) 78 | MATCH (a:Ambassador {country: row.ToName}) 79 | MERGE (p)-[:MEMBER]->(c); 80 | 81 | USING PERIODIC COMMIT 82 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_political_people.csv" AS row 83 | MATCH (o:PoliticalOrg {name: row.FromName}) 84 | MATCH (p:Person {name: row.ToName}) 85 | MERGE (o)-[:EMPLOYS]->(p); 86 | 87 | USING PERIODIC COMMIT 88 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_cos_people.csv" AS row 89 | MATCH (c:Company {name: row.FromName}) 90 | MATCH (p:Person {name: row.ToName}) 91 | FOREACH (t in CASE when row.Edge="Campaign Contribution" THEN [1] ELSE [] END | 92 | MERGE (c)-[:CONTRIBUTED]->(p) ) 93 | FOREACH (t in CASE when row.Edge="PAC Contribution" THEN [1] ELSE [] END | 94 | MERGE (c)-[:CONTRIBUTED]->(p) ) 95 | FOREACH (t in CASE when row.Edge="Employs" THEN [1] ELSE [] END | 96 | MERGE (c)-[:EMPLOYS]->(p) ) 97 | FOREACH (t in CASE when row.Edge="Owned by" THEN [1] ELSE [] END | 98 | MERGE (c)-[:OWNED_BY]->(p) ); 99 | 100 | USING PERIODIC COMMIT 101 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_companies.csv" AS row 102 | MATCH (c1:Company {name: row.FromName}) 103 | MATCH (c2:Company {name: row.ToName}) 104 | FOREACH (t in CASE when row.Edge="Debt" THEN [1] ELSE [] END | 105 | MERGE (c1)-[:DEBT]->(c2) ) 106 | FOREACH (t in CASE when row.Edge="Owns" THEN [1] ELSE [] END | 107 | MERGE (c1)-[:OWNS]->(c2) ); 108 | 109 | USING PERIODIC COMMIT 110 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_school_people.csv" AS row 111 | MATCH (s:School {name: row.FromName}) 112 | MATCH (p:Person {name: row.ToName}) 113 | MERGE (s)-[:EMPLOYS]->(p); 114 | 115 | USING PERIODIC COMMIT 116 | LOAD CSV WITH HEADERS FROM "file:///tmp/edges_committee_cabinet.csv" AS row 117 | MATCH (c1:Committee {name: row.FromName}) 118 | MATCH (c2:CabinetPosition {name: row.ToName}) 119 | MERGE (c1)-[:CONFIRMS]->(c2); 120 | 121 | -------------------------------------------------------------------------------- /import/import_nodes.cypher: -------------------------------------------------------------------------------- 1 | 2 | USING PERIODIC COMMIT 3 | LOAD CSV WITH HEADERS FROM "file:///tmp/nodes_ambassadors.csv" AS row 4 | CREATE (:Ambassador {name: row.Description, country: row.Name}); 5 | CREATE CONSTRAINT ON (a:Ambassador) ASSERT a.name IS UNIQUE; // constraint creates implicit index 6 | CREATE INDEX ON :Ambassador(country); 7 | 8 | USING PERIODIC COMMIT 9 | LOAD CSV WITH HEADERS FROM "file:///tmp/nodes_cabinet_positions.csv" AS row 10 | CREATE (:CabinetPosition {name: row.Name}); 11 | CREATE CONSTRAINT ON (c:CabinetPosition) ASSERT c.name IS UNIQUE; 12 | 13 | USING PERIODIC COMMIT 14 | LOAD CSV WITH HEADERS FROM "file:///tmp/nodes_gov_orgs.csv" AS row 15 | CREATE (:GovernmentOrg {name: row.Name, description: row.Description}); 16 | CREATE CONSTRAINT ON (g:GovernmentOrg) ASSERT g.name IS UNIQUE; 17 | 18 | USING PERIODIC COMMIT 19 | LOAD CSV WITH HEADERS FROM "file:///tmp/nodes_committees.csv" AS row 20 | CREATE (:Committee {name: row.Name, committeeType: row.Type, description: row.Description}); 21 | CREATE CONSTRAINT ON (n:Nonprofit) ASSERT n.name IS UNIQUE; 22 | 23 | USING PERIODIC COMMIT 24 | LOAD CSV WITH HEADERS FROM "file:///tmp/nodes_nonprofits.csv" AS row 25 | CREATE (:Nonprofit {name: row.Name}); 26 | CREATE CONSTRAINT ON (n:Nonprofit) ASSERT n.name IS UNIQUE; 27 | 28 | USING PERIODIC COMMIT 29 | LOAD CSV WITH HEADERS FROM "file:///tmp/nodes_people.csv" AS row 30 | CREATE (:Person {name: row.Name, governmentPosition: row.GovernmentPosition, privatePosition: row.PrivateSectorPosition, state: row.State }); 31 | CREATE CONSTRAINT ON (p:Person) ASSERT p.name IS UNIQUE; 32 | CREATE INDEX ON :Person(state); 33 | 34 | USING PERIODIC COMMIT 35 | LOAD CSV WITH HEADERS FROM "file:///tmp/nodes_political_orgs.csv" AS row 36 | CREATE (:PoliticalOrg {name: row.Name}); 37 | CREATE CONSTRAINT ON (p:PoliticalOrg) ASSERT p.name IS UNIQUE; 38 | 39 | USING PERIODIC COMMIT 40 | LOAD CSV WITH HEADERS FROM "file:///tmp/nodes_companies.csv" AS row 41 | CREATE (:Company {name: row.Name}); 42 | CREATE CONSTRAINT ON (c:Company) ASSERT c.name IS UNIQUE; 43 | 44 | USING PERIODIC COMMIT 45 | LOAD CSV WITH HEADERS FROM "file:///tmp/nodes_universities.csv" AS row 46 | CREATE (:School {name: row.Name, schoolType: row.Type}); 47 | CREATE CONSTRAINT ON (s:School) ASSERT s.name IS UNIQUE; 48 | 49 | -------------------------------------------------------------------------------- /import/nodes.csv: -------------------------------------------------------------------------------- 1 | Type,Name,Wikidata ID,Description,Image,Reference,Government Position,Private Sector Position,State 2 | Private Sector Company,Trump Holdings,,,,,,, 3 | Private Sector Company,Deutsche Bank,Q66048,,,,,, 4 | Person,Donald J Trump,Q22686,,,,President,, 5 | Government Organization,Department of Justice,,,,,,, 6 | Person,Terry Branstad,Q39609,,,https://docs.google.com/spreadsheets/d/1yS-sMWDHvtidh6x4i2xTgu8-WpBCkpMmahOdU3b_fcA/edit#gid=670655733,US Ambassador to China,, 7 | Person,Reince Priebus,Q1357640,,,,White House Chief of Staff,, 8 | Person,Steve Bannon,Q16146870,,,,White House Chief Strategist,, 9 | Person,Kellyanne Conway,Q6386365,,,,Counselor to the President,, 10 | Person,Stephen Miller,Q889598,,,,Senior Advisor to the President for Policy,, 11 | Person,Jared Kushner,Q13628723,,,,Senior Advisor to the President for Strategic Planning,, 12 | Person,Dina Powell,Q3278769,,,,Senior Counselor to the President for Economic Initiatives,, 13 | Person,Anthony Scaramucci,Q4773428,,,,Senior Advisor to the President for Public Liaison Intergovernmental Affairs,, 14 | Person,Rudy Giuliani,Q983428,,,,Cybersecurity Advisor,, 15 | Person,Michael Flynn,Q6830341,,,,National Security Advisor,, 16 | Person,K. T. McFarland,Q6376920,,,,Deputy National Security Advisor,, 17 | Person,Monica Crowley,Q6899924,,,,Deputy National Security Advisor for Strategic Communications and Speechwriting,, 18 | Person,Keith Kellogg,Q27916194,,,,Executive Secretary of the National Security Council,, 19 | Person,Andrew Bremberg,Q27916193,,,,Director of the Domestic Policy Council,, 20 | Person,Gary Cohn,Q5524865,,,,Director of the National Economic Council,, 21 | Person,Peter Navarro,Q7176052,,,,Director of the National Trade Council,, 22 | Person,Tom Bossert,Q28062402,,,,Homeland Security Advisor,, 23 | Person,Sean Spicer,Q27829251,,,,White House Press Secretary and White House Director of Communications,, 24 | Person,Joe Hagin,Q6210158,,,,White House Deputy Chief of Staff for Operations,, 25 | Person,Hope Hicks,Q24851563,,,,White House Director of Strategic Communications,, 26 | Person,Dan Scavino,Q28076289,,,,White House Director of Social Media,, 27 | Person,Omarosa Manigault,Q542489,,,,Director of Communications for the White House Office of Public Engagement and Intergovernmental Affairs,, 28 | Person,Bill Stepien,Q4911001,,,,White House Political Director,, 29 | Person,Carl Icahn,Q981479,,,,Special Advisor to the President on Regulatory Reform,, 30 | Person,Jason Greenblatt,Q27829154,,,,Special Representative for International Negotiations,, 31 | Person,Don McGahn,Q5294332,,,,White House Counsel,, 32 | Person,Robert Lighthizer,Q28113710,,,,United States Trade Representative,, 33 | Person,Wilbur Ross,Q8000233,,,,Secretary of Commerce,, 34 | Person,Todd Ricketts,Q20685306,,,,Deputy Secretary of Commerce,, 35 | Person,James Mattis,Q267902,,,,Secretary of Defense,, 36 | Person,Vincent Viola,Q21062504,,,,United States Secretary of the Army,, 37 | Person,Betsy DeVos,Q4898286,,,,Secretary of Education,, 38 | Person,Rick Perry,Q215057,,,,Secretary of Energy,, 39 | Person,Ryan Zinke,Q7384672,,,,Secretary of the Interior,, 40 | Person,Rod J. Rosenstein,Q7356240,,,,Deputy Attorney General,, 41 | Person,Seema Verma,Q27927683,,,,Administrator of the Centers for Medicare and Medicaid Services,, 42 | Person,John F. Kelly,Q6232322,,,,Secretary of Homeland Security,, 43 | Person,Ben Carson,Q816459,,,,Secretary of Housing and Urban Development,, 44 | Person,Andrew Puzder,Q4758328,,,,Secretary of Labor,, 45 | Person,Rex W. Tillerson,Q331401,,,,Secretary of State,, 46 | Person,Nikki Haley,Q11668,,,,Ambassador to the United Nations,, 47 | Person,David Friedman,Q6496792,,,,Ambassador to Israel,, 48 | Person,William F. Hagerty,Q27734214,,,,Ambassador to Japan,, 49 | Person,Elaine Chao,Q263322,,,,Secretary of Transportation,, 50 | Person,Steven Mnuchin,Q24248265,,,,Secretary of the Treasury,, 51 | Person,Jay Clayton,Q28122984,,,,Chair of the Securities and Exchange Commission,, 52 | Person,David Shulkin,Q5239766,,,,Secretary of Veterans Affairs,, 53 | Person,Scott Pruitt,Q7437083,,,,Administrator of the Environmental Protection Agency,, 54 | Person,Linda McMahon,Q233905,,,,Administrator of the Small Business Administration,, 55 | Person,Dan Coats,Q632321,,,,Director of National Intelligence,, 56 | Private Sector Company,DynCorp,Q1268837,,,,,, 57 | Private Sector Company,DynCorp International,,,,,,, 58 | Private Sector Company,Dyncorp Aviation,,,,,,, 59 | Person,Sherrod Brown,Q381880,,,,Senator,,OH 60 | Person,Maria Cantwell,Q22250,,,,Senator,,WA 61 | Person,Benjamin L. Cardin,Q723295,,,,Senator,,MD 62 | Person,Thomas R. Carper,Q457432,,,,Senator,,DE 63 | Person,"Robert P. Casey, Jr.",Q887841,,,,Senator,,PA 64 | Person,Bob Corker,Q331719,,,,Senator,,TN 65 | Person,Dianne Feinstein,Q230733,,,,Senator,,CA 66 | Person,Orrin G. Hatch,Q381157,,,,Senator,,UT 67 | Person,Amy Klobuchar,Q22237,,,,Senator,,MN 68 | Person,Claire McCaskill,Q22260,,,,Senator,,MO 69 | Person,Robert Menendez,Q888132,,,,Senator,,NJ 70 | Person,Bill Nelson,Q358437,,,,Senator,,FL 71 | Person,Bernard Sanders,Q359442,,,,Senator,,VT 72 | Person,Debbie Stabenow,Q241092,,,,Senator,,MI 73 | Person,Jon Tester,Q529351,,,,Senator,,MT 74 | Person,Sheldon Whitehouse,Q652066,,,,Senator,,RI 75 | Person,John Barrasso,Q720521,,,,Senator,,WY 76 | Person,Roger F. Wicker,Q390491,,,,Senator,,MS 77 | Person,Lamar Alexander,Q419976,,,,Senator,,TN 78 | Person,Thad Cochran,Q723896,,,,Senator,,MS 79 | Person,Susan M. Collins,Q22279,,,,Senator,,ME 80 | Person,John Cornyn,Q719568,,,,Senator,,TX 81 | Person,Richard J. Durbin,Q434804,,,,Senator,,IL 82 | Person,Michael B. Enzi,Q432431,,,,Senator,,WY 83 | Person,Lindsey Graham,Q22212,,,,Senator,,SC 84 | Person,James M. Inhofe,Q723134,,,,Senator,,OK 85 | Person,Mitch McConnell,Q355522,,,,Senator,,KY 86 | Person,Jeff Merkley,Q1368405,,,,Senator,,OR 87 | Person,Jack Reed,Q6114775,,,,Senator,,RI 88 | Person,James E. Risch,Q721871,,,,Senator,,ID 89 | Person,Pat Roberts,Q538375,,,,Senator,,KS 90 | Person,Jeff Sessions,Q358443,,,,Senator,,AL 91 | Person,Jeanne Shaheen,Q270316,,,,Senator,,NH 92 | Person,Tom Udall,Q957690,,,,Senator,,NM 93 | Person,Mark R. Warner,Q453893,,,,Senator,,VA 94 | Person,Kirsten E. Gillibrand,Q22222,,,,Senator,,NY 95 | Person,Al Franken,Q319084,,,,Senator,,MN 96 | Person,Christopher A. Coons,Q923242,,,,Senator,,DE 97 | Person,"Joe Manchin, III",Q538868,,,,Senator,,WV 98 | Person,Robert B. Aderholt,Q672671,,,,Representative,,AL 99 | Person,Justin Amash,Q1714165,,,,Representative,,MI 100 | Person,Tammy Baldwin,Q40628,,,,Senator,,WI 101 | Person,Lou Barletta,Q25568,,,,Representative,,PA 102 | Person,Joe Barton,Q966261,,,,Representative,,TX 103 | Person,Karen Bass,Q461739,,,,Representative,,CA 104 | Person,Xavier Becerra,Q1855840,,,,Representative,,CA 105 | Person,Michael F. Bennet,Q554792,,,,Senator,,CO 106 | Person,Gus M. Bilirakis,Q1555314,,,,Representative,,FL 107 | Person,Rob Bishop,Q433857,,,,Representative,,UT 108 | Person,"Sanford D. Bishop, Jr.",Q983428,,,,Representative,,GA 109 | Person,Diane Black,Q515935,,,,Representative,,TN 110 | Person,Marsha Blackburn,Q458971,,,,Representative,,TN 111 | Person,Earl Blumenauer,Q748066,,,,Representative,,OR 112 | Person,Richard Blumenthal,Q2023708,,,,Senator,,CT 113 | Person,Roy Blunt,Q1525924,,,,Senator,,MO 114 | Person,John Boozman,Q1344707,,,,Senator,,AR 115 | Person,Madeleine Z. Bordallo,Q292988,,,,Representative,,GU 116 | Person,Kevin Brady,Q472241,,,,Representative,,TX 117 | Person,Robert A. Brady,Q434522,,,,Representative,,PA 118 | Person,Mo Brooks,Q1941306,,,,Representative,,AL 119 | Person,Vern Buchanan,Q2517229,,,,Representative,,FL 120 | Person,Larry Bucshon,Q944286,,,,Representative,,IN 121 | Person,Michael C. Burgess,Q539521,,,,Representative,,TX 122 | Person,Richard Burr,Q331278,,,,Senator,,NC 123 | Person,G. K. Butterfield,Q983532,,,,Representative,,NC 124 | Person,Ken Calvert,Q538978,,,,Representative,,CA 125 | Person,Shelley Moore Capito,Q459618,,,,Senator,,WV 126 | Person,Michael E. Capuano,Q551578,,,,Representative,,MA 127 | Person,André Carson,Q517649,,,,Representative,,IN 128 | Person,John R. Carter,Q369814,,,,Representative,,TX 129 | Person,Bill Cassidy,Q861999,,,,Senator,,LA 130 | Person,Kathy Castor,Q458492,,,,Representative,,FL 131 | Person,Steve Chabot,Q506694,,,,Representative,,OH 132 | Person,Jason Chaffetz,Q1683881,,,,Representative,,UT 133 | Person,Judy Chu,Q460035,,,,Representative,,CA 134 | Person,David N. Cicilline,Q506694,,,,Representative,,RI 135 | Person,Yvette D. Clarke,Q461679,,,,Representative,,NY 136 | Person,Wm. Lacy Clay,Q959455,,,,Representative,,MO 137 | Person,Emanuel Cleaver,Q1334654,,,,Representative,,MO 138 | Person,James E. Clyburn,Q1289889,,,,Representative,,SC 139 | Person,Mike Coffman,Q547218,,,,Representative,,CO 140 | Person,Steve Cohen,Q512330,,,,Representative,,TN 141 | Person,Tom Cole,Q173839,,,,Representative,,OK 142 | Person,K. Michael Conaway,Q538944,,,,Representative,,TX 143 | Person,Gerald E. Connolly,Q1514859,,,,Representative,,VA 144 | Person,"John Conyers, Jr.",Q1370968,,,,Representative,,MI 145 | Person,Jim Cooper,Q973737,,,,Representative,,TN 146 | Person,Jim Costa,Q675869,,,,Representative,,CA 147 | Person,Joe Courtney,Q5250917,,,,Representative,,CT 148 | Person,Mike Crapo,Q734319,,,,Senator,,ID 149 | Person,"Eric A. ""Rick"" Crawford",Q7331312,,,,Representative,,AR 150 | Person,Joseph Crowley,Q971318,,,,Representative,,NY 151 | Person,Henry Cuellar,Q539562,,,,Representative,,TX 152 | Person,John Abney Culberson,Q671976,,,,Representative,,TX 153 | Person,Elijah E. Cummings,Q934898,,,,Representative,,MD 154 | Person,Danny K. Davis,Q1164657,,,,Representative,,IL 155 | Person,Susan A. Davis,Q460675,,,,Representative,,CA 156 | Person,Peter A. DeFazio,Q1758507,,,,Representative,,OR 157 | Person,Diana DeGette,Q437159,,,,Representative,,CO 158 | Person,Rosa L. DeLauro,Q434952,,,,Representative,,CT 159 | Person,Jeff Denham,Q1686295,,,,Representative,,CA 160 | Person,Charles W. Dent,Q556034,,,,Representative,,PA 161 | Person,Scott DesJarlais,Q2260839,,,,Representative,,TN 162 | Person,Theodore E. Deutch,Q245724,,,,Representative,,FL 163 | Person,Mario Diaz-Balart,Q767270,,,,Representative,,FL 164 | Person,Lloyd Doggett,Q363817,,,,Representative,,TX 165 | Person,Joe Donnelly,Q1691395,,,,Senator,,IN 166 | Person,Michael F. Doyle,Q1344200,,,,Representative,,PA 167 | Person,Sean P. Duffy,Q1729888,,,,Representative,,WI 168 | Person,Jeff Duncan,Q11756263,,,,Representative,,SC 169 | Person,"John J. Duncan, Jr.",Q653994,,,,Representative,,TN 170 | Person,Keith Ellison,Q40589,,,,Representative,,MN 171 | Person,Eliot L. Engel,Q1329618,,,,Representative,,NY 172 | Person,Anna G. Eshoo,Q291193,,,,Representative,,CA 173 | Person,Blake Farenthold,Q881255,,,,Representative,,TX 174 | Person,Jeff Flake,Q929581,,,,Senator,,AZ 175 | Person,"Charles J. ""Chuck"" Fleischmann",Q521959,,,,Representative,,TN 176 | Person,Bill Flores,Q862103,,,,Representative,,TX 177 | Person,Jeff Fortenberry,Q1397331,,,,Representative,,NE 178 | Person,Virginia Foxx,Q458453,,,,Representative,,NC 179 | Person,Trent Franks,Q1397303,,,,Representative,,AZ 180 | Person,Rodney P. Frelinghuysen,Q338190,,,,Representative,,NJ 181 | Person,Marcia L. Fudge,Q461746,,,,Representative,,OH 182 | Person,John Garamendi,Q1340268,,,,Representative,,CA 183 | Person,Cory Gardner,Q1135774,,,,Senator,,CO 184 | Person,Bob Gibbs,Q887945,,,,Representative,,OH 185 | Person,Louie Gohmert,Q532647,,,,Representative,,TX 186 | Person,Bob Goodlatte,Q887952,,,,Representative,,VA 187 | Person,Paul A. Gosar,Q2059832,,,,Representative,,AZ 188 | Person,Trey Gowdy,Q1822266,,,,Representative,,SC 189 | Person,Kay Granger,Q468807,,,,Representative,,TX 190 | Person,Chuck Grassley,Q529294,,,,Senator,,IA 191 | Person,Sam Graves,Q465638,,,,Representative,,MO 192 | Person,Tom Graves,Q1647301,,,,Representative,,GA 193 | Person,Al Green,Q313260,,,,Representative,,TX 194 | Person,Gene Green,Q539587,,,,Representative,,TX 195 | Person,H. Morgan Griffith,Q1684857,,,,Representative,,VA 196 | Person,Raúl M. Grijalva,Q946606,,,,Representative,,AZ 197 | Person,Brett Guthrie,Q910794,,,,Representative,,KY 198 | Person,Luis V. Gutiérrez,Q718127,,,,Representative,,IL 199 | Person,Gregg Harper,Q1545023,,,,Representative,,MS 200 | Person,Andy Harris,Q506639,,,,Representative,,MD 201 | Person,Vicky Hartzler,Q375389,,,,Representative,,MO 202 | Person,Alcee L. Hastings,Q1758631,,,,Representative,,FL 203 | Person,Martin Heinrich,Q565374,,,,Senator,,NM 204 | Person,Jeb Hensarling,Q538785,,,,Representative,,TX 205 | Person,Jaime Herrera Beutler,Q168592,,,,Representative,,WA 206 | Person,Brian Higgins,Q505581,,,,Representative,,NY 207 | Person,James A. Himes,Q1689111,,,,Representative,,CT 208 | Person,Mazie K. Hirono,Q16476,,,,Senator,,HI 209 | Person,John Hoeven,Q374762,,,,Senator,,ND 210 | Person,Steny H. Hoyer,Q516515,,,,Representative,,MD 211 | Person,Bill Huizenga,Q862199,,,,Representative,,MI 212 | Person,Randy Hultgren,Q556404,,,,Representative,,IL 213 | Person,Duncan Hunter,Q527493,,,,Representative,,CA 214 | Person,Johnny Isakson,Q130024,,,,Senator,,GA 215 | Person,Darrell E. Issa,Q1166592,,,,Representative,,CA 216 | Person,Sheila Jackson Lee,Q461734,,,,Representative,,TX 217 | Person,Lynn Jenkins,Q456217,,,,Representative,,KS 218 | Person,Bill Johnson,Q353914,,,,Representative,,OH 219 | Person,Eddie Bernice Johnson,Q461526,,,,Representative,,TX 220 | Person,"Henry C. ""Hank"" Johnson, Jr.",Q983537,,,,Representative,,GA 221 | Person,Ron Johnson,Q611060,,,,Senator,,WI 222 | Person,Sam Johnson,Q539470,,,,Representative,,TX 223 | Person,Walter B. Jones,Q1126528,,,,Representative,,NC 224 | Person,Jim Jordan,Q186215,,,,Representative,,OH 225 | Person,Marcy Kaptur,Q436537,,,,Representative,,OH 226 | Person,William R. Keating,Q2579570,,,,Representative,,MA 227 | Person,Mike Kelly,Q1431761,,,,Representative,,PA 228 | Person,Ron Kind,Q505222,,,,Representative,,WI 229 | Person,Peter T. King,Q953554,,,,Representative,,NY 230 | Person,Steve King,Q749710,,,,Representative,,IA 231 | Person,Adam Kinzinger,Q349955,,,,Representative,,IL 232 | Person,Raúl R. Labrador,Q555393,,,,Representative,,ID 233 | Person,Doug Lamborn,Q371106,,,,Representative,,CO 234 | Person,Leonard Lance,Q1819021,,,,Representative,,NJ 235 | Person,James R. Langevin,Q1397290,,,,Representative,,RI 236 | Person,James Lankford,Q45940,,,,Senator,,OK 237 | Person,Rick Larsen,Q503529,,,,Representative,,WA 238 | Person,John B. Larson,Q357832,,,,Representative,,CT 239 | Person,Robert E. Latta,Q888061,,,,Representative,,OH 240 | Person,Patrick J. Leahy,Q59315,,,,Senator,,VT 241 | Person,Barbara Lee,Q289317,,,,Representative,,CA 242 | Person,Mike Lee,Q627098,,,,Senator,,UT 243 | Person,Sander M. Levin,Q971943,,,,Representative,,MI 244 | Person,John Lewis,Q359218,,,,Representative,,GA 245 | Person,Daniel Lipinski,Q518424,,,,Representative,,IL 246 | Person,Frank A. LoBiondo,Q616850,,,,Representative,,NJ 247 | Person,David Loebsack,Q771586,,,,Representative,,IA 248 | Person,Zoe Lofgren,Q218217,,,,Representative,,CA 249 | Person,Billy Long,Q863171,,,,Representative,,MO 250 | Person,Nita M. Lowey,Q460652,,,,Representative,,NY 251 | Person,Frank D. Lucas,Q430556,,,,Representative,,OK 252 | Person,Blaine Luetkemeyer,Q522181,,,,Representative,,MO 253 | Person,Ben Ray Luján,Q324256,,,,Representative,,NM 254 | Person,Stephen F. Lynch,Q2344921,,,,Representative,,MA 255 | Person,Carolyn B. Maloney,Q455833,,,,Representative,,NY 256 | Person,Kenny Marchant,Q368184,,,,Representative,,TX 257 | Person,Tom Marino,Q2439864,,,,Representative,,PA 258 | Person,Edward J. Markey,Q1282411,,,,Senator,,MA 259 | Person,Doris O. Matsui,Q399561,,,,Representative,,CA 260 | Person,John McCain,Q10390,,,,Senator,,AZ 261 | Person,Kevin McCarthy,Q416145,,,,Representative,,CA 262 | Person,Michael T. McCaul,Q539509,,,,Representative,,TX 263 | Person,Tom McClintock,Q535887,,,,Representative,,CA 264 | Person,Betty McCollum,Q434893,,,,Representative,,MN 265 | Person,James P. McGovern,Q1337459,,,,Representative,,MA 266 | Person,Patrick T. McHenry,Q2057809,,,,Representative,,NC 267 | Person,David B. McKinley,Q1175610,,,,Representative,,WV 268 | Person,Cathy McMorris Rodgers,Q293343,,,,Representative,,WA 269 | Person,Jerry McNerney,Q1344743,,,,Representative,,CA 270 | Person,Patrick Meehan,Q7147197,,,,Representative,,PA 271 | Person,Gregory W. Meeks,Q1545391,,,,Representative,,NY 272 | Person,Gwen Moore,Q461698,,,,Representative,,WI 273 | Person,Jerry Moran,Q1365787,,,,Senator,,KS 274 | Person,Mick Mulvaney,Q1235731,,,,Representative,,SC 275 | Person,Lisa Murkowski,Q22360,,,,Senator,,AK 276 | Person,Christopher Murphy,Q1077594,,,,Senator,,CT 277 | Person,Tim Murphy,Q2434181,,,,Representative,,PA 278 | Person,Patty Murray,Q258825,,,,Senator,,WA 279 | Person,Jerrold Nadler,Q505598,,,,Representative,,NY 280 | Person,Grace F. Napolitano,Q469139,,,,Representative,,CA 281 | Person,Richard E. Neal,Q1464697,,,,Representative,,MA 282 | Person,Kristi L. Noem,Q465749,,,,Representative,,SD 283 | Person,Eleanor Holmes Norton,Q461649,,,,Representative,,DC 284 | Person,Devin Nunes,Q539493,,,,Representative,,CA 285 | Person,Pete Olson,Q2073303,,,,Representative,,TX 286 | Person,Steven M. Palazzo,Q24230,,,,Representative,,MS 287 | Person,"Frank Pallone, Jr.",Q965289,,,,Representative,,NJ 288 | Person,"Bill Pascrell, Jr.",Q529090,,,,Representative,,NJ 289 | Person,Rand Paul,Q463557,,,,Senator,,KY 290 | Person,Erik Paulsen,Q466085,,,,Representative,,MN 291 | Person,Stevan Pearce,Q1206411,,,,Representative,,NM 292 | Person,Nancy Pelosi,Q170581,,,,Representative,,CA 293 | Person,Ed Perlmutter,Q331507,,,,Representative,,CO 294 | Person,Gary C. Peters,Q1494930,,,,Senator,,MI 295 | Person,Collin C. Peterson,Q434458,,,,Representative,,MN 296 | Person,Chellie Pingree,Q457243,,,,Representative,,ME 297 | Person,Ted Poe,Q532661,,,,Representative,,TX 298 | Person,Jared Polis,Q935734,,,,Representative,,CO 299 | Person,Mike Pompeo,Q473239,,,,Representative,,KS 300 | Person,Rob Portman,Q926069,,,,Senator,,OH 301 | Person,Bill Posey,Q862373,,,,Representative,,FL 302 | Person,David E. Price,Q440646,,,,Representative,,NC 303 | Person,Tom Price,Q358109,,,,Representative,,GA 304 | Person,Mike Quigley,Q11776365,,,,Representative,,IL 305 | Person,Tom Reed,Q2440035,,,,Representative,,NY 306 | Person,David G. Reichert,Q456464,,,,Representative,,WA 307 | Person,James B. Renacci,Q976676,,,,Representative,,OH 308 | Person,Cedric L. Richmond,Q561284,,,,Representative,,LA 309 | Person,Martha Roby,Q439117,,,,Representative,,AL 310 | Person,David P. Roe,Q1665842,,,,Representative,,TN 311 | Person,Harold Rogers,Q5662228,,,,Representative,,KY 312 | Person,Mike Rogers,Q693238,,,,Representative,,AL 313 | Person,Dana Rohrabacher,Q983055,,,,Representative,,CA 314 | Person,Todd Rokita,Q1521384,,,,Representative,,IN 315 | Person,Thomas J. Rooney,Q506110,,,,Representative,,FL 316 | Person,Ileana Ros-Lehtinen,Q265791,,,,Representative,,FL 317 | Person,Peter J. Roskam,Q968214,,,,Representative,,IL 318 | Person,Dennis A. Ross,Q1188940,,,,Representative,,FL 319 | Person,Lucille Roybal-Allard,Q469115,,,,Representative,,CA 320 | Person,Edward R. Royce,Q1282477,,,,Representative,,CA 321 | Person,Marco Rubio,Q324546,,,,Senator,,FL 322 | Person,C. A. Dutch Ruppersberger,Q981559,,,,Representative,,MD 323 | Person,Bobby L. Rush,Q888599,,,,Representative,,IL 324 | Person,Paul D. Ryan,Q203966,,,,Representative,,WI 325 | Person,Tim Ryan,Q7804210,,,,Representative,,OH 326 | Person,Gregorio Kilili Camacho Sablan,Q3116336,,,,Representative,,MP 327 | Person,John P. Sarbanes,Q984509,,,,Representative,,MD 328 | Person,Steve Scalise,Q1857141,,,,Representative,,LA 329 | Person,Janice D. Schakowsky,Q440885,,,,Representative,,IL 330 | Person,Adam B. Schiff,Q350843,,,,Representative,,CA 331 | Person,Kurt Schrader,Q1387868,,,,Representative,,OR 332 | Person,Charles E. Schumer,Q380900,,,,Senator,,NY 333 | Person,David Schweikert,Q1176561,,,,Representative,,AZ 334 | Person,Austin Scott,Q4823273,,,,Representative,,GA 335 | Person,David Scott,Q278656,,,,Representative,,GA 336 | Person,"Robert C. ""Bobby"" Scott",Q888668,,,,Representative,,VA 337 | Person,Tim Scott,Q561315,,,,Senator,,SC 338 | Person,"F. James Sensenbrenner, Jr.",Q952268,,,,Representative,,WI 339 | Person,José E. Serrano,Q460267,,,,Representative,,NY 340 | Person,Pete Sessions,Q437852,,,,Representative,,TX 341 | Person,Terri A. Sewell,Q461621,,,,Representative,,AL 342 | Person,Richard C. Shelby,Q472254,,,,Senator,,AL 343 | Person,Brad Sherman,Q672919,,,,Representative,,CA 344 | Person,John Shimkus,Q1701747,,,,Representative,,IL 345 | Person,Bill Shuster,Q862455,,,,Representative,,PA 346 | Person,Michael K. Simpson,Q549521,,,,Representative,,ID 347 | Person,Albio Sires,Q527509,,,,Representative,,NJ 348 | Person,Louise McIntosh Slaughter,Q299833,,,,Representative,,NY 349 | Person,Adam Smith,Q350916,,,,Representative,,WA 350 | Person,Adrian Smith,Q212070,,,,Representative,,NE 351 | Person,Christopher H. Smith,Q981167,,,,Representative,,NJ 352 | Person,Lamar Smith,Q6480915,,,,Representative,,TX 353 | Person,Jackie Speier,Q218544,,,,Representative,,CA 354 | Person,Steve Stivers,Q324099,,,,Representative,,OH 355 | Person,Linda T. Sánchez,Q291143,,,,Representative,,CA 356 | Person,Bennie G. Thompson,Q817877,,,,Representative,,MS 357 | Person,Mike Thompson,Q1323196,,,,Representative,,CA 358 | Person,Glenn Thompson,Q5569144,,,,Representative,,PA 359 | Person,Mac Thornberry,Q539444,,,,Representative,,TX 360 | Person,John Thune,Q462981,,,,Senator,,SD 361 | Person,Patrick J. Tiberi,Q603467,,,,Representative,,OH 362 | Person,Scott R. Tipton,Q782994,,,,Representative,,CO 363 | Person,Paul Tonko,Q1373548,,,,Representative,,NY 364 | Person,Patrick J. Toomey,Q971308,,,,Senator,,PA 365 | Person,Niki Tsongas,Q440246,,,,Representative,,MA 366 | Person,Michael R. Turner,Q505722,,,,Representative,,OH 367 | Person,Fred Upton,Q505236,,,,Representative,,MI 368 | Person,Chris Van Hollen,Q1077819,,,,Senator,,MD 369 | Person,Nydia M. Velázquez,Q434890,,,,Representative,,NY 370 | Person,Peter J. Visclosky,Q514660,,,,Representative,,IN 371 | Person,Tim Walberg,Q978618,,,,Representative,,MI 372 | Person,Greg Walden,Q1397359,,,,Representative,,OR 373 | Person,Timothy J. Walz,Q2434360,,,,Representative,,MN 374 | Person,Debbie Wasserman Schultz,Q50104,,,,Representative,,FL 375 | Person,Maxine Waters,Q461727,,,,Representative,,CA 376 | Person,Daniel Webster,Q106231,,,,Representative,,FL 377 | Person,Peter Welch,Q1112656,,,,Representative,,VT 378 | Person,Joe Wilson,Q928855,,,,Representative,,SC 379 | Person,Frederica S. Wilson,Q461504,,,,Representative,,FL 380 | Person,Robert J. Wittman,Q541251,,,,Representative,,VA 381 | Person,Steve Womack,Q1029527,,,,Representative,,AR 382 | Person,Rob Woodall,Q2156128,,,,Representative,,GA 383 | Person,Ron Wyden,Q529344,,,,Senator,,OR 384 | Person,John A. Yarmuth,Q699970,,,,Representative,,KY 385 | Person,Kevin Yoder,Q187037,,,,Representative,,KS 386 | Person,Don Young,Q1239590,,,,Representative,,AK 387 | Person,Todd Young,Q25483,,,,Senator,,IN 388 | Person,Dean Heller,Q251763,,,,Senator,,NV 389 | Person,Mark E. Amodei,Q23944,,,,Representative,,NV 390 | Person,Suzanne Bonamici,Q45946,,,,Representative,,OR 391 | Person,Suzan K. DelBene,Q2091892,,,,Representative,,WA 392 | Person,Thomas Massie,Q2426031,,,,Representative,,KY 393 | Person,"Donald M. Payne, Jr.",Q1240224,,,,Representative,,NJ 394 | Person,Brian Schatz,Q1827902,,,,Senator,,HI 395 | Person,Bill Foster,Q3639970,,,,Representative,,IL 396 | Person,Dina Titus,Q524440,,,,Representative,,NV 397 | Person,Tom Cotton,Q3090307,,,,Senator,,AR 398 | Person,Kyrsten Sinema,Q1556541,,,,Representative,,AZ 399 | Person,Doug LaMalfa,Q1703840,,,,Representative,,CA 400 | Person,Jared Huffman,Q3276717,,,,Representative,,CA 401 | Person,Ami Bera,Q3389105,,,,Representative,,CA 402 | Person,Paul Cook,Q363260,,,,Representative,,CA 403 | Person,Eric Swalwell,Q3466996,,,,Representative,,CA 404 | Person,David G. Valadao,Q3528567,,,,Representative,,CA 405 | Person,Julia Brownley,Q3577073,,,,Representative,,CA 406 | Person,Tony Cárdenas,Q3620422,,,,Representative,,CA 407 | Person,Raul Ruiz,Q3701994,,,,Representative,,CA 408 | Person,Mark Takano,Q399593,,,,Representative,,CA 409 | Person,Alan S. Lowenthal,Q3740782,,,,Representative,,CA 410 | Person,Juan Vargas,Q3791701,,,,Representative,,CA 411 | Person,Scott H. Peters,Q3791514,,,,Representative,,CA 412 | Person,Elizabeth H. Esty,Q3090454,,,,Representative,,CT 413 | Person,Ted S. Yoho,Q3090476,,,,Representative,,FL 414 | Person,Ron DeSantis,Q3105215,,,,Representative,,FL 415 | Person,Lois Frankel,Q3182451,,,,Representative,,FL 416 | Person,Doug Collins,Q5300373,,,,Representative,,GA 417 | Person,Tulsi Gabbard,Q32620,,,,Representative,,HI 418 | Person,Tammy Duckworth,Q3036410,,,,Senator,,IL 419 | Person,Rodney Davis,Q7356899,,,,Representative,,IL 420 | Person,Cheri Bustos,Q723148,,,,Representative,,IL 421 | Person,Jackie Walorski,Q3157413,,,,Representative,,IN 422 | Person,Susan W. Brooks,Q3225324,,,,Representative,,IN 423 | Person,Luke Messer,Q3225316,,,,Representative,,IN 424 | Person,Andy Barr,Q4760399,,,,Representative,,KY 425 | Person,Elizabeth Warren,Q434706,,,,Senator,,MA 426 | Person,Joseph P. Kennedy III,Q1707784,,,,Representative,,MA 427 | Person,John K. Delaney,Q2688821,,,,Representative,,MD 428 | Person,"Angus S. King, Jr.",Q544464,,,,Senator,,ME 429 | Person,Daniel T. Kildee,Q3880272,,,,Representative,,MI 430 | Person,Richard M. Nolan,Q2151594,,,,Representative,,MN 431 | Person,Ann Wagner,Q3917251,,,,Representative,,MO 432 | Person,Steve Daines,Q3200900,,,,Senator,,MT 433 | Person,Richard Hudson,Q7326584,,,,Representative,,NC 434 | Person,Robert Pittenger,Q3956848,,,,Representative,,NC 435 | Person,Mark Meadows,Q11775860,,,,Representative,,NC 436 | Person,George Holding,Q3956828,,,,Representative,,NC 437 | Person,Heidi Heitkamp,Q50597,,,,Senator,,ND 438 | Person,Kevin Cramer,Q3957020,,,,Representative,,ND 439 | Person,Deb Fischer,Q2580649,,,,Senator,,NE 440 | Person,Ann M. Kuster,Q3917208,,,,Representative,,NH 441 | Person,Michelle Lujan Grisham,Q3917203,,,,Representative,,NM 442 | Person,Grace Meng,Q5591303,,,,Representative,,NY 443 | Person,Hakeem S. Jeffries,Q5640425,,,,Representative,,NY 444 | Person,Sean Patrick Maloney,Q2262244,,,,Representative,,NY 445 | Person,Chris Collins,Q5106217,,,,Representative,,NY 446 | Person,Brad R. Wenstrup,Q892413,,,,Representative,,OH 447 | Person,Joyce Beatty,Q976417,,,,Representative,,OH 448 | Person,David P. Joyce,Q5235771,,,,Representative,,OH 449 | Person,Jim Bridenstine,Q3601035,,,,Representative,,OK 450 | Person,Markwayne Mullin,Q3448772,,,,Representative,,OK 451 | Person,Scott Perry,Q7437034,,,,Representative,,PA 452 | Person,Keith J. Rothfus,Q5978897,,,,Representative,,PA 453 | Person,Matt Cartwright,Q4111531,,,,Representative,,PA 454 | Person,Tom Rice,Q3956858,,,,Representative,,SC 455 | Person,Ted Cruz,Q2036942,,,,Senator,,TX 456 | Person,"Randy K. Weber, Sr.",Q556404,,,,Representative,,TX 457 | Person,Beto O'Rourke,Q4014532,,,,Representative,,TX 458 | Person,Joaquin Castro,Q1167934,,,,Representative,,TX 459 | Person,Roger Williams,Q391591,,,,Representative,,TX 460 | Person,Marc A. Veasey,Q4068811,,,,Representative,,TX 461 | Person,Filemon Vela,Q4069225,,,,Representative,,TX 462 | Person,Chris Stewart,Q1077768,,,,Representative,,UT 463 | Person,Tim Kaine,Q359888,,,,Senator,,VA 464 | Person,Derek Kilmer,Q4068828,,,,Representative,,WA 465 | Person,Denny Heck,Q4068793,,,,Representative,,WA 466 | Person,Mark Pocan,Q1900355,,,,Representative,,WI 467 | Person,Robin L. Kelly,Q3437091,,,,Representative,,IL 468 | Person,Mark Sanford,Q11669,,,,Representative,,SC 469 | Person,Jason Smith,Q1683991,,,,Representative,,MO 470 | Person,Cory A. Booker,Q1135767,,,,Senator,,NJ 471 | Person,Katherine M. Clark,Q6376330,,,,Representative,,MA 472 | Person,Bradley Byrne,Q4954892,,,,Representative,,AL 473 | Person,Dave Brat,Q17160419,,,,Representative,,VA 474 | Person,Donald Norcross,Q5294942,,,,Representative,,NJ 475 | Person,Alma S. Adams,Q4733597,,,,Representative,,NC 476 | Person,Gary J. Palmer,Q17386504,,,,Representative,,AL 477 | Person,J. French Hill,Q18631366,,,,Representative,,AR 478 | Person,Bruce Westerman,Q16197421,,,,Representative,,AR 479 | Person,Martha McSally,Q6774492,,,,Representative,,AZ 480 | Person,Ruben Gallego,Q16218474,,,,Representative,,AZ 481 | Person,Mark DeSaulnier,Q6767311,,,,Representative,,CA 482 | Person,Stephen Knight,Q7613060,,,,Representative,,CA 483 | Person,Pete Aguilar,Q7171821,,,,Representative,,CA 484 | Person,Ted Lieu,Q7693450,,,,Representative,,CA 485 | Person,Norma J. Torres,Q3343727,,,,Representative,,CA 486 | Person,Mimi Walters,Q6862199,,,,Representative,,CA 487 | Person,Ken Buck,Q1439421,,,,Representative,,CO 488 | Person,Carlos Curbelo,Q18914103,,,,Representative,,FL 489 | Person,"Earl L. ""Buddy"" Carter",Q16240994,,,,Representative,,GA 490 | Person,Jody B. Hice,Q6208081,,,,Representative,,GA 491 | Person,Barry Loudermilk,Q16731643,,,,Representative,,GA 492 | Person,Rick W. Allen,Q18683976,,,,Representative,,GA 493 | Person,Rod Blum,Q18684853,,,,Representative,,IA 494 | Person,David Young,Q442037,,,,Representative,,IA 495 | Person,Mike Bost,Q6846090,,,,Representative,,IL 496 | Person,Ralph Lee Abraham,Q973595,,,,Representative,,LA 497 | Person,Garret Graves,Q18686454,,,,Representative,,LA 498 | Person,Seth Moulton,Q18045052,,,,Representative,,MA 499 | Person,Bruce Poliquin,Q4978147,,,,Representative,,ME 500 | Person,John R. Moolenaar,Q16194212,,,,Representative,,MI 501 | Person,Mike Bishop,Q16196834,,,,Representative,,MI 502 | Person,David A. Trott,Q16982345,,,,Representative,,MI 503 | Person,Debbie Dingell,Q5248232,,,,Representative,,MI 504 | Person,Brenda L. Lawrence,Q4960712,,,,Representative,,MI 505 | Person,Tom Emmer,Q7815723,,,,Representative,,MN 506 | Person,Ryan K. Zinke,Q7384672,,,,Representative,,MT 507 | Person,David Rouzer,Q5239255,,,,Representative,,NC 508 | Person,Thomas MacArthur,Q18631218,,,,Representative,,NJ 509 | Person,Bonnie Watson Coleman,Q4942457,,,,Representative,,NJ 510 | Person,Lee M. Zeldin,Q16221257,,,,Representative,,NY 511 | Person,Kathleen M. Rice,Q6376887,,,,Representative,,NY 512 | Person,Elise M. Stefanik,Q18211057,,,,Representative,,NY 513 | Person,John Katko,Q18619043,,,,Representative,,NY 514 | Person,Steve Russell,Q20759843,,,,Representative,,OK 515 | Person,Ryan A. Costello,Q18631846,,,,Representative,,PA 516 | Person,Brendan F. Boyle,Q4960876,,,,Representative,,PA 517 | Person,John Ratcliffe,Q11776381,,,,Representative,,TX 518 | Person,Will Hurd,Q18639742,,,,Representative,,TX 519 | Person,Brian Babin,Q16979824,,,,Representative,,TX 520 | Person,Mia B. Love,Q18631846,,,,Representative,,UT 521 | Person,"Donald S. Beyer, Jr.",Q3036086,,,,Representative,,VA 522 | Person,Barbara Comstock,Q4858820,,,,Representative,,VA 523 | Person,Stacey E. Plaskett,Q18739104,,,,Representative,,VI 524 | Person,Dan Newhouse,Q16733285,,,,Representative,,WA 525 | Person,Glenn Grothman,Q5568836,,,,Representative,,WI 526 | Person,Alexander X. Mooney,Q4718026,,,,Representative,,WV 527 | Person,Evan H. Jenkins,Q11044698,,,,Representative,,WV 528 | Person,Aumua Amata Coleman Radewagen,Q18684027,,,,Representative,,AS 529 | Person,Daniel Sullivan,Q5218865,,,,Senator,,AK 530 | Person,David Perdue,Q17402717,,,,Senator,,GA 531 | Person,Joni Ernst,Q13475242,,,,Senator,,IA 532 | Person,Thom Tillis,Q7786750,,,,Senator,,NC 533 | Person,Mike Rounds,Q722503,,,,Senator,,SD 534 | Person,Mark Walker,Q16876455,,,,Representative,,NC 535 | Person,Ben Sasse,Q16192221,,,,Senator,,NE 536 | Person,"Daniel M. Donovan, Jr.",Q5216988,,,,Representative,,NY 537 | Person,Trent Kelly,Q20204915,,,,Representative,,MS 538 | Person,Darin LaHood,Q5222780,,,,Representative,,IL 539 | Person,Warren Davidson,Q24458117,,,,Representative,,OH 540 | Person,Colleen Hanabusa,Q276359,,,,Representative,,HI 541 | Person,James Comer,Q6131600,,,,Representative,,KY 542 | Person,Dwight Evans,Q5318152,,,,Representative,,PA 543 | Person,Kamala D. Harris,Q10853588,,,,Senator,,CA 544 | Person,John Kennedy,Q6250211,,,,Senator,,LA 545 | Person,Margaret Wood Hassan,Q24053,,,,Senator,,NH 546 | Person,Catherine Cortez Masto,Q5052604,,,,Senator,,NV 547 | Person,Bradley Scott Schneider,Q2923426,,,,Representative,,IL 548 | Person,Carol Shea-Porter,Q434112,,,,Representative,,NH 549 | Person,Tom O'Halleran,Q7817086,,,,Representative,,AZ 550 | Person,Andy Biggs,Q4760435,,,,Representative,,AZ 551 | Person,Ro Khanna,Q7339221,,,,Representative,,CA 552 | Person,Jimmy Panetta,Q27733776,,,,Representative,,CA 553 | Person,Salud O. Carbajal,Q27805429,,,,Representative,,CA 554 | Person,Nanette Diaz Barragán,Q21662745,,,,Representative,,CA 555 | Person,J. Luis Correa,Q6685454,,,,Representative,,CA 556 | Person,Lisa Blunt Rochester,Q26899141,,,,Representative,,DE 557 | Person,Matt Gaetz,Q16221742,,,,Representative,,FL 558 | Person,Neal P. Dunn,Q27733851,,,,Representative,,FL 559 | Person,John H. Rutherford,Q529349,,,,Representative,,FL 560 | Person,"Al Lawson, Jr.",Q4723052,,,,Representative,,FL 561 | Person,Stephanie N. Murphy,Q27804538,,,,Representative,,FL 562 | Person,Darren Soto,Q5225162,,,,Representative,,FL 563 | Person,Val Butler Demings,Q2517229,,,,Representative,,FL 564 | Person,Charlie Crist,Q374693,,,,Representative,,FL 565 | Person,Brian J. Mast,Q27733854,,,,Representative,,FL 566 | Person,Francis Rooney,Q5482337,,,,Representative,,FL 567 | Person,A. Drew Ferguson IV,Q5307173,,,,Representative,,GA 568 | Person,Raja Krishnamoorthi,Q7285471,,,,Representative,,IL 569 | Person,Jim Banks,Q16146788,,,,Representative,,IN 570 | Person,Trey Hollingsworth,Q27804536,,,,Representative,,IN 571 | Person,Roger W. Marshall,Q27943467,,,,Representative,,KS 572 | Person,Clay Higgins,Q25849505,,,,Representative,,LA 573 | Person,Mike Johnson,Q19880665,,,,Representative,,LA 574 | Person,Anthony G. Brown,Q4772558,,,,Representative,,MD 575 | Person,Jamie Raskin,Q640835,,,,Representative,,MD 576 | Person,Jack Bergman,Q6262116,,,,Representative,,MI 577 | Person,Paul Mitchell,Q7152552,,,,Representative,,MI 578 | Person,Jason Lewis,Q1683937,,,,Representative,,MN 579 | Person,Ted Budd,Q27733792,,,,Representative,,NC 580 | Person,Don Bacon,Q19757583,,,,Representative,,NE 581 | Person,Josh Gottheimer,Q6288908,,,,Representative,,NJ 582 | Person,Jacky Rosen,Q27825033,,,,Representative,,NV 583 | Person,Ruben Kihuen,Q7375978,,,,Representative,,NV 584 | Person,Thomas R. Suozzi,Q7794276,,,,Representative,,NY 585 | Person,Adriano Espaillat,Q4685569,,,,Representative,,NY 586 | Person,John J. Faso,Q5856885,,,,Representative,,NY 587 | Person,Claudia Tenney,Q5129263,,,,Representative,,NY 588 | Person,Brian K. Fitzpatrick,Q912161,,,,Representative,,PA 589 | Person,Lloyd Smucker,Q6662742,,,,Representative,,PA 590 | Person,Jenniffer González-Colón,Q16215793,,,,Representative,,PR 591 | Person,David Kustoff,Q26923148,,,,Representative,,TN 592 | Person,Vicente Gonzalez,Q5946897,,,,Representative,,TX 593 | Person,Jodey C. Arrington,Q6207815,,,,Representative,,TX 594 | Person,Scott Taylor,Q7437353,,,,Representative,,VA 595 | Person,A. Donald McEachin,Q4647699,,,,Representative,,VA 596 | Person,"Thomas A. Garrett, Jr.",Q16213961,,,,Representative,,VA 597 | Person,Pramila Jayapal,Q18978140,,,,Representative,,WA 598 | Person,Mike Gallagher,Q27842981,,,,Representative,,WI 599 | Person,Liz Cheney,Q5362573,,,,Representative,,WY 600 | Political Organization,"Donald Trump presidential campaign, 2016",Q20121517,,,,,, 601 | Private Sector Company,Goldman Sachs,Q193326,,,,,, 602 | Government Organization,United States Navy,Q11220,,,,,, 603 | Private University,George Washington University,Q432637,,,,,, 604 | Private Sector Company,ExxonMobil,Q156238,,,,,, 605 | Private Sector Company,Sullivan & Cromwell,Q3069699,,,,,, 606 | Senate Committee,SCNC,,United States Senate Caucus on International Narcotics Control,,,,, 607 | Senate Committee,SLET,,Senate Select Committee on Ethics,,,,, 608 | Senate Committee,SLIA,,Senate Committee on Indian Affairs,,,,, 609 | Senate Committee,SPAG,,Senate Special Committee on Aging,,,,, 610 | Senate Committee,SSAP,,Senate Committee on Appropriations,,,,, 611 | Senate Committee,SSAF,,"Senate Committee on Agriculture, Nutrition, and Forestry",,,,, 612 | Senate Committee,SSAS,,Senate Committee on Armed Services,,,,, 613 | Senate Committee,SSBK,,"Senate Committee on Banking, Housing, and Urban Affairs",,,,, 614 | Senate Committee,SSBU,,Senate Committee on the Budget,,,,, 615 | Senate Committee,SSCM,,"Senate Committee on Commerce, Science, and Transportation",,,,, 616 | Senate Committee,SSEG,,Senate Committee on Energy and Natural Resources,,,,, 617 | Senate Committee,SSEV,,Senate Committee on Environment and Public Works,,,,, 618 | Senate Committee,SSFI,,Senate Committee on Finance,,,,, 619 | Senate Committee,SSFR,,Senate Committee on Foreign Relations,,,,, 620 | Senate Committee,SSHR,,"Senate Committee on Health, Education, Labor, and Pensions",,,,, 621 | Senate Committee,SSGA,,Senate Committee on Homeland Security and Governmental Affairs,,,,, 622 | Senate Committee,SSJU,,Senate Committee on the Judiciary,,,,, 623 | Senate Committee,SSRA,,Senate Committee on Rules and Administration,,,,, 624 | Senate Committee,SSSB,,Senate Committee on Small Business and Entrepreneurship,,,,, 625 | Senate Committee,SSVA,,Senate Committee on Veterans' Affairs,,,,, 626 | Senate Committee,SLIN,,Senate Select Committee on Intelligence,,,,, 627 | Cabinet Position,Secretary of State,,,,,,, 628 | Cabinet Position,Secretary of Commerce,,,,,,, 629 | Cabinet Position,Secretary of Defense,,,,,,, 630 | Cabinet Position,Secretary of Education,,,,,,, 631 | Cabinet Position,Secretary of Energy,,,,,,, 632 | Cabinet Position,Secretary of Health and Human Services,,,,,,, 633 | Cabinet Position,Secretary of Homeland Security,,,,,,, 634 | Cabinet Position,Secretary of Housing and Urban Development,,,,,,, 635 | Cabinet Position,Attorney General,,,,,,, 636 | Cabinet Position,Secretary of Labor,,,,,,, 637 | Cabinet Position,Secretary of Transportation,,,,,,, 638 | Cabinet Position,Secretary of Veterans Affairs,,,,,,, 639 | Cabinet Position,Secretary of the Interior,,,,,,, 640 | Cabinet Position,Secretary of the Treasury,,,,,,, 641 | Cabinet Position,OMB Director,,,,,,, 642 | Cabinet Position,EPA Administrator,,,,,,, 643 | Cabinet Position,SBA Administrator,,,,,,, 644 | Cabinet Position,CIA Director,,,,,,, 645 | Cabinet Position,Director of National Intelligence,,,,,,, 646 | Cabinet Position,SEC Chairman,,,,,,, 647 | Cabinet Position,FCC Chairman,,,,,,, 648 | Cabinet Position,FDA Commissioner,,,,,,, 649 | House Committee,HSAG,,House Committee on Agriculture,,,,, 650 | House Committee,HSAP,,House Committee on Appropriations,,,,, 651 | House Committee,HSAS,,House Committee on Armed Services,,,,, 652 | House Committee,HSBA,,House Committee on Financial Services,,,,, 653 | House Committee,HSBU,,House Committee on the Budget,,,,, 654 | House Committee,HSED,,House Committee on Education and the Workforce,,,,, 655 | House Committee,HSFA,,House Committee on Foreign Affairs,,,,, 656 | House Committee,HSGO,,House Committee on Oversight and Government Reform,,,,, 657 | House Committee,HSHA,,House Committee on House Administration,,,,, 658 | House Committee,HSHM,,House Committee on Homeland Security,,,,, 659 | House Committee,HSIF,,House Committee on Energy and Commerce,,,,, 660 | House Committee,HSII,,House Committee on Natural Resources,,,,, 661 | House Committee,HLIG,,House Permanent Select Committee on Intelligence,,,,, 662 | House Committee,HSJU,,House Committee on the Judiciary,,,,, 663 | House Committee,HSPW,,House Committee on Transportation and Infrastructure,,,,, 664 | House Committee,HSRU,,House Committee on Rules,,,,, 665 | House Committee,HSSM,,House Committee on Small Business,,,,, 666 | House Committee,HSSO,,House Committee on Ethics,,,,, 667 | House Committee,HSSY,,"House Committee on Science, Space, and Technology",,,,, 668 | House Committee,HLZI,,House Select Committee on the Events Surrounding the 2012 Terrorist Attack in Benghazi,,,,, 669 | House Committee,HSVR,,House Committee on Veterans' Affairs,,,,, 670 | House Committee,HSWM,,House Committee on Ways and Means,,,,, 671 | Joint Committee,JCSE,,Commission on Security and Cooperation in Europe,,,,, 672 | Joint Committee,JSEC,,Joint Economic Committee,,,,, 673 | Joint Committee,JSLC,,Joint Committee on the Library,,,,, 674 | Joint Committee,JSPR,,Joint Committee on Printing,,,,, 675 | Joint Committee,JSTX,,Joint Committee on Taxation,,,,, 676 | Government Organization,NASA,Q23548,National Aeronautics and Space Administration,,,,, 677 | Private University,Hamilton College,Q3113011,,,,,, 678 | Private University,Harvard Kennedy School,Q49127,,,,,, 679 | Private University,Harvard University,Q13371,,,,,, 680 | Public University,Wayne State University,Q349055,,,,,, 681 | Public University,Florida International University,Q1065809,,,,,, 682 | Public University,University of Houston,Q1472358,,,,,, 683 | Private University,Bowdoin College,Q895401,,,,,, 684 | Private University,University of Richmond School of Law,Q4005921,,,,,, 685 | Private Sector Company,IBM,Q37156,,,,,, 686 | Nonprofit,Trump Foundation,,,,,,, 687 | Private Sector Company,Trump University,,,,,,, 688 | Government Organization,Florida Attorney General,,,,,,, 689 | Person,Pam Bondi,Q7128915,,,,Florida Attorney General,, 690 | Private Sector Company,And Justice For All,,,,,,, 691 | Ambassador,China,,U.S. Ambassador to China,,,,, 692 | Ambassador,Israel,,U.S. Ambassador to Israel,,,,, 693 | Person,Ivana Trump,Q242351,,,,,, 694 | Person,Melania Trump,Q432473,,,,,, 695 | Person,Marla Maples,Q2597050,,,,,, 696 | Person,Ivanka Trump,Q239411,,,,,, 697 | Person,Betsy McCaughey,Q4898310,,,,,, 698 | Person,Dick DeVos,Q5272818,,,,,, 699 | Person,Anita Thigpen Perry,Q4765651,,,,,, 700 | Person,Candy Carson,Q20177023,,,,,, 701 | Person,Michael Haley,Q22279202,,,,,, 702 | Person,Vince McMahon,Q44430,,,,,, 703 | Person,Connie Schultz,Q5161928,,,,,, 704 | Person,Richard C. Blum,Q7324532,,,,,, 705 | Person,John Bessler,Q6221766,,,,,, 706 | Person,Jane O'Meara Sanders,Q20165782,,,,,, 707 | Person,Sherrill Redmon,Q25016145,,,,,, 708 | Person,Gayle Conelly Manchin,Q5528787,,,,,, 709 | Person,Maya Rockeymoore,Q16975742,,,,,, 710 | Person,Rachel Campos-Duffy,Q2267027,,,,,, 711 | Person,Rosemary Wiedl King,Q20177036,,,,,, 712 | Person,Clifton Maloney,Q5133272,,,,,, 713 | Person,Cindy McCain,Q240628,,,,,, 714 | Person,Carol McCain,Q5044466,,,,,, 715 | Person,Brian Rodgers,Q20198267,,,,,, 716 | Person,Kelley Paul,Q19893979,,,,,, 717 | Person,Paul Pelosi,Q7152909,,,,,, 718 | Person,Donald Sussman,Q16107520,,,,,, 719 | Person,Jeanette Dousdebes Rubio,Q20176884,,,,,, 720 | Person,Janna Little,Q27831047,,,,,, 721 | Person,Iris Weinshall,Q6070286,,,,,, 722 | Person,Sid Williams,Q7507951,,,,,, 723 | Person,Caroline LeRoy,Q16466772,,,,,, 724 | Person,Michael H. Simon,Q6830879,,,,,, 725 | Person,Daniel C. Esty,Q3013817,,,,,, 726 | Person,Abraham Williams,Q22810617,,,,,, 727 | Person,Bruce Mann,Q4977945,,,,,, 728 | Person,Jim Warren,Q27826137,,,,,, 729 | Person,Heidi Cruz,Q20165784,,,,,, 730 | Person,Anne Holton,Q4768453,,,,,, 731 | Person,"John Dingell, Jr.",Q600393,,,,,, 732 | Person,Megan Beyer,Q6808633,,,,,, 733 | Person,Thomas Hassan,Q7790485,,,,,, 734 | Person,Carole Crist,Q5044674,,,,,, 735 | Person,Colette,Q218679,,,,,, 736 | Person,Donald Trump Jr.,Q3713655,,,,,, 737 | Person,Eric Trump,Q3731533,,,,,, 738 | Person,Tiffany Trump,Q12071552,,,,,, 739 | Person,Barron Trump,Q23000814,,,,,, 740 | Person,Arabella Rose Kushner,Q23000820,,,,,, 741 | Person,Joseph Frederick Kushner,Q23000821,,,,,, 742 | Person,Theodore James Kushner,Q23647575,,,,,, 743 | Person,Brett Icahn,Q16202347,,,,,, 744 | Person,Rhoeyce Carson,Q22575806,,,,,, 745 | Person,Murray Carson,Q22575807,,,,,, 746 | Person,Ben Carson Jr.,Q22575808,,,,,, 747 | Person,Stephanie McMahon,Q842633,,,,,, 748 | Person,Shane McMahon,Q861110,,,,,, 749 | Person,Alicia Menendez,Q4726284,,,,,, 750 | Person,Heather Bresch,Q5693758,,,,,, 751 | Person,Matt Blunt,Q881141,,,,,, 752 | Person,Duncan D. Hunter,Q540521,,,,,, 753 | Person,Meghan McCain,Q461063,,,,,, 754 | Person,James McCain,Q22810646,,,,,, 755 | Person,John Sidney McCain IV,Q22810652,,,,,, 756 | Person,Bridget McCain,Q22810653,,,,,, 757 | Person,Alexandra Pelosi,Q2325554,,,,,, 758 | Person,Christine Pelosi,Q5111145,,,,,, 759 | Person,"Paul Pelosi, Jr.",Q7152908,,,,,, 760 | Person,Fletcher Webster,Q5458826,,,,,, 761 | Person,Hollie Cook,Q3139364,,,,,, 762 | Person,Amelia Warren Tyagi,Q22673677,,,,,, 763 | Person,Alexander Warren,Q22673686,,,,,, 764 | Person,Lucas Babin,Q6696084,,,,,, -------------------------------------------------------------------------------- /queries.cypher: -------------------------------------------------------------------------------- 1 | -- Find orgs that have some issues with Doj and are lending money to people with influence over DoJ. 2 | MATCH (doj:`Government Organization` {name:"Department of Justice"}) 3 | MATCH (doj)-[r:`Regulatory Action`]->(org:`Private Sector Organization`) 4 | MATCH (org)-[d:Debt]->(org2:`Private Sector Organization`) 5 | MATCH (owner:`Person`)-[:Owner]->(org2) 6 | WHERE (owner)-[:`Direct Report`|:`Runs`*]->(doj) 7 | RETURN org, org2, owner 8 | --------------------------------------------------------------------------------