r_objection_issue
37,264 rows
This data as json, CSV (advanced)
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE "r_objection_issue" (
"election_id" text,
"sequence" integer,
"objection_issue_date" text,
"objection_party" text,
"objection_issue" text,
"objection_action" integer,
"objection_result" integer,
FOREIGN KEY (election_id) REFERENCES r_election (election_id),
FOREIGN KEY ([objection_party]) REFERENCES[l_case_party] ([party]),
FOREIGN KEY ([objection_issue]) REFERENCES[l_r_objection_issue] ([objection_issue]),
FOREIGN KEY ([objection_action]) REFERENCES[l_r_obj_act_type] ([objection_action]),
FOREIGN KEY ([objection_result]) REFERENCES[l_r_obj_act_result] ([objection_result])
);