action fec_get_electioneering_totals_by_candidate { label: "get_electioneering_totals_by_candidate" description: "\nTotal electioneering communications spent on candidates by cycle\nor candidate election year\n" provider: fec method: GET path: "/electioneering/totals/by_candidate/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } candidate_id: { type: "array" items: { type: "string" } } cycle: { type: "array" items: { type: "integer" format: "int32" } } election_full: { type: "boolean" } 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" } } required: ["api_key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }