BankruptcyWatch · Schema

DocketEntry

A single docket entry in a bankruptcy case

BankruptcyComplianceCourt DataLegalLendingPACER

Properties

Name Type Description
entryId string
caseId string
entryNumber integer
dateFiled string
description string
documentUrl string
filer string
View JSON Schema on GitHub

JSON Schema

docketentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/bankruptcywatch/json-schema/docketentry-schema.json",
  "title": "DocketEntry",
  "type": "object",
  "description": "A single docket entry in a bankruptcy case",
  "properties": {
    "entryId": {
      "type": "string"
    },
    "caseId": {
      "type": "string"
    },
    "entryNumber": {
      "type": "integer"
    },
    "dateFiled": {
      "type": "string",
      "format": "date"
    },
    "description": {
      "type": "string"
    },
    "documentUrl": {
      "type": "string"
    },
    "filer": {
      "type": "string"
    }
  }
}