action icons8_by_keyword_v4 { label: "By Keyword v4" description: "" provider: icons8 method: GET path: "/api/iconsets/v4/search?term={term}&amount={amount}&offset={offset}&platform={platform}&language={language}&exact_amount={exact_amount}" encoding: json input: { type: "object" properties: { amount: { type: "number" } language: { type: "string" enum: ["en-US", "fr-FR", "de-DE", "it-IT", "pt-BR", "pl-PL", "ru-RU", "es-ES", "zh-CN", "ja-JP"] } offset: { type: "number" } platform: { type: "string" enum: ["all", "ios7", "ios11", "win8", "win10", "android", "androidL", "color", "office", "ultraviolet", "nolan", "p1em", "dotty", "dusk", "Dusk_Wired", "cotton", "doodle", "flat_round"] } term: { type: "string" } } required: ["amount", "language", "offset", "platform", "term"] additionalProperties: false } output: { type: "object" properties: { icons: { type: "array" description: "the result of operation" items: { type: "object" } } parameters: { type: "object" description: "copy of the input parameters from the request" properties: { "amount `50`": { type: "string" } language: { type: "string" } offset: { type: "string" } platform: { type: "string" } term: { type: "string" } } } } } }