Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
TagEntity
A tag entity represents a tag applied to an entity (dashboard, table, column, etc.)
type TagEntity {
id: ID!
origin: TagEntityOrigin!
technology: SourceTechnology
tagId: String!
tag: Tag!
createdAt: Timestamp!
updatedAt: Timestamp!
}
Fields
TagEntity.id ● ID! non-null scalar general
Unique Catalog identifier of the resource
TagEntity.origin ● TagEntityOrigin! non-null enum tags
Author of a tag entity
TagEntity.technology ● SourceTechnology enum general
The source technology that brought the tag (for EXTERNAL tag entities only)
TagEntity.tagId ● String! non-null scalar general
Id of the tag concerned
TagEntity.tag ● Tag! non-null object tags
The tag concerned
TagEntity.createdAt ● Timestamp! non-null scalar general
Timestamp of when the record was created
TagEntity.updatedAt ● Timestamp! non-null scalar general
Timestamp of when the record was last updated
Example
{
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"origin": "USER",
"technology": "COALESCE",
"tagId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"tag": {
"color": "ALERT_COLOR",
"label": "pii:email",
"slug": "pii-email-012",
"linkedTermId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"createdAt": 1758555879800,
"updatedAt": 1758555879800
}
}