Game Tag Option Localized Object
namestring
Name of the tag group.
Example:
Theme
name_localizedstring
typestring
Can multiple tags be selected via 'checkboxes' or should only a single tag be selected via a 'dropdown'.
Example:
checkboxes
tagsstring[]
Array of tags in this group.
tags_localized object
List of tag names and the localized variant of the tag.
property name*string
tag_count_map object
List of tag names and the count of mods with these tags.
property name*integer<int32>
hiddenboolean
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
.
Example:
false
lockedboolean
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).
Example:
false
Game Tag Option Localized Object
{
"name": "Theme",
"name_localized": "string",
"type": "checkboxes",
"tags": [
"Horror"
],
"tags_localized": {
"Horror": "Horreur"
},
"tag_count_map": {
"Horror": 52
},
"hidden": false,
"locked": false
}