# The TagPolicy object

## Attributes

- `tag_key` (string)
  Example: `sensitivity_level`
  Constraints: `[ 1 .. 256 ] characters`
- `id` (string)
- `description` (string)
  Example: `Identifies the sensitivity level of the data for compliance purposes.`
  Constraints: `<= 4096 characters`
- `values` (array of object)
  Constraints: `<= 500 items`
  - `name` (string)
    Constraints: `[ 1 .. 256 ] characters`
- `create_time` (string)
  Timestamp when the tag policy was created
- `update_time` (string)
  Timestamp when the tag policy was last updated

## Example

```json
{
  "tag_key": "sensitivity_level",
  "id": "string",
  "description": "Identifies the sensitivity level of the data for compliance purposes.",
  "values": [
    {
      "name": "public"
    },
    {
      "name": "confidential"
    }
  ],
  "create_time": "string",
  "update_time": "string"
}
```


