No description available.
Record Key
literal:self
Fixed literal value
Properties
createdAt
string
datetime
Required
When the preferences record was first created.
favoriteTeams
array
of
ref
#favoriteTeam
Optional
Teams the user follows. Order is significant — clients should preserve it for display.
maxLength: 100 itemsupdatedAt
string
datetime
Optional
When the preferences record was last modified.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the preferences record was first created."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "When the preferences record was last modified."
},
"favoriteTeams": {
"type": "array",
"items": {
"ref": "#favoriteTeam",
"type": "ref"
},
"maxLength": 100,
"description": "Teams the user follows. Order is significant — clients should preserve it for display."
}
}
}
}