Universal Tags

Universal Tags

Universal Tags refer to interest tags or content tags that may be used across platforms. Tags may be used to group information by topic or apply labels to certain content.

This protocol aims to define a set of standards to allow all applications to display unified tags.

Field
Abbreviation
Description
Required

title

t

Tag name, unique tag identifier, unicode encoding

Yes

textColor

tc

Display color of the text

No

backgroundColor

bc

Display color of the background

No

emoji

e

A displayed emoji in front of the tag

No

icon

i

If an emoji cannot be displayed, an image can also be displayed

No

parent

p

Title of parent tag

No

Tag Example

🏀 basketball

{
    "t": "basketball",
    "c": "red",
    "bg": "blue",
    "e": "🏀",
    "p": "sports"
}

Tags can be bound to social elements:

{
    "sei": "sei:clover.space:u:12345887737123",
    "tags": [
        {
            "t": "basketball",
            "c": "red",
            "e": "🏀",
            "p": "sports"
        },
        ...
    ]
}

Last updated