> For the complete documentation index, see [llms.txt](https://dev.ropo.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.ropo.com/guides/basics/invoice/construction-site-information.md).

# Construction site information

Construction invoices in Finland may require construction site identifiers. Send them on the invoice `dataset`.

### Fields

* `TA0001`: Construction site ID
* `TA0002`: Construction site number
* `TA0003`: Worksite register flag (`Y` / `N`)

Ropo recommends sending both `TA0001` and `TA0002`.

### Example

```json
{
  "datastream": {
    "dataset": [
      {
        "jobtype": "0",
        "customertype": "1",
        "company": "Main contractor Ltd",
        "address": "Example street 1",
        "postcode": "00100",
        "city": "Helsinki",
        "billdate": "2026-02-06",
        "paydate": "2026-02-20",
        "sendtype": "evoice",
        "evoice": "003722059054",
        "evoiceint": "003714377140",
        "TA0001": "TA-FI-EXAMPLE0001-B",
        "TA0002": "1234",
        "TA0003": "Y",
        "freetext": "Worksite address:\nExample site\nExample road 10\n00100 Helsinki",
        "payrow": [
          { "desc": "Carpentry work", "count": "7", "amount": "55.00", "taxpr": "24" }
        ]
      }
    ]
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://dev.ropo.com/guides/basics/invoice/construction-site-information.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
