action icons8_by_category { label: "By Category" description: "" provider: icons8 method: GET path: "/api/iconsets/v3/category?category={category}&subcategory={subcategory}&amount={amount}&offset={offset}&platform={platform}&language={language}" encoding: json input: { type: "object" properties: { amount: { type: "number" } category: { type: "string" } language: { type: "string" enum: ["en-US", "fr-FR", "de-DE", "it-IT", "pt-BR", "pl-PL", "ru-RU", "es-ES"] } offset: { type: "number" } platform: { type: "string" enum: ["ios7", "win8", "win10", "android", "androidL", "color", "office"] } subcategory: { type: "string" } } required: ["amount", "category", "language", "offset", "platform", "subcategory"] additionalProperties: false } output: { type: "object" properties: { parameters: { type: "object" description: "copy of the input parameters from the request" properties: { amount: { type: "number" } category: { type: "string" } language: { type: "string" } offset: { type: "string" } platform: { type: "string" } subcategory: { type: "string" } } } result: { type: "object" description: "the result of operation" properties: { category: { type: "array" items: { type: "object" } } } } } } }