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