# Identifier

The `Identifier` object represents an official registration number or tax identifier for an entity.

## Fields

| Field          | Type   | Description                                                             |
| -------------- | ------ | ----------------------------------------------------------------------- |
| `type`         | string | Identifier type (e.g., `Company number`, `CNPJ`, `SIREN`, `KVK Nummer`) |
| `number`       | string | The identifier value                                                    |
| `authority`    | string | Issuing authority (e.g., `Companies House`, `KVK`)                      |
| `jurisdiction` | string | Jurisdiction code where the identifier is valid                         |

## Example

```json
{
  "type": "Company number",
  "number": "09215191",
  "authority": "Companies House",
  "jurisdiction": "GB"
}
```

{% hint style="info" %}
The `type` field varies by jurisdiction. See [IDFinder - Supported Identifier Types](/revolutio-api/idfinder.md#supported-jurisdictions-and-identifier-types-returned) for a mapping.
{% endhint %}


---

# 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/identifier.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.
