Songs that play when someone visits the actor's home page, sourced from plyr.fm.
Record Key
literal:self
Fixed literal value
Properties
autoplay
boolean
Optional
Whether playback should begin automatically on visit (subject to browser autoplay policies).
Default:
falsecreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
tracks
array
of
ref
#trackRef
Required
No description available.
maxLength: 25 itemsupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"tracks",
"createdAt"
],
"properties": {
"tracks": {
"type": "array",
"items": {
"ref": "#trackRef",
"type": "ref"
},
"maxLength": 25
},
"autoplay": {
"type": "boolean",
"default": false,
"description": "Whether playback should begin automatically on visit (subject to browser autoplay policies)."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Songs that play when someone visits the actor's home page, sourced from plyr.fm."
}