action figshare_article_files { label: "List article files" description: "Files list for article" provider: figshare method: GET path: "/articles/{article_id}/files" encoding: json input: { type: "object" properties: { article_id: { type: "integer" format: "int64" } } required: ["article_id"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "name", "size", "is_link_only", "download_url", "supplied_md5", "computed_md5"] properties: { computed_md5: { type: "string" description: "File computed md5" } download_url: { type: "string" format: "url" description: "Url for file download" } id: { type: "integer" format: "int64" description: "File id" } is_link_only: { type: "boolean" description: "True if file is hosted somewhere else" } name: { type: "string" description: "File name" } size: { type: "integer" format: "int64" description: "File size" } supplied_md5: { type: "string" description: "File supplied md5" } } } } }