Your music, beautifully tracked. All yours. (coming soon) teal.fm
teal-fm atproto

breaking change to play submission!

Natalie B 3f8f2bdb ff189506

+25
+25
packages/lexicons/real/fm/teal/alpha/feed/play.json
··· 47 47 }, 48 48 "description": "Array of Musicbrainz artist IDs" 49 49 }, 50 + "artists": { 51 + "type": "array", 52 + "items": { 53 + "type": "ref", 54 + "ref": "fm.teal.alpha.feed.defs#artist" 55 + }, 56 + "description": "Array of artists in order of original appearance." 57 + }, 50 58 "releaseName": { 51 59 "type": "string", 52 60 "maxLength": 256, ··· 80 88 "format": "datetime", 81 89 "description": "The unix timestamp of when the track was played" 82 90 } 91 + } 92 + } 93 + }, 94 + "artist": { 95 + "type": "object", 96 + "required": ["artistName"], 97 + "properties": { 98 + "artistName": { 99 + "type": "string", 100 + "minLength": 1, 101 + "maxLength": 256, 102 + "maxGraphemes": 2560, 103 + "description": "The name of the artist" 104 + }, 105 + "artistMbId": { 106 + "type": "string", 107 + "description": "The Musicbrainz ID of the artist" 83 108 } 84 109 } 85 110 }