action fec_get_communication_costs { label: "get_communication_costs" description: "\n52 U.S.C. 30118 allows \"communications by a corporation to its stockholders and executive or administrative personnel and their families or by a labor organization to its members and their families on any subject,\" including the express advocacy of the election or defeat of any Federal candidate. The costs of such communications must be reported to the Federal Election Commission under certain circumstances.\n" provider: fec method: GET path: "/communication_costs/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } candidate_id: { type: "array" items: { type: "string" } } committee_id: { type: "array" items: { type: "string" } } image_number: { type: "array" items: { type: "string" } } line_number: { type: "string" } max_amount: { type: "string" } max_date: { type: "string" format: "date" } max_image_number: { type: "string" } min_amount: { type: "string" } min_date: { type: "string" format: "date" } min_image_number: { 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" } support_oppose_indicator: { type: "array" items: { type: "string" enum: ["S", "O"] } } } required: ["api_key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }