action fec_get_schedules_schedule_e_by_candidate { label: "get_schedules_schedule_e_by_candidate" description: "\nSchedule E receipts aggregated by recipient candidate. To avoid double\ncounting, memoed items are not included.\n" provider: fec method: GET path: "/schedules/schedule_e/by_candidate/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } candidate_id: { type: "array" items: { type: "string" } } committee_id: { type: "array" items: { type: "string" } } cycle: { type: "array" items: { type: "integer" format: "int32" } } district: { type: "string" } election_full: { type: "boolean" } office: { type: "string" enum: ["house", "senate", "president"] } page: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } sort: { type: "string" } sort_hide_null: { type: "boolean" } sort_null_only: { type: "boolean" } sort_nulls_last: { type: "boolean" } state: { type: "string" } support_oppose: { type: "string" enum: ["S", "O"] } } required: ["api_key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }