action figshare_private_article_categories_list { label: "List article categories" description: "List article categories" provider: figshare method: GET path: "/account/articles/{article_id}/categories" encoding: json output: { type: "array" items: { type: "object" required: ["parent_id", "id", "title", "path", "source_id", "taxonomy_id"] properties: { id: { type: "integer" format: "int64" description: "Category id" } parent_id: { type: "integer" format: "int64" description: "Parent category" } path: { type: "string" description: "Path to all ancestor ids" } source_id: { type: "string" description: "ID in original standard taxonomy" } taxonomy_id: { type: "integer" format: "int64" description: "Internal id of taxonomy the category is part of" } title: { type: "string" description: "Category title" } } } } }