action fec_get_candidate_candidate_id_committees_history { label: "get_candidate_candidate_id_committees_history" description: "\nExplore a filer's characteristics over time. This can be particularly useful if the\ncommittees change treasurers, designation, or `committee_type`.\n" provider: fec method: GET path: "/candidate/{candidate_id}/committees/history/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } candidate_id: { type: "string" } designation: { type: "array" items: { type: "string" enum: ["", "A", "J", "P", "U", "B", "D"] } } 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"] additionalProperties: false } output: { type: "object" additionalProperties: true } }