Daily activity snapshot. Updated throughout the day via putRecord. rkey is YYYY-MM-DD in user's local timezone.
any
Any valid record key
Properties
activity
ref
#activityCounts
Required
No description available.
createdAt
string
datetime
Required
When the daily record was first created
date
string
Required
Date string in YYYY-MM-DD format (user's local timezone)
engagement
ref
#engagementCounts
Optional
No description available.
expeditionRefs
array
of
string
Optional
AT URIs of expedition records that occurred on this day
expeditions
ref
#expeditionSummary
Optional
No description available.
patterns
ref
#patternsData
Optional
No description available.
player
ref
#playerSnapshot
Required
No description available.
signature
ref
#chronicleSignature
Required
No description available.
updatedAt
string
datetime
Optional
When the daily record was last updated
upperLogRefs
array
of
string
Optional
AT URIs of containing logs (weekly, monthly, yearly) this day belongs to
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"date",
"player",
"activity",
"signature",
"createdAt"
],
"properties": {
"date": {
"type": "string",
"description": "Date string in YYYY-MM-DD format (user's local timezone)"
},
"player": {
"ref": "#playerSnapshot",
"type": "ref"
},
"activity": {
"ref": "#activityCounts",
"type": "ref"
},
"patterns": {
"ref": "#patternsData",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the daily record was first created"
},
"signature": {
"ref": "#chronicleSignature",
"type": "ref"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "When the daily record was last updated"
},
"engagement": {
"ref": "#engagementCounts",
"type": "ref"
},
"expeditions": {
"ref": "#expeditionSummary",
"type": "ref"
},
"upperLogRefs": {
"type": "array",
"items": {
"type": "string"
},
"description": "AT URIs of containing logs (weekly, monthly, yearly) this day belongs to"
},
"expeditionRefs": {
"type": "array",
"items": {
"type": "string"
},
"description": "AT URIs of expedition records that occurred on this day"
}
}
},
"description": "Daily activity snapshot. Updated throughout the day via putRecord. rkey is YYYY-MM-DD in user's local timezone."
}