systems.sister.item

vault.pds.sister.systems

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

creator string Optional

No description available.

maxLength: 256 bytesminLength: 1 bytes
description string Optional

No description available.

maxLength: 4096 bytes
equipped boolean Optional

No description available.

giftFrom string Optional

No description available.

maxLength: 256 bytesminLength: 1 bytes
giftUri string Optional

No description available.

maxLength: 512 bytesminLength: 1 bytes
hidden boolean Optional

No description available.

icon blob Optional

No description available.

maxSize: 2.0 MB
itemType string Required

No description available.

Allowed: weapon, armor, consumable, cosmetic, material, misc, crate, table, toolkit, helperCrate, shovel, glasses
levelRequirement integer Optional

No description available.

minimum: 0
lootboxRkey string Optional

No description available.

maxLength: 256 bytesminLength: 1 bytes
name string Required

No description available.

maxLength: 128 bytesminLength: 1 bytes
openedAt string datetime Optional

An RFC 3339 formatted timestamp.

openedBy string Optional

No description available.

maxLength: 256 bytesminLength: 1 bytes
rarity string Required

No description available.

Allowed: common, uncommon, rare, epic, legendary, unusual
receivedAt string datetime Optional

An RFC 3339 formatted timestamp.

sourceCrateRkey string Optional

No description available.

maxLength: 256 bytesminLength: 1 bytes
stats array of ref #stat Optional

No description available.

maxLength: 50 items
tags array of string Optional

No description available.

maxLength: 50 items
tradable boolean Optional

No description available.

unusualEffect string Optional

No description available.

Allowed: burning_flames, scorching_flames, sunbeams, cloud_9, arcana, chiroptera_inzanium, dark_fate, spellbound, vivid_plasma, purple_energy, blue_phosphorus
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "rarity",
      "itemType",
      "createdAt"
    ],
    "properties": {
      "icon": {
        "type": "blob",
        "accept": [
          "image/*"
        ],
        "maxSize": 2000000
      },
      "name": {
        "type": "string",
        "maxLength": 128,
        "minLength": 1
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 64,
          "minLength": 1
        },
        "maxLength": 50
      },
      "stats": {
        "type": "array",
        "items": {
          "ref": "#stat",
          "type": "ref"
        },
        "maxLength": 50
      },
      "hidden": {
        "type": "boolean"
      },
      "rarity": {
        "enum": [
          "common",
          "uncommon",
          "rare",
          "epic",
          "legendary",
          "unusual"
        ],
        "type": "string"
      },
      "creator": {
        "type": "string",
        "maxLength": 256,
        "minLength": 1
      },
      "giftUri": {
        "type": "string",
        "maxLength": 512,
        "minLength": 1
      },
      "equipped": {
        "type": "boolean"
      },
      "giftFrom": {
        "type": "string",
        "maxLength": 256,
        "minLength": 1
      },
      "itemType": {
        "enum": [
          "weapon",
          "armor",
          "consumable",
          "cosmetic",
          "material",
          "misc",
          "crate",
          "table",
          "toolkit",
          "helperCrate",
          "shovel",
          "glasses"
        ],
        "type": "string"
      },
      "openedAt": {
        "type": "string",
        "format": "datetime"
      },
      "openedBy": {
        "type": "string",
        "maxLength": 256,
        "minLength": 1
      },
      "tradable": {
        "type": "boolean"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "receivedAt": {
        "type": "string",
        "format": "datetime"
      },
      "description": {
        "type": "string",
        "maxLength": 4096
      },
      "lootboxRkey": {
        "type": "string",
        "maxLength": 256,
        "minLength": 1
      },
      "unusualEffect": {
        "enum": [
          "burning_flames",
          "scorching_flames",
          "sunbeams",
          "cloud_9",
          "arcana",
          "chiroptera_inzanium",
          "dark_fate",
          "spellbound",
          "vivid_plasma",
          "purple_energy",
          "blue_phosphorus"
        ],
        "type": "string"
      },
      "sourceCrateRkey": {
        "type": "string",
        "maxLength": 256,
        "minLength": 1
      },
      "levelRequirement": {
        "type": "integer",
        "minimum": 0
      }
    }
  }
}
stat object

No description available.

Properties

name string Required

No description available.

maxLength: 64 bytesminLength: 1 bytes
value integer Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "name",
    "value"
  ],
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 64,
      "minLength": 1
    },
    "value": {
      "type": "integer"
    }
  }
}

Lexicon Garden

@