action fec_get_audit_category { label: "get_audit_category" description: "\nThis lists the options for the categories and subcategories available in the /audit-search/ endpoint.\n" provider: fec method: GET path: "/audit-category/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } page: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } primary_category_id: { type: "array" items: { type: "string" } } primary_category_name: { 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 } }