Game Tag Option Object
Name of the tag group.
Theme
name_localization object
An object where keys are two-character language codes (e.g., 'en', 'de', 'fr') and values are the localized names.
Optional two-character language code with its corresponding value.
Can multiple tags be selected via 'checkboxes' or should only a single tag be selected via a 'dropdown'.
checkboxes
Array of tags in this group.
tags_localization object[]
The tag.
translations object
English translation of the tag.
German translation of the tag.
French translation of the tag.
tag_count_map object
List of tag names and the count of mods with these tags.
Groups of tags flagged as 'hidden' are intended to be used for filtering (eg. game version), but should not be displayed to users. Hidden tags will only be returned if show_hidden_tags
is set to true
.
false
Groups of tags flagged as 'locked' are editable only if the authenticated user is a team member of the parent game. Useful for games to tag special functionality, which users can see and filter on (eg. competition winners).
false
{
"name": "Theme",
"name_localization": {},
"type": "checkboxes",
"tags": [
"Horror"
],
"tags_localization": [
{
"tag": "string",
"translations": {
"en": "",
"de": "",
"fr": ""
}
}
],
"tag_count_map": {
"Horror": 52
},
"hidden": false,
"locked": false
}