> For the complete documentation index, see [llms.txt](https://api.clearinghouse.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api.clearinghouse.net/api-reference-v2/objects/case/dockets.md).

# Dockets and Case Numbers

A case can be identified by its docket number. In some cases, we also have other identifying numbers associated with a case.

## case\_dockets

(*array\[object]*)

An array of `Docket` objects, representing the dockets associated with the case. See [Docket](/api-reference-v2/objects/docket.md).

## main\_docket

(*object*)

A `Docket` object that represents the main docket of the case. This is typically the docket that contains the first complaint filed in a case. See [Docket](/api-reference-v2/objects/docket.md).

## non\_docket\_case\_number

(*string*)

A case number associated with the case that is not a docket number. This is often used for U.S. Department of Justice (DOJ) and Equal Employment Opportunity Commission (EEOC) investigations.

## non\_docket\_case\_number\_type

(*string*)

| Value | Description                                                                                                                                                                  |
| ----- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| null  | There is no non-docket case number.                                                                                                                                          |
| DJ    | U.S. Department of Justice                                                                                                                                                   |
| EEOC  | U.S. Equal Employment Opportunity Commission                                                                                                                                 |
| OCR   | U.S. Department of Education, Office of Civil Rights                                                                                                                         |
| other | The non-docket case number comes from an organization that is not in this list. See [#non\_docket\_case\_number\_type\_other](#non_docket_case_number_type_other "mention"). |

## non\_docket\_case\_number\_type\_other

(*string*)

The non-docket case number's type, if `non_docket_case_number_type` is `"other"`. Otherwise, this will be an empty string.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://api.clearinghouse.net/api-reference-v2/objects/case/dockets.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
