action fec_get_schedules_schedule_a_by_occupation { label: "get_schedules_schedule_a_by_occupation" description: "\nThis endpoint provides itemized individual contributions received by a committee, aggregated by the contributor’s occupation. 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_occupation/" 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" } } occupation: { type: "array" items: { type: "string" } } 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 } }