action figshare_private_article_embargo_details { label: "Article Embargo Details" description: "View a private article embargo details" provider: figshare method: GET path: "/account/articles/{article_id}/embargo" encoding: json output: { type: "object" required: ["embargo_date", "embargo_options", "embargo_reason", "embargo_title", "embargo_type", "is_embargoed"] properties: { embargo_date: { type: "string" description: "Date when embargo lifts" } embargo_options: { type: "array" description: "List of embargo permissions that are associated with the article. If the type is logged_in and the group_ids list is empty, then the whole institution can see the article; if there are multiple group_ids, then only users that are under those groups can see the article." items: { type: "object" } } embargo_reason: { type: "string" description: "Reason for embargo" } embargo_title: { type: "string" description: "Title for embargo" } embargo_type: { type: "string" description: "Embargo type" } is_embargoed: { type: "boolean" description: "True if embargoed" } } } }