Vehicle Discount

Vehicle Discount Schema

Vehicle Discount Type

object Vehicle Discount

Vehicle Discount Properties

FieldTypeNullableDescriptionPropertiesExample
total_discountNumberYesTotal discount120
monthly_total_discountNumberYesMonthly total
discount
10
discountsArrayList of discounts

Sample JSON

{
    "total_discount": 120,
    "monthly_total_discount": 10,
    "discounts": [
        {
            "discount_type": "Anti-theft Device Discount",
            "discount": null,
            "monthly_discount": 3
        },
        {
            "discount_type": "Smart Technology Discount",
            "discount": null,
            "monthly_discount": 7
        }
    ]
}