Weekly aggregation of daily records. rkey is YYYY-WNN (ISO week). Updated once per day, finalized when week ends.
any
Any valid record key
Properties
aggregates
ref
#weeklyAggregates
Required
No description available.
createdAt
string
datetime
Required
When the weekly record was first created
expeditionRefs
array
of
string
Optional
AT URIs of expedition records that occurred during this week
finalizedAt
string
datetime
Optional
When the weekly record was finalized (end of week)
lowerLogRefs
array
of
string
Optional
AT URIs of daily log records included in this week
patterns
ref
#weeklyPatterns
Optional
No description available.
signature
ref
#chronicleSignature
Required
No description available.
status
string
Required
Whether this week is still being updated or has been finalized
active, finalizedtrends
ref
#trendData
Optional
No description available.
upperLogRefs
array
of
string
Optional
AT URIs of containing logs (monthly, yearly) this week belongs to
week
string
Required
ISO week string in YYYY-WNN format (e.g. 2026-W06)
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"week",
"aggregates",
"status",
"signature",
"createdAt"
],
"properties": {
"week": {
"type": "string",
"description": "ISO week string in YYYY-WNN format (e.g. 2026-W06)"
},
"status": {
"enum": [
"active",
"finalized"
],
"type": "string",
"description": "Whether this week is still being updated or has been finalized"
},
"trends": {
"ref": "#trendData",
"type": "ref"
},
"patterns": {
"ref": "#weeklyPatterns",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the weekly record was first created"
},
"signature": {
"ref": "#chronicleSignature",
"type": "ref"
},
"aggregates": {
"ref": "#weeklyAggregates",
"type": "ref"
},
"finalizedAt": {
"type": "string",
"format": "datetime",
"description": "When the weekly record was finalized (end of week)"
},
"lowerLogRefs": {
"type": "array",
"items": {
"type": "string"
},
"description": "AT URIs of daily log records included in this week"
},
"upperLogRefs": {
"type": "array",
"items": {
"type": "string"
},
"description": "AT URIs of containing logs (monthly, yearly) this week belongs to"
},
"expeditionRefs": {
"type": "array",
"items": {
"type": "string"
},
"description": "AT URIs of expedition records that occurred during this week"
}
}
},
"description": "Weekly aggregation of daily records. rkey is YYYY-WNN (ISO week). Updated once per day, finalized when week ends."
}