# 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="/files/eQR1QLbIJibjRmBrXmxf" 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
                }
            ]
        }
    }
]
```


---

# 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.cohesiveapp.com/reference/api-documentation/guide-tabular-data.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.
