---
title: "DocketsCaseListItem"
url: "https://console.9fin.com/apis/distressed-api/versions/6f7fc866-4490-4486-90ea-393120603830/schemas/DocketsCaseListItem"
---

> Full API specification: https://console.9fin.com/apis/distressed-api/versions/6f7fc866-4490-4486-90ea-393120603830.md

# DocketsCaseListItem

Chapter 11 or Chapter 15 court case.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin Distressed API
  version: 0.1.11
components:
  schemas:
    LinkedCase:
      description: Another docket case related to the one being returned.
      properties:
        type:
          anyOf:
            - type: string
            - type: "null"
          description: The linked case's type, e.g. `Bankruptcy` or `Adversary`.
          title: Type
        uuid:
          description: Linked case unique identifier.
          format: uuid
          title: Uuid
          type: string
      required:
        - uuid
        - type
      title: LinkedCase
      type: object
    Entity:
      description: A 9fin entity (e.g. a company), identified by its `nf_id`.
      properties:
        name:
          description: Company name.
          title: Name
          type: string
        nf_id:
          description: Permanent opaque organisation id (`nf_ent_<hex>`).
          title: Nf Id
          type: string
      required:
        - nf_id
        - name
      title: Entity
      type: object
    Industry:
      description: A company's industry classification.
      properties:
        l2:
          anyOf:
            - type: string
            - type: "null"
          description: Level-2 industry name.
          title: L2
      required:
        - l2
      title: Industry
      type: object
    DocketsCaseListItem:
      description: Chapter 11 or Chapter 15 court case.
      properties:
        associated_cases:
          description: Another docket case related to the one being returned. E.g.,
            adversary proceedings and appeals.
          items:
            $ref: "#/components/schemas/LinkedCase"
          title: Associated Cases
          type: array
        case_name:
          description: Case name.
          title: Case Name
          type: string
        case_type:
          anyOf:
            - type: string
            - type: "null"
          description: Case type. E.g., `Chapter 11`
          title: Case Type
        company:
          anyOf:
            - $ref: "#/components/schemas/Entity"
            - type: "null"
          description: A company linked to the case, identified by its nf_id.
        docket_number:
          description: Docket number. E.g., `24-10123`
          title: Docket Number
          type: string
        filing_date:
          anyOf:
            - format: date
              type: string
            - type: "null"
          description: Date the case was filed with the court.
          title: Filing Date
        industry:
          $ref: "#/components/schemas/Industry"
        judges:
          description: Assigned judges to the case.
          items:
            type: string
          title: Judges
          type: array
        lead_case:
          anyOf:
            - $ref: "#/components/schemas/LinkedCase"
            - type: "null"
          description: The case this one was opened under; null for a case with no parent.
        restructuring_uuid:
          anyOf:
            - format: uuid
              type: string
            - type: "null"
          description: Parent restructuring event identifier.
          title: Restructuring Uuid
        uuid:
          description: Unique case identifier.
          format: uuid
          title: Uuid
          type: string
        venue:
          anyOf:
            - type: string
            - type: "null"
          description: Venue (court) where the case is filed.
          title: Venue
      required:
        - uuid
        - case_name
        - docket_number
        - case_type
        - lead_case
        - associated_cases
        - venue
        - judges
        - company
        - restructuring_uuid
        - industry
        - filing_date
      title: DocketsCaseListItem
      type: object
```
