addedInput schema / properties / category / description
Added value: +"Catalogue category. One of: electronics, apparel, home_goods, beauty, sports, kitchenware, office_supplies, toys, food_beverage, tools, other."
addedInput schema / properties / category / enum
Added value: +[
+ "electronics",
+ "apparel",
+ "home_goods",
+ "beauty",
+ "sports",
+ "kitchenware",
+ "office_supplies",
+ "toys",
+ "food_beverage",
+ "tools",
+ "other"
+]
addedInput schema / properties / quantity / description
Added value: +"Lot size being priced; recommendations scale with volume."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "discount_from_retail": {
+ "description": "Percent below original retail.",
+ "type": "number"
+ },
+ "factors": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "price_range": {
+ "properties": {
+ "high": {
+ "type": "number"
+ },
+ "low": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "low",
+ "high"
+ ],
+ "type": "object"
+ },
+ "recommended_price": {
+ "type": "number"
+ },
+ "tips": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "recommended_price",
+ "price_range",
+ "discount_from_retail",
+ "factors",
+ "tips"
+ ],
+ "type": "object"
+}