action fec_get_schedules_schedule_a_by_state_by_candidate_totals { label: "get_schedules_schedule_a_by_state_by_candidate_totals" description: "\nItemized individual contributions aggregated by contributor’s state, candidate, committee type and cycle. If you are interested in our “is_individual” methodology, review the [methodology page](https://www.fec.gov/campaign-finance-data/about-campaign-finance-data/methodology). Unitemized individual contributions are not included.\n\n" provider: fec method: GET path: "/schedules/schedule_a/by_state/by_candidate/totals/" 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", "candidate_id", "cycle"] additionalProperties: false } output: { type: "object" additionalProperties: true } }