Sezzle · Schema
Order
A Sezzle merchant order with line items, amounts, and checkout details.
Buy Now Pay LaterBNPLPaymentsInstallmentsFintechMerchant IntegrationCheckout
Properties
| Name | Type | Description |
|---|---|---|
| reference_id | string | Merchant-assigned order reference identifier. |
| description | string | Human-readable order description. |
| requires_shipping_info | boolean | Whether the checkout flow should collect shipping information. |
| items | array | Line items included in the order. |
| discounts | array | Discounts applied to the order. |
| metadata | object | Arbitrary key-value metadata attached to the order. |
| shipping_amount | object | Shipping cost. |
| tax_amount | object | Tax amount. |
| checkout_expiration | string | When the checkout session expires. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/order.json",
"title": "Order",
"description": "A Sezzle merchant order with line items, amounts, and checkout details.",
"type": "object",
"properties": {
"reference_id": {
"type": "string",
"description": "Merchant-assigned order reference identifier."
},
"description": {
"type": "string",
"description": "Human-readable order description."
},
"requires_shipping_info": {
"type": "boolean",
"description": "Whether the checkout flow should collect shipping information."
},
"items": {
"type": "array",
"description": "Line items included in the order.",
"items": {
"$ref": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/line-item.json"
}
},
"discounts": {
"type": "array",
"description": "Discounts applied to the order.",
"items": {
"$ref": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/discount.json"
}
},
"metadata": {
"type": "object",
"description": "Arbitrary key-value metadata attached to the order.",
"additionalProperties": {
"type": "string"
}
},
"shipping_amount": {
"$ref": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/price.json",
"description": "Shipping cost."
},
"tax_amount": {
"$ref": "https://raw.githubusercontent.com/api-evangelist/sezzle/main/json-schema/price.json",
"description": "Tax amount."
},
"checkout_expiration": {
"type": "string",
"format": "date-time",
"description": "When the checkout session expires."
}
}
}