action axesso_keyword_search { label: "fetch results auf a keyword search on Amazon" description: "" provider: axesso method: GET path: "/amz/amazon-search-by-keyword" encoding: json input: { type: "object" properties: { domainCode: { type: "string" } keyword: { type: "string" } numberOfProducts: { type: "integer" } sortBy: { type: "string" } } required: ["domainCode", "keyword"] additionalProperties: false } output: { type: "object" properties: { domainCode: { type: "string" } foundProducts: { type: "array" items: { type: "string" } } keyword: { type: "string" } numberOfProducts: { type: "integer" format: "int64" } responseMessage: { type: "string" } responseStatus: { type: "string" } sortStrategy: { type: "string" } } } }