action figshare_private_licenses_list { label: "Private Account Licenses" description: "This is a private endpoint that requires OAuth. It will return a list with figshare public licenses AND licenses defined for account's institution." provider: figshare method: GET path: "/account/licenses" encoding: json output: { type: "array" items: { type: "object" required: ["value", "name", "url"] properties: { name: { type: "string" description: "License name" } url: { type: "string" format: "url" description: "License url" } value: { type: "integer" format: "int64" description: "License value" } } } } }