Bankruptcy object
This page describes the bankruptcy object, which represents a bankruptcy filing associated with a business. Bankruptcy records provide information about federal bankruptcy cases including chapter type, court, filing date, and case updates.
Example JSON response
Bankruptcy attributes
| Attribute | Type | Description |
|---|---|---|
object | string | The object type. Always bankruptcy. |
id | string (uuid) | The unique identifier for the bankruptcy record. |
business_id | string (uuid) | The unique identifier of the associated business. |
case_number | string | The official bankruptcy case number assigned by the court. |
chapter | number | The bankruptcy chapter filed. Common values are 7 (liquidation), 11 (reorganization), and 13 (individual debt adjustment). |
court | string | The name of the bankruptcy court handling the case. |
filing_date | date | null | The date the bankruptcy petition was filed. |
debtors | object[] | An array of debtor information. |
debtors[].name | string | The name of the debtor. |
case_updates | object[] | An array of case updates and docket entries. |
case_updates[].guid | string | A unique identifier for the case update. |
case_updates[].pub_date | string | The publication date of the update. |
case_updates[].description | string | A description of the case update or docket entry. |
Bankruptcy chapters
| Chapter | Description |
|---|---|
7 | Liquidation bankruptcy - assets are sold to pay creditors and remaining debts are discharged. |
11 | Reorganization bankruptcy - allows businesses to restructure debts while continuing operations. |
13 | Individual debt adjustment - allows individuals with regular income to develop a repayment plan. |
15 | Cross-border insolvency - provides mechanisms for dealing with cases involving debtors, assets, and creditors in multiple countries. |