action figshare_private_funding_search { label: "Search Funding" description: "Search for fundings" provider: figshare method: POST path: "/account/funding/search" encoding: json input: { type: "object" properties: { search_for: { type: "string" description: "Search term" } } } output: { type: "array" items: { type: "object" required: ["id", "title", "grant_code", "funder_name", "is_user_defined", "url"] properties: { funder_name: { type: "string" description: "Funder's name" } grant_code: { type: "string" description: "The grant code" } id: { type: "integer" format: "int64" description: "Funding id" } is_user_defined: { type: "boolean" description: "Return whether the grant has been introduced manually" } title: { type: "string" description: "The funding name" } url: { type: "string" format: "url" description: "The grant url" } } } } }