action figshare_private_project_details { label: "View project details" description: "View a private project" provider: figshare method: GET path: "/account/projects/{project_id}" encoding: json output: { type: "object" required: ["account_id", "collaborators", "created_date", "custom_fields", "description", "figshare_url", "funding", "funding_list", "group_id", "id", "modified_date", "published_date", "quota", "role", "storage", "title", "url", "used_quota", "used_quota_private", "used_quota_public"] properties: { account_id: { type: "integer" format: "int64" description: "ID of the account owning the project" } 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" } } } } created_date: { type: "string" description: "Date when project was created" } custom_fields: { type: "array" description: "Collection custom fields" items: { type: "object" required: ["name", "value", "is_mandatory"] properties: { is_mandatory: { type: "boolean" description: "True if field completion is mandatory" } name: { type: "string" description: "Custom metadata name" } value: { type: "string" description: "Custom metadata value" } } } } 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" } } } } group_id: { type: "integer" format: "int64" description: "Group of project if any" } modified_date: { type: "string" description: "Date when project was last modified" } quota: { type: "integer" format: "int64" description: "Project quota" } used_quota: { type: "integer" format: "int64" description: "Project used quota" } used_quota_private: { type: "integer" format: "int64" description: "Project private quota used" } used_quota_public: { type: "integer" format: "int64" description: "Project public quota used" } } } }