A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add missing playlist properties to definition

+5 -2
+5 -2
src/definitions/output/playlist.json
··· 6 6 "type": "record", 7 7 "record": { 8 8 "type": "object", 9 - "required": ["items", "name", "unordered"], 9 + "required": ["id", "items", "name", "unordered"], 10 10 "nullable": ["autoGenerate"], 11 11 "properties": { 12 + "id": { "type": "string" }, 12 13 "autoGenerate": { 13 14 "type": "ref", 14 15 "ref": "#autoGenerate" 15 16 }, 17 + "createdAt": { "type": "string", "format": "datetime" }, 16 18 "items": { 17 19 "type": "array", 18 20 "items": { ··· 27 29 "type": "boolean", 28 30 "default": false, 29 31 "description": "If this property is set to true, the playlist items should not be presented in order. It's considered an unordered collection of tracks." 30 - } 32 + }, 33 + "updatedAt": { "type": "string", "format": "datetime" } 31 34 } 32 35 } 33 36 },