action fec_get_rad_analyst { label: "get_rad_analyst" description: "\nUse this endpoint to look up the RAD Analyst for a committee.\n\nThe mission of the Reports Analysis Division (RAD) is to ensure that\ncampaigns and political committees file timely and accurate reports that fully disclose\ntheir financial activities. RAD is responsible for reviewing statements and financial\nreports filed by political committees participating in federal elections, providing\nassistance and guidance to the committees to properly file their reports, and for taking\nappropriate action to ensure compliance with the Federal Election Campaign Act (FECA).\n" provider: fec method: GET path: "/rad-analyst/" encoding: json input: { type: "object" properties: { analyst_id: { type: "array" items: { type: "integer" format: "int32" } } analyst_short_id: { type: "array" items: { type: "integer" format: "int32" } } api_key: { type: "string" } committee_id: { type: "array" items: { type: "string" } } email: { type: "array" items: { type: "string" } } max_assignment_update_date: { type: "string" format: "date" } min_assignment_update_date: { type: "string" format: "date" } name: { 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" } telephone_ext: { type: "array" items: { type: "integer" format: "int32" } } title: { type: "array" items: { type: "string" } } } required: ["api_key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }