Installment Sale

installment-sale@2.0.0 Contract ^0.20.0 7ca2a6ccf9ca25f3483778bed76ff0a9358dd60353f66ffbd971130aeb73055d

This is a clause for a simple installment sale.

Download Archive Open in Template Studio Open in VSCode Web

Installment Sale

A simple clause for a sale paid in installments.

Template Text

"Dan" agrees to pay to "Ned" the total sum 10000 EUR, in the manner following:

500 EUR is to be paid at closing, and the remaining balance of 9500 EUR shall be paid as follows:

500 EUR or more per month on the first day of each and every month, and continuing until the entire balance, including both principal and interest, shall be paid in full -- provided, however, that the entire balance due plus accrued interest and any other amounts due here-under shall be paid in full on or before 24 months.

Monthly payments, which shall start on month 3, include both principal and interest with interest at the rate of 1.5%, computed monthly on the remaining balance from time to time unpaid.

"Dan" agrees to pay to "Ned" the total sum 10000 EUR, in the manner following:

500 EUR is to be paid at closing, and the remaining balance of 9500 EUR shall be paid as follows:

500 EUR or more per month on the first day of each and every month, and continuing until the entire balance, including both principal and interest, shall be paid in full -- provided, however, that the entire balance due plus accrued interest and any other amounts due here-under shall be paid in full on or before 24 months.

Monthly payments, which shall start on month 3, include both principal and interest with interest at the rate of 1.5%, computed monthly on the remaining balance from time to time unpaid.
{{BUYER}} agrees to pay to {{SELLER}} the total sum {{INITIAL_DUE}}, in the manner following:

{{DUE_AT_CLOSING}} is to be paid at closing, and the remaining balance of {{TOTAL_DUE_BEFORE_CLOSING}} shall be paid as follows:

{{MIN_PAYMENT}} or more per month on the first day of each and every month, and continuing until the entire balance, including both principal and interest, shall be paid in full -- provided, however, that the entire balance due plus accrued interest and any other amounts due here-under shall be paid in full on or before 24 months.

Monthly payments, which shall start on month {{FIRST_MONTH}}, include both principal and interest with interest at the rate of {{INTEREST_RATE}}%, computed monthly on the remaining balance from time to time unpaid.
{
    "$class": "org.accordproject.installmentsale.InstallmentSaleContract",
    "contractId": "582b9481-3bae-4928-8d07-57c15a9ee0fc",
    "BUYER": {
        "$class": "org.accordproject.cicero.contract.AccordParty",
        "partyId": "Dan"
    },
    "SELLER": {
        "$class": "org.accordproject.cicero.contract.AccordParty",
        "partyId": "Ned"
    },
    "INITIAL_DUE": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 10000,
        "currencyCode": "EUR"
    },
    "INTEREST_RATE": 1.5,
    "TOTAL_DUE_BEFORE_CLOSING": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 9500,
        "currencyCode": "EUR"
    },
    "MIN_PAYMENT": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 500,
        "currencyCode": "EUR"
    },
    "DUE_AT_CLOSING": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 500,
        "currencyCode": "EUR"
    },
    "FIRST_MONTH": 3
}

Template Model

namespace org.accordproject.installmentsale

import org.accordproject.cicero.contract.* from https://models.accordproject.org/cicero/contract.cto
import org.accordproject.cicero.runtime.* from https://models.accordproject.org/cicero/runtime.cto
import org.accordproject.money.MonetaryAmount from https://models.accordproject.org/money.cto

transaction Installment extends Request {
  o MonetaryAmount amount
}

transaction ClosingPayment extends Request {
  o MonetaryAmount amount
}

transaction Balance extends Request {
  o MonetaryAmount balance
	o MonetaryAmount total_paid
}

enum ContractStatus {
  o WaitingForFirstDayOfNextMonth
  o Fulfilled
}

asset InstallmentSaleState extends AccordContractState {
  o ContractStatus status
  o MonetaryAmount balance_remaining
  o Integer next_payment_month
	o MonetaryAmount total_paid
}

/**
 * The template model
 */
asset InstallmentSaleContract extends AccordContract {
  o AccordParty BUYER
	o AccordParty SELLER
  o MonetaryAmount INITIAL_DUE
  o Double INTEREST_RATE
  o MonetaryAmount TOTAL_DUE_BEFORE_CLOSING
  o MonetaryAmount MIN_PAYMENT
  o MonetaryAmount DUE_AT_CLOSING
  o Integer FIRST_MONTH
}

Model Dependencies

Template Logic

Find the full logic for this template on on GitHub.

State Types

Type Sample JSON
org.accordproject.installmentsale.InstallmentSaleState
{
    "$class": "org.accordproject.installmentsale.InstallmentSaleState",
    "status": "WaitingForFirstDayOfNextMonth",
    "balance_remaining": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 41.13,
        "currencyCode": "UGX"
    },
    "next_payment_month": 7510,
    "total_paid": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 124.15,
        "currencyCode": "BHD"
    },
    "stateId": "626e8992-42fa-11ea-8b78-dde257dbceb0"
}

Request Types

Type Sample JSON
org.accordproject.installmentsale.ClosingPayment
{
    "$class": "org.accordproject.installmentsale.ClosingPayment",
    "amount": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 21.26,
        "currencyCode": "GMD"
    },
    "transactionId": "626e6280-42fa-11ea-8b78-dde257dbceb0",
    "timestamp": "2020-01-29T19:49:34.888-05:00"
}
org.accordproject.installmentsale.Installment
{
    "$class": "org.accordproject.installmentsale.Installment",
    "amount": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 203.81,
        "currencyCode": "XPD"
    },
    "transactionId": "626e3b70-42fa-11ea-8b78-dde257dbceb0",
    "timestamp": "2020-01-29T19:49:34.887-05:00"
}

Response Types

Type Sample JSON
org.accordproject.installmentsale.Balance
{
    "$class": "org.accordproject.installmentsale.Balance",
    "balance": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 157.363,
        "currencyCode": "ERN"
    },
    "total_paid": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 253.979,
        "currencyCode": "LYD"
    },
    "transactionId": "626e8990-42fa-11ea-8b78-dde257dbceb0",
    "timestamp": "2020-01-29T19:49:34.889-05:00"
}

Events Types

Type Sample JSON
org.accordproject.cicero.runtime.PaymentObligation
{
    "$class": "org.accordproject.cicero.runtime.PaymentObligation",
    "amount": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 102.098,
        "currencyCode": "GTQ"
    },
    "description": "Commodo.",
    "contract": "resource:org.accordproject.installmentsale.InstallmentSaleContract#5154",
    "promisor": "resource:org.accordproject.cicero.contract.AccordParty#3489",
    "promisee": "resource:org.accordproject.cicero.contract.AccordParty#9839",
    "deadline": "2020-01-29T19:49:34.890-05:00",
    "eventId": "626eb0a1-42fa-11ea-8b78-dde257dbceb0",
    "timestamp": "2020-01-29T19:49:34.890-05:00"
}

Technical Integration

Please refer to the Cicero documentation for details and examples of how to integrate a call to a Cicero template into your application.

View the Latest code for this template on GitHub.