action fec_get_schedules_schedule_a_by_size_by_candidate { label: "get_schedules_schedule_a_by_size_by_candidate" description: "\nThis endpoint provides itemized individual contributions received by a committee, aggregated by size of contribution and candidate. 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" provider: fec method: GET path: "/schedules/schedule_a/by_size/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", "candidate_id", "cycle"] additionalProperties: false } output: { type: "object" additionalProperties: true } }