action fec_get_election_dates { label: "get_election_dates" description: "\nFEC election dates since 1995.\n" provider: fec method: GET path: "/election-dates/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } election_district: { type: "array" items: { type: "string" } } election_party: { type: "array" items: { type: "string" } } election_state: { type: "array" items: { type: "string" } } election_type_id: { type: "array" items: { type: "string" } } election_year: { type: "array" items: { type: "string" } } max_create_date: { type: "string" format: "date" } max_election_date: { type: "string" format: "date" } max_primary_general_date: { type: "string" format: "date" } max_update_date: { type: "string" format: "date" } min_create_date: { type: "string" format: "date" } min_election_date: { type: "string" format: "date" } min_primary_general_date: { type: "string" format: "date" } min_update_date: { type: "string" format: "date" } office_sought: { type: "array" items: { type: "string" enum: ["H", "S", "P"] } } 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" } } required: ["api_key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }