action axesso_request_product { label: "lookup product information" description: "" provider: axesso method: GET path: "/amz/amazon-lookup-product" encoding: json input: { type: "object" properties: { size: { type: "string" } url: { type: "string" } } required: ["url"] additionalProperties: false } output: { type: "object" properties: { answeredQuestions: { type: "integer" format: "int64" } asin: { type: "string" } countReview: { type: "integer" format: "int64" } features: { type: "array" items: { type: "string" } } fulfilledBy: { type: "string" } manufacturer: { type: "string" } price: { type: "number" } priceSaving: { type: "string" } priceShippingInformation: { type: "string" } prime: { type: "boolean" } productRating: { type: "string" } productTitle: { type: "string" } responseMessage: { type: "string" } responseStatus: { type: "string" } retailPrice: { type: "number" } sizeSelection: { type: "array" items: { type: "string" } } soldBy: { type: "string" } warehouseAvailability: { type: "string" } } } }