> 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/data-breach-object.md).

# Data Breaches

### Fields

| Field                | Type   | Description                           |
| -------------------- | ------ | ------------------------------------- |
| affectedRecordsCount | Int    | Number of affected records            |
| date                 | String | ISO 8601 formatted date of the breach |
| description          | String | Description of the breach             |
| source               | String | Source label                          |
| sourceUrl            | String | Source URL                            |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        dataBreaches {
            affectedRecordsCount
            date
            description
            source
            sourceUrl
        }
    }
}


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