Immutable level milestone record. Created once on level-up with createRecord. rkey is zero-padded level (001-099).
any
Any valid record key
Properties
createdAt
string
datetime
Required
When the level was reached
journey
ref
#journeyData
Optional
No description available.
level
integer
Required
The level that was reached
minimum: 1maximum: 99signature
ref
#chronicleSignature
Required
No description available.
snapshot
ref
#levelSnapshot
Required
No description available.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"level",
"snapshot",
"signature",
"createdAt"
],
"properties": {
"level": {
"type": "integer",
"maximum": 99,
"minimum": 1,
"description": "The level that was reached"
},
"journey": {
"ref": "#journeyData",
"type": "ref"
},
"snapshot": {
"ref": "#levelSnapshot",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the level was reached"
},
"signature": {
"ref": "#chronicleSignature",
"type": "ref"
}
}
},
"description": "Immutable level milestone record. Created once on level-up with createRecord. rkey is zero-padded level (001-099)."
}