action figshare_account_institution_curations { label: "Institution Curation Reviews" description: "Retrieve a list of curation reviews for this institution" provider: figshare method: GET path: "/account/institution/reviews" encoding: json input: { type: "object" properties: { article_id: { type: "integer" format: "int64" } group_id: { type: "integer" format: "int64" } limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } status: { type: "string" enum: ["pending", "approved", "rejected", "closed"] } } additionalProperties: false } output: { type: "object" required: ["account_id", "article_id", "assigned_to", "comments_count", "created_date", "group_id", "id", "modified_date", "review_date", "status", "version"] properties: { account_id: { type: "integer" format: "int64" description: "The ID of the account of the owner of the article of this review." } article_id: { type: "integer" format: "int64" description: "The ID of the article of this review." } assigned_to: { type: "integer" format: "int64" description: "The ID of the account to which this review is assigned." } comments_count: { type: "integer" format: "int64" description: "The number of comments in the review." } created_date: { type: "string" description: "The creation date of the review." } group_id: { type: "integer" format: "int64" description: "The group in which the article is present." } id: { type: "integer" format: "int64" description: "The review id" } modified_date: { type: "string" description: "The date the review has been modified." } review_date: { type: "string" description: "The last time a comment has been added to the review." } status: { type: "string" description: "The status of the review." enum: ["pending", "approved", "rejected", "closed"] } version: { type: "integer" format: "int64" description: "The Version number of the article in review." } } } }