Yearly aggregation of monthly records. rkey is YYYY. Updated once per month, finalized when year ends.
any
Any valid record key
Properties
aggregates
ref
#yearlyAggregates
Required
No description available.
createdAt
string
datetime
Required
When the yearly record was first created
finalizedAt
string
datetime
Optional
When the yearly record was finalized (end of year)
lowerLogRefs
array
of
string
Optional
AT URIs of monthly log records included in this year
patterns
ref
#yearlyPatterns
Optional
No description available.
signature
ref
#chronicleSignature
Required
No description available.
status
string
Required
Whether this year is still being updated or has been finalized
active, finalizedyear
string
Required
Year string in YYYY format (e.g. 2026)
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"year",
"aggregates",
"status",
"signature",
"createdAt"
],
"properties": {
"year": {
"type": "string",
"description": "Year string in YYYY format (e.g. 2026)"
},
"status": {
"enum": [
"active",
"finalized"
],
"type": "string",
"description": "Whether this year is still being updated or has been finalized"
},
"patterns": {
"ref": "#yearlyPatterns",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the yearly record was first created"
},
"signature": {
"ref": "#chronicleSignature",
"type": "ref"
},
"aggregates": {
"ref": "#yearlyAggregates",
"type": "ref"
},
"finalizedAt": {
"type": "string",
"format": "datetime",
"description": "When the yearly record was finalized (end of year)"
},
"lowerLogRefs": {
"type": "array",
"items": {
"type": "string"
},
"description": "AT URIs of monthly log records included in this year"
}
}
},
"description": "Yearly aggregation of monthly records. rkey is YYYY. Updated once per month, finalized when year ends."
}