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: 0packHistory
array
of
ref
#packHistoryEntry
Optional
History of the last few pack openings
maxLength: 30 bytesstreak
integer
Required
Current daily pack opening streak count
minimum: 0totalOpens
integer
Required
Total number of times daily packs have been opened
minimum: 0View 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"
}