Rotation configuration for a user.
Record Key
literal:self
Fixed literal value
Properties
avatars
array
of
ref
#avatarItem
Required
No description available.
enabled
boolean
Required
No description available.
interval
string
Required
No description available.
maxLength: 6 bytesKnown values:
1h, 3h, 6h, 12h, 1d, 1w, 1momode
string
Required
No description available.
maxLength: 20 bytesKnown values:
sequential, randomView raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"enabled",
"interval",
"mode",
"avatars"
],
"properties": {
"mode": {
"type": "string",
"maxLength": 20,
"knownValues": [
"sequential",
"random"
]
},
"avatars": {
"type": "array",
"items": {
"ref": "#avatarItem",
"type": "ref"
}
},
"enabled": {
"type": "boolean"
},
"interval": {
"type": "string",
"maxLength": 6,
"knownValues": [
"1h",
"3h",
"6h",
"12h",
"1d",
"1w",
"1mo"
]
}
}
},
"description": "Rotation configuration for a user."
}