Common

NameTypeDescription
_idstringThe ID of the item
namestringThe name of the item
shortNamestringThe short name of the item
descriptionstringThe description of the item
priceintThe base price in rubles of the item
weightfloatThe weight of the item
maxStackintThe maximum stack size of the item
raritystringThe rarity of the item
gridobjectThe grid properties of the item
_modifiedintThe modified date as Unix timestamp
_kindstringThe entity type of the item

Grid

NameTypeDescription
colorobjectThe grid background color in RGBA
heightintThe grid height of the item
widthintThe grid width of the item

Color

NameTypeDescription
ruintRed channel
guintGreen channel
buintBlue channel
auintAlpha channel

Example

{
  "_id": "590c392f86f77444754deb29",
  "name": "SSD drive",
  "shortName": "SSD",
  "description": "Solid state drive. Used to store data, with enhanced read and write performance.",
  "price": 250000,
  "weight": 0.4,
  "maxStack": 1,
  "rarity": "rare",
  "grid": {
    "color": {
      "r": 28,
      "g": 65,
      "b": 86,
      "a": 255
    },
    "height": 1,
    "width": 1
  },
  "_modified": 1571536468,
  "_kind": "common"
}