action fec_get_presidential_contributions_by_size { label: "get_presidential_contributions_by_size" description: "\nContribution receipts by size per candidate.\n\nFilter by candidate_id, election_year and/or size\n" provider: fec method: GET path: "/presidential/contributions/by_size/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } candidate_id: { type: "array" items: { type: "string" } } election_year: { 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 } }