action figshare_project_details { label: "Public Project" description: "View a project" provider: figshare method: GET path: "/projects/{project_id}" encoding: json input: { type: "object" properties: { project_id: { type: "integer" format: "int64" } } required: ["project_id"] additionalProperties: false } output: { type: "object" required: ["collaborators", "description", "figshare_url", "funding", "funding_list", "id", "published_date", "title", "url"] properties: { collaborators: { type: "array" description: "List of project collaborators" items: { type: "object" required: ["role_name", "user_id", "name"] properties: { name: { type: "string" description: "Collaborator name" } role_name: { type: "string" description: "Collaborator role" } user_id: { type: "integer" description: "Collaborator id" } } } } description: { type: "string" description: "Project description" } figshare_url: { type: "string" description: "Project public url" } funding: { type: "string" description: "Project funding" } funding_list: { type: "array" description: "Full Project funding information" 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" } } } } } } }