addedInput schema / properties / data / properties / acquisition_type
Added value: +{
+ "enum": [
+ "normal",
+ "lottery"
+ ],
+ "type": "string"
+}
addedInput schema / properties / data / properties / barcode_image_url
Added value: +{
+ "format": "uri",
+ "type": "string"
+}
changedInput schema / properties / data / properties / coupon_code / maxLength
Previous value: -20New value: +16
changedInput schema / properties / data / properties / description / maxLength
Previous value: -300New value: +1000
addedInput schema / properties / data / properties / discount_type
Added value: +{
+ "description": "percentage (default) | fixed (amount off) | explicit (before→after price).",
+ "enum": [
+ "percentage",
+ "fixed",
+ "explicit"
+ ],
+ "type": "string"
+}
addedInput schema / properties / data / properties / discount_value
Added value: +{
+ "description": "Percent (1–100) when percentage; currency amount when fixed.",
+ "exclusiveMinimum": 0,
+ "type": "number"
+}
addedInput schema / properties / data / properties / lottery_probability
Added value: +{
+ "maximum": 99,
+ "minimum": 1,
+ "type": "integer"
+}
addedInput schema / properties / data / properties / max_acquire_count
Added value: +{
+ "exclusiveMinimum": 0,
+ "type": "integer"
+}
removedInput schema / properties / data / properties / max_redemptions
Removed value: -{
- "exclusiveMinimum": 0,
- "type": "integer"
-}
addedInput schema / properties / data / properties / max_use_per_ticket
Added value: +{
+ "description": "1 = once per user (default); -1 = unlimited.",
+ "enum": [
+ 1,
+ -1
+ ],
+ "type": "number"
+}
addedInput schema / properties / data / properties / price_after
Added value: +{
+ "description": "Explicit only.",
+ "exclusiveMinimum": 0,
+ "type": "number"
+}
addedInput schema / properties / data / properties / price_before
Added value: +{
+ "description": "Explicit only.",
+ "exclusiveMinimum": 0,
+ "type": "number"
+}
removedInput schema / properties / data / properties / terms_url
Removed value: -{
- "format": "uri",
- "type": "string"
-}
addedInput schema / properties / data / properties / timezone
Added value: +{
+ "description": "LINE timezone enum, default ASIA_BANGKOK.",
+ "type": "string"
+}
changedInput schema / properties / data / properties / valid_from / description
Previous value: -"ISO datetime."New value: +"UNIX seconds, 'YYYY-MM-DD', or ISO datetime."
changedInput schema / properties / data / properties / valid_from / type
Previous value: -"string"New value: +[
+ "string",
+ "number"
+]
changedInput schema / properties / data / properties / valid_to / description
Previous value: -"ISO datetime."New value: +"UNIX seconds, 'YYYY-MM-DD', or ISO datetime."
changedInput schema / properties / data / properties / valid_to / type
Previous value: -"string"New value: +[
+ "string",
+ "number"
+]
addedInput schema / properties / data / properties / visibility
Added value: +{
+ "description": "PUBLIC = listed in LY services; UNLISTED (default) = link/broadcast only.",
+ "enum": [
+ "PUBLIC",
+ "UNLISTED"
+ ],
+ "type": "string"
+}