Tag Entity
A Tag is a labeling mechanism that aids in categorizing bots. Tags can be associated with multiple bots and can also be linked to a specific organization. Each tag can optionally have a distinct color representation.
Tag Attributes
name
String
The name of the tag.
organization
ObjectId - Organization
ID of the organization associated with the tag.
color
String (Hex Color)
Hexadecimal color associated with the tag. If not specified, a random color is assigned.
bots
Array[ObjectId] - Bot
Array of the bot objects associated with the tag.
{
"name": "Example Tag",
"organization": "5e5dbd36758533001c564b76",
"color": "#FF5733",
"bots": [
"5e5dbd36758533001c564b75"
],
"id": "748b7ddf26014d2229722482"
}