Sezzle · Schema

Discount

A discount applied to a Sezzle order.

Buy Now Pay LaterBNPLPaymentsInstallmentsFintechMerchant IntegrationCheckout

Properties

Name Type Description
amount object Discount monetary value.
name string Human-readable discount name or code.
View JSON Schema on GitHub

JSON Schema

discount.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/discount.json",
  "title": "Discount",
  "description": "A discount applied to a Sezzle order.",
  "type": "object",
  "required": ["amount", "name"],
  "properties": {
    "amount": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/price.json",
      "description": "Discount monetary value."
    },
    "name": {
      "type": "string",
      "description": "Human-readable discount name or code."
    }
  }
}