action fec_get_communication_costs_aggregates { label: "get_communication_costs_aggregates" description: "Communication cost aggregated by candidate ID and committee ID." provider: fec method: GET path: "/communication_costs/aggregates/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } candidate_id: { type: "array" items: { type: "string" } } committee_id: { type: "array" items: { type: "string" } } cycle: { type: "array" items: { type: "integer" format: "int32" } } 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: "string" enum: ["S", "O"] } } required: ["api_key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }