action icons8_by_keyword_v3 { label: "By Keyword v3" description: "" provider: icons8 method: GET path: "/api/iconsets/v3/search?term={term}&amount={amount}&offset={offset}&platform={platform}&language={language}&exact_amount={exact_amount}" encoding: json input: { type: "object" properties: { amount: { type: "number" } exact_amount: { type: "boolean" } 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"] } term: { type: "string" } } required: ["amount", "exact_amount", "language", "offset", "platform", "term"] additionalProperties: false } output: { type: "object" properties: { parameters: { type: "object" description: "copy of the input parameters from the request" properties: { amount: { type: "number" } language: { type: "string" } offset: { type: "string" } platform: { type: "string" } term: { type: "string" } } } result: { type: "object" description: "the result of operation" properties: { search: { type: "array" items: { type: "object" } } } } } } }