action figshare_private_project_article_details { label: "Project article details" description: "Project article details" provider: figshare method: GET path: "/account/projects/{project_id}/articles/{article_id}" encoding: json output: { type: "object" required: ["categories", "citation", "confidential_reason", "created_date", "defined_type", "defined_type_name", "description", "doi", "embargo_date", "embargo_reason", "embargo_title", "embargo_type", "funding", "funding_list", "group_id", "handle", "has_linked_file", "id", "is_active", "is_confidential", "is_embargoed", "is_metadata_record", "is_public", "license", "metadata_reason", "modified_date", "published_date", "references", "size", "status", "tags", "thumb", "timeline", "title", "url", "url_private_api", "url_private_html", "url_public_api", "url_public_html", "version"] properties: { categories: { type: "array" description: "List of categories selected for the article" 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" } } } } citation: { type: "string" description: "Article citation" } confidential_reason: { type: "string" description: "Confidentiality reason" } created_date: { type: "string" description: "Date when article was created" } description: { type: "string" description: "Article description" } embargo_date: { type: "string" description: "Date when embargo lifts" } embargo_reason: { type: "string" description: "Reason for embargo" } embargo_title: { type: "string" description: "Title for embargo" } embargo_type: { type: "string" description: "Article embargo" } funding: { type: "string" description: "Article funding" } funding_list: { type: "array" items: { type: "integer" } } has_linked_file: { type: "boolean" description: "True if any files are linked to the article" } is_active: { type: "boolean" description: "True if article is active" } is_confidential: { type: "boolean" description: "Article Confidentiality" } is_embargoed: { type: "boolean" description: "True if article is embargoed" } is_metadata_record: { type: "boolean" description: "True if article has no files" } is_public: { type: "boolean" description: "True if article is published" } license: { type: "object" required: ["name", "url", "value"] properties: { name: { type: "string" description: "License name" } url: { type: "string" format: "url" description: "License url" } value: { type: "integer" format: "int64" description: "License value" } } } metadata_reason: { type: "string" description: "Article metadata reason" } modified_date: { type: "string" description: "Date when article was last modified" } references: { type: "array" description: "List of references" items: { type: "string" format: "url" } } size: { type: "integer" format: "int64" description: "Article size" } status: { type: "string" description: "Article status" } tags: { type: "array" description: "List of article tags" items: { type: "string" } } version: { type: "integer" format: "int64" description: "Article version" } } } }