Skip to content

Diminishing Musharakah Rail

Declining partnership contract endpoints for Islamic home and asset financing.

The Diminishing Musharakah rail provides:

  • Declining equity partnership contract creation and management
  • Gradual ownership transfer (buyout) scheduling
  • Rental payment calculation on the institution’s remaining share
  • Combined rental and buyout payment processing

Diminishing Musharakah (Musharakah Mutanaqisah) is a partnership contract where one partner (typically the customer) gradually purchases the other partner’s (typically the institution’s) share over time, eventually becoming the sole owner of the asset. It combines elements of Musharakah (partnership), Ijarah (lease), and Bay (sale) in a structured arrangement.

This contract is the most widely used Islamic alternative to conventional mortgages and asset financing. The institution and customer jointly acquire an asset, the customer pays rent on the institution’s share, and simultaneously makes periodic purchases of the institution’s equity units until full ownership transfers to the customer.

The rental amount declines over time as the institution’s share decreases, making it distinct from conventional fixed-rate mortgages. The buyout promise and the lease are separate undertakings that must not be made conditional upon each other under Shariah principles.

POST /v1/rails/diminishing-musharakah/contracts
const contract = await iof.diminishingMusharakah.create({
asset_description: "Residential property - 42 Elm Street, Unit 7A",
asset_value: 600000,
currency: "USD",
institution_contribution: 480000,
customer_contribution: 120000,
customer_id: "cpty_homebuyer",
rental_rate: 0.04,
buyout_schedule: {
frequency: "monthly",
duration_months: 240,
buyout_amount_per_period: 2000,
},
});

Response:

{
"id": "dms_xyz",
"type": "diminishing_musharakah",
"status": "DRAFT",
"asset_value": 600000,
"currency": "USD",
"institution_share": 0.8,
"customer_share": 0.2,
"current_rental": 1600,
"buyout_schedule": {
"frequency": "monthly",
"duration_months": 240,
"buyout_amount_per_period": 2000,
"total_monthly_payment": 3600
},
"created_at": "2024-01-15T10:30:00Z"
}
GET /v1/rails/diminishing-musharakah/contracts/:id
GET /v1/rails/diminishing-musharakah/contracts
POST /v1/rails/diminishing-musharakah/contracts/:id/execute
POST /v1/rails/diminishing-musharakah/contracts/:id/buyout
POST /v1/rails/diminishing-musharakah/contracts/:id/full-buyout
GET /v1/rails/diminishing-musharakah/contracts/:id/ownership-schedule
ComponentDescription
rentalRent paid on the institution’s remaining share
buyoutPurchase of equity units from the institution
total_paymentCombined rental and buyout amount

The rental portion decreases over time as the institution’s share declines, while the buyout portion remains constant or increases to accelerate ownership transfer.

StatusDescription
DRAFTContract created, pending review
PENDING_SHARIAH_REVIEWAwaiting Shariah board approval
SHARIAH_APPROVEDApproved by Shariah board
ACTIVEPartnership active, payments ongoing
NEAR_COMPLETIONCustomer share exceeds 90%
COMPLETEDFull ownership transferred
TERMINATEDPartnership dissolved early
  • Both partners must share in the risk of asset ownership proportional to their shares
  • The rental rate must be based on the institution’s share and a fair market rental
  • The buyout promise and the lease agreement are separate, independent undertakings
  • The rental must decrease as the institution’s share decreases
  • The institution bears maintenance and insurance costs proportional to its share
  • The customer may accelerate buyout payments without penalty
  • Asset revaluation for buyout pricing must follow fair market principles
EventDescription
diminishing_musharakah.contract.createdContract created
diminishing_musharakah.contract.executedPartnership commenced
diminishing_musharakah.payment.receivedMonthly payment processed
diminishing_musharakah.buyout.processedEquity unit transferred
diminishing_musharakah.contract.completedFull ownership transferred