A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/feed-generator 35 lines 863 B view raw
1{ 2 "lexicon": 1, 3 "id": "app.rocksky.spotify.defs", 4 "defs": { 5 "spotifyTrackView": { 6 "type": "object", 7 "properties": { 8 "id": { 9 "type": "string", 10 "description": "The unique identifier of the Spotify track." 11 }, 12 "name": { 13 "type": "string", 14 "description": "The name of the track." 15 }, 16 "artist": { 17 "type": "string", 18 "description": "The name of the artist." 19 }, 20 "album": { 21 "type": "string", 22 "description": "The name of the album." 23 }, 24 "duration": { 25 "type": "integer", 26 "description": "The duration of the track in milliseconds." 27 }, 28 "previewUrl": { 29 "type": "string", 30 "description": "A URL to a preview of the track." 31 } 32 } 33 } 34 } 35}