changedInput schema / properties / brand / description
Previous value: -"Brand name filter."New value: +"Brand name as Amazon spells it (case-insensitive), e.g. Samsung."
changedInput schema / properties / category_id / description
Previous value: -"Restrict to an Amazon category id."New value: +"Amazon browse node id to restrict to, e.g. 172282 (Electronics on US). Take one from a best_sellers answer's available_subcategories, a product's category_path, or node= in an Amazon URL. Ids differ per marketplace."
addedInput schema / properties / deal_type
Added value: +{
+ "anyOf": [
+ {
+ "enum": [
+ "today_deals",
+ "all_discounts",
+ "coupons",
+ "buy_more_save_more"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "A specific promotion refinement: today_deals, all_discounts, coupons or buy_more_save_more. available_filters.deal_type lists the ones this marketplace has.",
+ "title": "Deal Type"
+}
changedInput schema / properties / max_price / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "minimum": 0,
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / max_price / description
Previous value: -"Maximum price filter, marketplace currency."New value: +"Highest price, in the marketplace currency."
changedInput schema / properties / min_price / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "minimum": 0,
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / min_price / description
Previous value: -"Minimum price filter, marketplace currency."New value: +"Lowest price, in the marketplace currency; decimals such as 19.99 are fine."
changedInput schema / properties / page / description
Previous value: -"Result page, 1-based."New value: +"Result page, 1-based. metadata.total_pages says how far it goes."
changedInput schema / properties / product_condition / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "enum": [
+ "NEW",
+ "USED",
+ "RENEWED"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / product_condition / description
Previous value: -"Condition filter, e.g. NEW or USED."New value: +"NEW, USED or RENEWED (case-insensitive). Applied with the marketplace's own condition node; where a marketplace does not offer one, the answer's filters_ignored says so and available_filters lists what it does offer."
changedInput schema / properties / seller_id / description
Previous value: -"Restrict results to one seller."New value: +"Restrict results to one seller's offers (Amazon seller id)."
changedInput schema / properties / today_deals / description
Previous value: -"Restrict to items in today's deals."New value: +"Only items in Today's Deals, using that marketplace's own refinement. Where a marketplace has none (amazon.fr on 2026-09-08) it is reported under filters_ignored."
addedOutput schema / properties / amazon_request_count
Added value: +{
+ "default": null,
+ "title": "Amazon Request Count"
+}
addedOutput schema / properties / available_filters
Added value: +{
+ "default": null,
+ "title": "Available Filters"
+}
addedOutput schema / properties / filters_applied
Added value: +{
+ "default": null,
+ "title": "Filters Applied"
+}
addedOutput schema / properties / filters_ignored
Added value: +{
+ "default": null,
+ "title": "Filters Ignored"
+}