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

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

# LinkedCase

Another docket case related to the one being returned.

## 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
```
