action figshare_account_institution_curation_comments { label: "Institution Curation Review Comments" description: "Retrieve a certain curation review's comments." provider: figshare method: GET path: "/account/institution/review/{curation_id}/comments" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int64" } offset: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "object" required: ["account_id", "id", "text", "type"] properties: { account_id: { type: "integer" format: "int64" description: "The ID of the account which generated this comment." } id: { type: "integer" format: "int64" description: "The ID of the comment." } text: { type: "string" description: "The value/content of the comment." } type: { type: "string" description: "The ID of the account which generated this comment." enum: ["comment", "approved", "rejected", "closed"] } } } }