Music streaming on ATProto!

feat(lexicons/v0.feed.track): add `explicit` and `releasedAt` fields

ovyerus.com d5f4268e b70ebbdf

verified
Changed files
+10 -1
packages
lexicons
defs
sh
comet
v0
feed
+10 -1
packages/lexicons/defs/sh/comet/v0/feed/track.json
···
"description": "Annotations of the track's description.",
"ref": "sh.comet.v0.richtext.facet"
},
"tags": {
"type": "array",
"description": "Hashtags for the track, usually for genres.",
···
"createdAt": {
"type": "string",
"format": "datetime",
-
"description": "Timestamp for when the track was originally created/released."
}
}
}
···
"description": "Annotations of the track's description.",
"ref": "sh.comet.v0.richtext.facet"
},
+
"explicit": {
+
"type": "boolean",
+
"description": "Whether the track contains explicit content that may objectionable to some people, usually swearing or adult themes."
+
},
"tags": {
"type": "array",
"description": "Hashtags for the track, usually for genres.",
···
"createdAt": {
"type": "string",
"format": "datetime",
+
"description": "Timestamp for when the track entry was originally created."
+
},
+
"releasedAt": {
+
"type": "string",
+
"format": "datetime",
+
"description": "Timestamp for when the track was released. If in the future, may be used to implement pre-savable tracks."
}
}
}