action fec_get_reporting_dates { label: "get_reporting_dates" description: "\nFEC election dates since 1995.\n" provider: fec method: GET path: "/reporting-dates/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } max_create_date: { type: "string" format: "date" } max_due_date: { type: "string" format: "date" } max_update_date: { type: "string" format: "date" } min_create_date: { type: "string" format: "date" } min_due_date: { type: "string" format: "date" } min_update_date: { type: "string" format: "date" } page: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } report_type: { type: "array" items: { type: "string" } } report_year: { type: "array" items: { 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"] additionalProperties: false } output: { type: "object" additionalProperties: true } }