OBJECT

Tag

Tag(s) are used as a discovery and search mechanism for tagged content, including Streams, Clips, and VODs.

link GraphQL Schema definition

1type Tag {
2
3# Timestamp of the creation of this tag.
4createdAt: Time
5
6# This tag's unique identifier.
7id: ID!
8
9# Whether this tag is auto generated.
10isAutomated: Boolean!
11
12# Whether this tag is a language tag.
13isLanguageTag: Boolean!
14
15# Localized description of this tag.
16localizedDescription: String!
17
18# Localized Name of this tag.
19localizedName: String!
20
21# Scope of the Tag.
22scope: TagScope!
23
24# Official Name of this tag in English.
25tagName: String!
26
27}