# Activity

The `Activity` object represents a business activity or industry classification associated with an entity.

## Fields

| Field                 | Type    | Description                                                  |
| --------------------- | ------- | ------------------------------------------------------------ |
| `activityCode`        | string  | Industry classification code (e.g., NACE code)               |
| `activityCodeType`    | string  | The classification system used (e.g., `NACE`, `SIC`, `ISIC`) |
| `activityDescription` | string  | Human-readable description of the activity                   |
| `mainActivity`        | boolean | `true` if this is the entity's primary business activity     |

## Example

{% code title="activity.json" %}

```json
{
  "activityCode": "64.19",
  "activityCodeType": "NACE",
  "activityDescription": "Other monetary intermediation",
  "mainActivity": true
}
```

{% endcode %}


---

# 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://equinoxe-systems.gitbook.io/revolutio-api/data-models/activity.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.
