action fec_get_calendar_dates { label: "get_calendar_dates" description: "\nCombines the election and reporting dates with Commission meetings, conferences, outreach, Advisory Opinions, rules, litigation dates and other\nevents into one calendar.\n\nState and report type filtering is no longer available.\n" provider: fec method: GET path: "/calendar-dates/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } calendar_category_id: { type: "array" items: { type: "integer" format: "int32" } } description: { type: "array" items: { type: "string" } } event_id: { type: "integer" format: "int32" } max_end_date: { type: "string" format: "date" } max_start_date: { type: "string" format: "date" } min_end_date: { type: "string" format: "date" } min_start_date: { type: "string" format: "date" } 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" } summary: { type: "array" items: { type: "string" } } } required: ["api_key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }