action fec_get_candidates_totals_by_office_by_party { label: "get_candidates_totals_by_office_by_party" description: " Aggregated candidate receipts and disbursements grouped by office by party by cycle.\n" provider: fec method: GET path: "/candidates/totals/by_office/by_party/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } election_full: { type: "boolean" } election_year: { type: "array" items: { type: "integer" format: "int32" } } is_active_candidate: { type: "boolean" } office: { type: "string" enum: ["", "H", "S", "P"] } 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 } }