action fec_get_schedules_schedule_a_by_size { label: "get_schedules_schedule_a_by_size" description: "\nThis endpoint provides individual contributions received by a committee, aggregated by size:\n\n```\n - $200 and under\n - $200.01 - $499.99\n - $500 - $999.99\n - $1000 - $1999.99\n - $2000 +\n```\n\nThe $200.00 and under category includes contributions of $200 or less combined with unitemized individual contributions.\n" provider: fec method: GET path: "/schedules/schedule_a/by_size/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } committee_id: { type: "array" items: { type: "string" } } cycle: { type: "array" items: { type: "integer" format: "int32" } } page: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } size: { type: "array" items: { type: "integer" format: "int32" enum: [0, 200, 500, 1000, 2000] } } 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 } }