> For the complete documentation index, see [llms.txt](https://docs.craft.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.craft.co/company-data-api/data-points/operating-data/untitled-5.md).

# Court Filings

### Fields

| Field          | Type   | Description                                     |
| -------------- | ------ | ----------------------------------------------- |
| caseName       | String | Case name                                       |
| courtName      | String | Court name                                      |
| dateFiled      | String | ISO 8601 formatted date the case was filed      |
| dateTerminated | String | ISO 8601 formatted date the case was terminated |
| defendant      | String | Defendant name in the case                      |
| districtName   | String | District name                                   |
| docketId       | Int    | Docket ID                                       |
| natureOfSuit   | String | Nature of suit                                  |
| plaintiff      | String | Plaintiff name in the case                      |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
       courtFilings {
            caseName
            courtName
            dateFiled
            dateTerminated
            defendant
            districtName
            docketId
            natureOfSuit
            plaintiff
       }
    }
}

# variables
{ "domain": "meta.com" }
```
