One enabled first-party page effect. The effect id selects a curated, first-party component; params drive it. Unknown ids are ignored and params are clamped/validated server-side against the effects registry.
Properties
id
string
Required
Curated effect identifier (e.g. sparkleTrail, glitterFall, starfield, marqueeBanner, neonPulse, rainbowLinks).
maxLength: 64 bytesparams
unknown
Optional
Open map of param name to string value for this effect; schema enforced in code (effects-registry), integers encoded as strings and clamped on load.
View raw schema
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"maxLength": 64,
"description": "Curated effect identifier (e.g. sparkleTrail, glitterFall, starfield, marqueeBanner, neonPulse, rainbowLinks)."
},
"params": {
"type": "unknown",
"description": "Open map of param name to string value for this effect; schema enforced in code (effects-registry), integers encoded as strings and clamped on load."
}
},
"description": "One enabled first-party page effect. The effect id selects a curated, first-party component; params drive it. Unknown ids are ignored and params are clamped/validated server-side against the effects registry."
}