action shop_details { label: "Return more details about a list of products." provider: shop method: GET path: "/openai/details" encoding: json input: { type: "object" properties: { ids: { type: "string" } } required: ["ids"] additionalProperties: false } output: { type: "object" properties: { results: { type: "array" items: { type: "object" description: "The list of products matching the search" properties: { currency_code: { type: "string" description: "The currency that the price is in" } description: { type: "string" description: "The description of the product" } price: { type: "number" format: "string" description: "The price of the product" } title: { type: "string" description: "The title of the product" } url: { type: "string" description: "The url of the product page for this product" } } } } } } }