Beta version: Record representing an item in a player's game inventory
tid
Timestamp-based ID
Properties
acquiredAt
string
datetime
Required
When the item was acquired
createdAt
string
datetime
Required
When the record was created
itemId
string
Required
Unique identifier for the item from gameItems.json
maxLength: 100 bytesitemName
string
Optional
Display name of the item
maxLength: 200 bytesitemType
string
Optional
Type category of the item (consumable, tool, equipment, etc.)
maxLength: 50 bytesitemValue
integer
Optional
Base value of the item in game currency
minimum: 0lastModified
string
datetime
Optional
When the record was last modified
logRecordUri
string
Optional
URI of the game.log record that documents the acquisition of this item
maxStack
integer
Optional
Maximum stack size for this item
minimum: 1metadata
unknown
Optional
Additional item-specific data (stats, attributes, enchantments, etc.)
quantity
integer
Required
Number of items in the stack
minimum: 1rarity
string
Optional
Rarity level of the item
veryCommon, common, uncommon, rare, veryRare, epic, legendarysource
string
Optional
How the item was acquired
daily_reward, game_card, quest, trade, crafted, found, purchasedsourceDetails
ref
#sourceDetails
Optional
No description provided.
stackable
boolean
Optional
Whether this item can be stacked with others of the same type
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"itemId",
"quantity",
"acquiredAt",
"createdAt"
],
"properties": {
"itemId": {
"type": "string",
"maxLength": 100,
"description": "Unique identifier for the item from gameItems.json"
},
"rarity": {
"enum": [
"veryCommon",
"common",
"uncommon",
"rare",
"veryRare",
"epic",
"legendary"
],
"type": "string",
"description": "Rarity level of the item"
},
"source": {
"enum": [
"daily_reward",
"game_card",
"quest",
"trade",
"crafted",
"found",
"purchased"
],
"type": "string",
"description": "How the item was acquired"
},
"itemName": {
"type": "string",
"maxLength": 200,
"description": "Display name of the item"
},
"itemType": {
"type": "string",
"maxLength": 50,
"description": "Type category of the item (consumable, tool, equipment, etc.)"
},
"maxStack": {
"type": "integer",
"minimum": 1,
"description": "Maximum stack size for this item"
},
"metadata": {
"type": "unknown",
"description": "Additional item-specific data (stats, attributes, enchantments, etc.)"
},
"quantity": {
"type": "integer",
"minimum": 1,
"description": "Number of items in the stack"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the record was created"
},
"itemValue": {
"type": "integer",
"minimum": 0,
"description": "Base value of the item in game currency"
},
"stackable": {
"type": "boolean",
"description": "Whether this item can be stacked with others of the same type"
},
"acquiredAt": {
"type": "string",
"format": "datetime",
"description": "When the item was acquired"
},
"lastModified": {
"type": "string",
"format": "datetime",
"description": "When the record was last modified"
},
"logRecordUri": {
"type": "string",
"description": "URI of the game.log record that documents the acquisition of this item"
},
"sourceDetails": {
"ref": "#sourceDetails",
"type": "ref"
}
}
},
"description": "Beta version: Record representing an item in a player's game inventory"
}