> For the complete documentation index, see [llms.txt](https://docs.euno.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.euno.ai/sources/data-security/bigid-integration/bigid-integration-discovered-resources.md).

# BigID Integration Discovered Resources

## Overview

The BigID integration augments **table** and **column** resources with BigID classification and sensitivity metadata. BigID does not create new resource types; it adds BigID-specific indexed properties to warehouse tables and columns that already exist in Euno.

For each structured BigID catalog row that passes filters and maps to a supported warehouse (**BigQuery**, **Snowflake**, or **Databricks**), Euno emits a **table** observation with `bigid_`\* properties—even when BigID has no attributes or sensitivity tags for that table (properties may be empty lists or `Unclassified`). **Column** observations are emitted only when BigID reports attributes and/or column-level sensitivity tags for that column.

The following properties are written when those observations are materialized.

## Table – BigID Properties

For each observed table, the integration sets these properties on the table resource (values may be empty or `Unclassified` when BigID provides no matching metadata):

| Property                          | Value                                                                                                                                                                                                                                                 |
| --------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| bigid\_attributes                 | Distinct BigID attribute names assigned to the table and its columns (for example, `Email`, `SSN`, `businessTerm.CustomerName`). Values pass the source's attribute pattern and confidence threshold filters. An empty list when no attributes match. |
| bigid\_sensitivity                | The highest BigID sensitivity label on the table or any of its columns, stored as the **raw BigID value** (for example, `High`, `Restricted`, `Confidential`).                                                                                        |
| bigid\_sensitivity\_display\_name | The same sensitivity mapped onto Euno's shared seven-level scale for display and filtering: `Top Secret`, `Very Sensitive`, `Sensitive`, `Confidential`, `Internal`, `Public`, or `Unclassified`.                                                     |
| bigid\_categories                 | Attribute categories from BigID metadata (for example, `PII`, `PHI`, `PCI`, `Personal Data`). Empty or absent if no categories are present.                                                                                                           |

### Sensitivity display mapping

BigID sensitivity labels are tenant-configurable. Euno maps common BigID values onto the display scale as follows:

| BigID label (examples)  | Euno display name |
| ----------------------- | ----------------- |
| Restricted, Top Secret  | Top Secret        |
| Critical, High          | Very Sensitive    |
| Confidential            | Confidential      |
| Medium                  | Sensitive         |
| Internal                | Internal          |
| Low, Public             | Public            |
| Missing or unrecognized | Unclassified      |

## Column – BigID Properties

When a column has BigID attribute or sensitivity metadata, the BigID integration adds these indexed properties to the column resource:

| Property          | Value                                                                                                         |
| ----------------- | ------------------------------------------------------------------------------------------------------------- |
| bigid\_attributes | List of BigID attribute names assigned to the column (for example, classification labels or data categories). |

Columns do not have `bigid_sensitivity`, `bigid_sensitivity_display_name`, or `bigid_categories`; table-level sensitivity and categories apply at the table resource.

## Relationships

The BigID integration does not create new relationships. It enriches existing table and column resources that match warehouse URIs in Euno.

## Usage in EQL

You can filter and search by BigID properties in Euno's search and EQL:

**Examples**:

```
# Tables with at least one BigID attribute
bigid_attributes is not null

# Tables whose attribute list includes a specific label
'classifier.Email' IN bigid_attributes

# Case-insensitive attribute match
i'email' IN bigid_attributes

# Tables at a normalized sensitivity level (prefer display name for filtering)
bigid_sensitivity_display_name = 'Very Sensitive'

# Tables in a BigID attribute category
'PII' IN bigid_categories

# Columns with BigID attribute metadata (column observations are only emitted when metadata exists)
bigid_attributes is not null AND type = 'column'
```


---

# 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:

```
GET https://docs.euno.ai/sources/data-security/bigid-integration/bigid-integration-discovered-resources.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.
