# The TagAssignment object

## Attributes

- `entity_type` (string, Beta)
  The type of entity to which the tag is assigned. Allowed values are apps, dashboards, geniespaces, notebooks
  Example: `dashboards`
- `entity_id` (string, Beta)
  The identifier of the entity to which the tag is assigned. For apps, the entity_id is the app name
  Example: `2807324866692453`
- `tag_key` (string, Beta)
  The key of the tag. The characters , . : / - = and leading/trailing spaces are not allowed
  Example: `sensitivity_level`
  Constraints: `[ 1 .. 256 ] characters`
- `tag_value` (string, Beta)
  The value of the tag
  Example: `high`
  Constraints: `<= 1000 characters`

## Example

```json
{
  "entity_type": "dashboards",
  "entity_id": "2807324866692453",
  "tag_key": "sensitivity_level",
  "tag_value": "high"
}
```


