contribution_reports_24_hours
Data source: 497
0 rows where contributor_employer = 26 sorted by report_date descending
This data as json
0 records
CREATE TABLE "contribution_reports_24_hours" ( "filer_id" INTEGER, "filer_name" INTEGER, "committee_type" TEXT, "report_date" TEXT, "report_start_date" TEXT, "report_end_date" TEXT, "election_date" TEXT, "transaction_id" TEXT, "entity_type" TEXT, "entity_last_name" TEXT, "entity_first_name" TEXT, "entity_prefix" TEXT, "entity_suffix" TEXT, "entity_city" TEXT, "entity_state" TEXT, "entity_zipcode" TEXT, "contributor_employer" INTEGER, "contributor_occupation" TEXT, "contributor_self_employed" TEXT, "contribution_date" TEXT, "amount" NUMERIC, "committee_id" INTEGER, "candidate_last_name" TEXT, "candidate_first_name" TEXT, "candidate_prefix" TEXT, "candidate_suffix" TEXT, "office_sought" TEXT, "office_jurisdiction" TEXT, "district_number" TEXT, "incumbent" TEXT, "ballot_measure_name" TEXT, "ballot_measure_number" TEXT, "ballot_measure_jurisdiction" TEXT, "memo_reference_number" TEXT , FOREIGN KEY ("filer_id") REFERENCES [filer_ids](id), FOREIGN KEY ("filer_name") REFERENCES [filer_names](id), FOREIGN KEY ("committee_id") REFERENCES [committee_ids](id), FOREIGN KEY ("contributor_employer") REFERENCES [businesses](id)); CREATE INDEX ["contribution_reports_24_hours_filer_id"] ON [contribution_reports_24_hours]("filer_id"); CREATE INDEX ["contribution_reports_24_hours_filer_name"] ON [contribution_reports_24_hours]("filer_name"); CREATE INDEX ["contribution_reports_24_hours_committee_id"] ON [contribution_reports_24_hours]("committee_id"); CREATE INDEX ["contribution_reports_24_hours_contributor_employer"] ON [contribution_reports_24_hours]("contributor_employer");