# Patents

### Fields

| Field             | Type      | Description                                                       |
| ----------------- | --------- | ----------------------------------------------------------------- |
| applicationNumber | String    | Patent application number (DOCDB compatible), eg: 'US-87124404-A' |
| publicationNumber | String    | Patent publication number (DOCDB compatible), eg: 'US-7650331-B1' |
| country           | String    | Patent location country code                                      |
| filingDate        | String    | ISO 8601 formatted date                                           |
| publicationDate   | String    | ISO 8601 formatted date                                           |
| grantDate         | String    | ISO 8601 formatted date                                           |
| priorityDate      | String    | ISO 8601 formatted date                                           |
| title             | String    | Patent title                                                      |
| abstract          | String    | Patent abstract                                                   |
| inventors         | \[String] | List of inventors                                                 |
| assignees         | \[String] | List of patent assignees                                          |

### Query

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        patents {
            applicationNumber
            publicationNumber
            country
            filingDate
            publicationDate
            grantDate
            priorityDate
            title
            abstract
            inventors
            assignees
        }
    }
}

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


---

# Agent Instructions: 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:

```
GET https://docs.craft.co/company-data-api/data-points/operating-data/patents.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
