# Cyera Integration Discovered Resources

## Overview

The Cyera integration augments **table** and **column** resources with Cyera classification and sensitivity metadata. Cyera does not create new resource types; it observes tables and columns that Cyera has classified and adds Cyera-specific indexed properties to the corresponding resources in Euno.

Only tables and columns that have Cyera classifications or a sensitivity assignment are observed. The following properties are added to those resources.

## Table – Cyera Properties

When a table has Cyera classifications or a sensitivity level, the Cyera integration adds these properties to the table resource:

| Property                          | Value                                                                                                                                                    |
| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| cyera\_tags                       | List of Cyera data classification tag names derived from Cyera's classifications (e.g., from `dataClassName`). Empty or absent if the table has no tags. |
| cyera\_sensitivity                | The sensitivity level assigned by Cyera (e.g., `"Unclassified"`, `"NotSensitive"`, `"Internal"`).                                                        |
| cyera\_sensitivity\_display\_name | The human-readable display name for the Cyera sensitivity level (e.g., `"Unclassified"`, `"Public"`).                                                    |

## Column – Cyera Properties

When a column has Cyera classifications, the Cyera integration adds these indexed properties to the column resource:

| Property    | Value                                                                                                          |
| ----------- | -------------------------------------------------------------------------------------------------------------- |
| cyera\_tags | List of Cyera data classification tag names derived from Cyera's classifications (e.g., from `dataClassName`). |

Columns do not have `cyera_sensitivity` or `cyera_sensitivity_display_name` in the current model; those apply at the table level in Cyera.

## Relationships

The Cyera integration does not create new relationships. It enriches existing table and column resources.

## Usage in EQL

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

**Examples**:

```
# Tables with at least one Cyera tag
cyera_tags is not null

# Tables with a specific sensitivity level
cyera_sensitivity = "Internal"

# Columns that have been classified by Cyera
cyera_tags is not null and type = "column"
```


---

# 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.euno.ai/sources/data-security/cyera-integration/cyera-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.
