A music player that connects to your cloud/distributed storage.
at v4 23 lines 602 B view raw
1{ 2 "lexicon": 1, 3 "id": "sh.diffuse.output.trackBundle", 4 "defs": { 5 "main": { 6 "type": "record", 7 "record": { 8 "type": "object", 9 "required": ["id", "tracks"], 10 "properties": { 11 "id": { "type": "string" }, 12 "createdAt": { "type": "string", "format": "datetime" }, 13 "tracks": { 14 "type": "array", 15 "description": "A bundle of tracks", 16 "items": { "type": "ref", "ref": "sh.diffuse.output.track" } 17 }, 18 "updatedAt": { "type": "string", "format": "datetime" } 19 } 20 } 21 } 22 } 23}