action icons8_totals { label: "Totals" description: "" provider: icons8 method: GET path: "/api/iconsets/v3/total?since={since}" encoding: json input: { type: "object" properties: { since: { type: "string" } } required: ["since"] additionalProperties: false } output: { type: "object" properties: { parameters: { type: "object" description: "copy of the input parameters from the request" properties: { since: { type: "string" } } } result: { type: "object" description: "the result of operation" properties: { total: { type: "array" items: { type: "object" } } } } } } }