Backfill in-progress. Some lexicons and records may be missing or incomplete.

net.anisota.beta.game.pack

anisota.net

Documentation

main record

Beta version: Record tracking daily pack openings and streak information

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

When the record was created

lastModified string datetime Optional

When the record was last modified

lastOpenTime string datetime Required

When daily pack was last opened

longestStreak integer Optional

Longest daily pack opening streak achieved

minimum: 0
packHistory array of ref #packHistoryEntry Optional

History of the last few pack openings

maxLength: 30 bytes
streak integer Required

Current daily pack opening streak count

minimum: 0
totalOpens integer Required

Total number of times daily packs have been opened

minimum: 0
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "lastOpenTime",
      "totalOpens",
      "streak",
      "createdAt"
    ],
    "properties": {
      "streak": {
        "type": "integer",
        "minimum": 0,
        "description": "Current daily pack opening streak count"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the record was created"
      },
      "totalOpens": {
        "type": "integer",
        "minimum": 0,
        "description": "Total number of times daily packs have been opened"
      },
      "packHistory": {
        "type": "array",
        "items": {
          "ref": "#packHistoryEntry",
          "type": "ref"
        },
        "maxLength": 30,
        "description": "History of the last few pack openings"
      },
      "lastModified": {
        "type": "string",
        "format": "datetime",
        "description": "When the record was last modified"
      },
      "lastOpenTime": {
        "type": "string",
        "format": "datetime",
        "description": "When daily pack was last opened"
      },
      "longestStreak": {
        "type": "integer",
        "minimum": 0,
        "description": "Longest daily pack opening streak achieved"
      }
    }
  },
  "description": "Beta version: Record tracking daily pack openings and streak information"
}
packHistoryEntry object

A single pack opening entry in the history

Properties

itemsReceived array of ref#receivedItem Optional

Items received from this pack

openTime string datetime Optional

When this pack was opened

streakCount integer Optional

Streak count at time of opening

View raw schema
{
  "type": "object",
  "properties": {
    "openTime": {
      "type": "string",
      "format": "datetime",
      "description": "When this pack was opened"
    },
    "streakCount": {
      "type": "integer",
      "description": "Streak count at time of opening"
    },
    "itemsReceived": {
      "type": "array",
      "items": {
        "ref": "#receivedItem",
        "type": "ref"
      },
      "description": "Items received from this pack"
    }
  },
  "description": "A single pack opening entry in the history"
}
receivedItem object

An item received from a pack opening

Properties

itemId string Optional

ID of the item received

quantity integer Optional

Quantity received

rarity string Optional

Rarity of the item

View raw schema
{
  "type": "object",
  "properties": {
    "itemId": {
      "type": "string",
      "description": "ID of the item received"
    },
    "rarity": {
      "type": "string",
      "description": "Rarity of the item"
    },
    "quantity": {
      "type": "integer",
      "description": "Quantity received"
    }
  },
  "description": "An item received from a pack opening"
}

Lexicon Garden

@