The collection of rotation schedules defined by a user.
Record Key
literal:self
Fixed literal value
Properties
schedules
array
of
ref
app.chavatar.settings#rotationSchedule
Required
Ordered list of rotation schedules. Active schedule is selected by kind specificity: timed(2) > period(1) > default(0). Ties broken lexicographically by id.
updatedAt
string
datetime
Required
The timestamp when this record was last updated.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"schedules",
"updatedAt"
],
"properties": {
"schedules": {
"type": "array",
"items": {
"ref": "app.chavatar.settings#rotationSchedule",
"type": "ref"
},
"description": "Ordered list of rotation schedules. Active schedule is selected by kind specificity: timed(2) > period(1) > default(0). Ties broken lexicographically by id."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "The timestamp when this record was last updated."
}
}
},
"description": "The collection of rotation schedules defined by a user."
}