tangled
alpha
login
or
join now
teal.fm
/
teal
110
fork
atom
Your music, beautifully tracked. All yours. (coming soon)
teal.fm
teal-fm
atproto
110
fork
atom
overview
issues
pulls
pipelines
breaking change to play submission!
Natalie B
9 months ago
3f8f2bdb
ff189506
+25
1 changed file
expand all
collapse all
unified
split
packages
lexicons
real
fm
teal
alpha
feed
play.json
+25
packages/lexicons/real/fm/teal/alpha/feed/play.json
···
47
47
},
48
48
"description": "Array of Musicbrainz artist IDs"
49
49
},
50
50
+
"artists": {
51
51
+
"type": "array",
52
52
+
"items": {
53
53
+
"type": "ref",
54
54
+
"ref": "fm.teal.alpha.feed.defs#artist"
55
55
+
},
56
56
+
"description": "Array of artists in order of original appearance."
57
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
91
+
}
92
92
+
}
93
93
+
},
94
94
+
"artist": {
95
95
+
"type": "object",
96
96
+
"required": ["artistName"],
97
97
+
"properties": {
98
98
+
"artistName": {
99
99
+
"type": "string",
100
100
+
"minLength": 1,
101
101
+
"maxLength": 256,
102
102
+
"maxGraphemes": 2560,
103
103
+
"description": "The name of the artist"
104
104
+
},
105
105
+
"artistMbId": {
106
106
+
"type": "string",
107
107
+
"description": "The Musicbrainz ID of the artist"
83
108
}
84
109
}
85
110
}