Skip to main content

Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.

Tag

A tag represents a label applied to entities (dashboards, tables, columns, etc.) to categorize and organize them.

type Tag {
id: ID!
color: Colors
label: String!
slug: String!
linkedTermId: String
createdAt: Timestamp!
updatedAt: Timestamp!
}

Fields

Tag.id ● ID! non-null scalar general

Unique Catalog identifier of the resource

Tag.color ● Colors enum tags

The color given to the tag

Tag.label ● String! non-null scalar general

The label given to the tag

Tag.slug ● String! non-null scalar general

Unique Catalog slug of the resource

Tag.linkedTermId ● String scalar general

The ID of the term linked to tag

Tag.createdAt ● Timestamp! non-null scalar general

Timestamp of when the record was created

Tag.updatedAt ● Timestamp! non-null scalar general

Timestamp of when the record was last updated

Example

{
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"color": "ALERT_COLOR",
"label": "pii:email",
"slug": "pii-email-012",
"linkedTermId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"createdAt": 1758555879800,
"updatedAt": 1758555879800
}

Member Of