action fec_get_efile_filings { label: "get_efile_filings" description: "Basic information about electronic files coming into the FEC, posted as they are received." provider: fec method: GET path: "/efile/filings/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } committee_id: { type: "array" items: { type: "string" } } file_number: { type: "array" items: { type: "integer" format: "int32" } } max_receipt_date: { type: "string" format: "date" } min_receipt_date: { type: "string" format: "date" } page: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } q_filer: { type: "array" items: { type: "string" } } 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 } }