Middesk · Schema

Bankruptcy

Business VerificationKYBKnow Your BusinessIdentity VerificationComplianceEIN ValidationTIN VerificationSanctions ScreeningBusiness MonitoringFintechRegTech

Properties

Name Type Description
object object
id string
business_id string
case_number string
case_updates array
chapter number
court string
filing_date string
debtors array
View JSON Schema on GitHub

JSON Schema

bankruptcy.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/middesk/main/json-schema/bankruptcy.json",
  "title": "Bankruptcy",
  "type": "object",
  "properties": {
    "object": {
      "$ref": "#/components/schemas/type_:BankruptcyObject"
    },
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "business_id": {
      "type": "string",
      "format": "uuid"
    },
    "case_number": {
      "type": "string"
    },
    "case_updates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/type_:BankruptcyCaseUpdatesItem"
      }
    },
    "chapter": {
      "type": "number",
      "format": "double"
    },
    "court": {
      "type": "string"
    },
    "filing_date": {
      "type": "string",
      "nullable": true,
      "format": "date"
    },
    "debtors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/type_:BankruptcyDebtorsItem"
      }
    }
  },
  "required": [
    "object",
    "id",
    "business_id",
    "case_number",
    "case_updates",
    "chapter",
    "court",
    "filing_date",
    "debtors"
  ]
}