action figshare_item_types_list { label: "Item Types" description: "Returns the list of Item Types of the requested group. If no user is authenticated, returns the item types available for Figshare." provider: figshare method: GET path: "/item_types" encoding: json input: { type: "object" properties: { group_id: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "name", "string_id", "icon", "public_description", "is_selectable", "url_name"] properties: { icon: { type: "string" description: "The string identifying the icon of the item type." } id: { type: "integer" format: "int64" description: "The ID of the item type." } is_selectable: { type: "boolean" description: "The selectable status" } name: { type: "string" description: "The name of the item type" } public_description: { type: "string" description: "The description of the item type." } string_id: { type: "string" description: "The string identifier of the item type." } url_name: { type: "string" description: "The URL name of the item type." } } } } }