> For the complete documentation index, see [llms.txt](https://docs.cohesiveapp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cohesiveapp.com/reference/api-documentation/guide-tabular-data.md).

# Guide: Tabular Data

To parse documents that mainly contain tables, or to achieve higher accuracy when extracting data from tables with complex layouts (i.e: tables with many empty rows, or tables with multiple rows or columns merged together), we recommend setting `tabularData` to `true`

e.g:

<figure><img src="https://1659501652-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FgXnl6gX6OwfIRspyklk3%2Fuploads%2FzZqPuORx2TLpJ6DszNh3%2Fcap-2.jpeg_db3091982cff8def10278ffb608581429f877ad43c5fb47c45bf38841b5fa665.jpeg?alt=media&amp;token=91af6352-6699-4dcc-8319-824b49766eb3" alt=""><figcaption></figcaption></figure>

Schema:

```
{
   shareholders: {
      name: string; // name of the shareholder
      common: string | null; // number of common shares the shareholder owns,
      null if not available
  }[]
}
```

Response:

```
[
    {
        "pageRange": "1",
        "extraction": {
            "shareholders": [
                {
                    "name": "Founder A",
                    "common": "250,000"
                },
                {
                    "name": "Founder B",
                    "common": "150,000"
                },
                {
                    "name": "Founder C",
                    "common": "80,000"
                },
                {
                    "name": "Founder D",
                    "common": "70,000"
                },
                {
                    "name": "Employee Shares Option Pool",
                    "common": "100,000"
                },
                {
                    "name": "Investors per stage",
                    "common": null
                }
            ]
        }
    }
]
```
