forked from schemaorg/schemaorg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdo-music-examples.txt
310 lines (263 loc) · 6.94 KB
/
sdo-music-examples.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
TYPES: #music-1 MusicAlbum, MusicGroup, MusicRelease, AlbumRelease, StudioAlbum
PRE-MARKUP:
An example of possible JSON-LD for Let It Be by the Beatles.
MICRODATA:
Not available yet.
RDFA:
Not available yet.
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "MusicAlbum",
"@id": "http://musicbrainz.org/release-group/bff544a7-56e0-3ed6-9e0f-3b676cca9111",
"name": "Let It Be",
"sameAs": [
"http://en.wikipedia.org/wiki/Let_It_Be",
"http://www.wikidata.org/wiki/Q199585"
],
"image": "http://coverartarchive.org/release-group/bff544a7-56e0-3ed6-9e0f-3b676cca9111/front.jpg",
"albumProductionType": "http://schema.org/StudioAlbum",
"albumReleaseType": "http://schema.org/AlbumRelease",
"genre": "rock",
"byArtist": {
"@type": "MusicGroup",
"name": "The Beatles",
"@id": "http://musicbrainz.org/artist/b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d"
},
"albumRelease": {
"@type": "MusicRelease",
"name": "Let It Be",
"@id": "http://musicbrainz.org/release/8d5347a5-9ecb-44be-a213-860aaaf5d0b8"
},
"track": {
"@type": "ItemList",
"numberOfItems": 12,
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "MusicRecording",
"name": "Two Of Us"
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@type": "MusicRecording",
"name": "Dig a Pony"
}
},
{
"@type": "ListItem",
"position": 3,
"item": {
"@type": "MusicRecording",
"name": "Across the Universe"
}
}
]
}
}
</script>
TYPES: #music-2 Person, MusicComposition, Organization
ID: music-2
PRE-MARKUP:
A MusicComposition Example. The following JSON-LD models
the composition A Day in the Life by Lennon and McCartney,
regardless of who performs or records the song.
MICRODATA:
Not available yet.
RDFA:
Not available yet.
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "MusicComposition",
"@id": "http://musicbrainz.org/work/fd1aa4f2-ba26-3a05-b72d-4392c35a073c",
"name": "A Day in the Life",
"composer": [
{
"@type": "Person",
"name": "John Lennon",
"@id": "http://musicbrainz.org/artist/4d5447d7-c61c-4120-ba1b-d7f471d385b9"
},
{
"@type": "Person",
"name": "Paul McCartney",
"@id": "http://musicbrainz.org/artist/ba550d0e-adac-4864-b88b-407cab5e76af"
}
],
"iswcCode": "T-010.140.236-1",
"inLanguage": "EN",
"publisher": {
"@type": "Organization",
"name": "Northern Songs, Ltd.",
"@id": "http://musicbrainz.org/label/26df054d-78cf-4d83-9bb1-a41816125528"
},
"datePublished": "1967",
"lyrics": {
"@type": "CreativeWork",
"text": "I read the news today oh boy..."
}
}
</script>
TYPES: #music-3 MusicGroup, City, MusicAlbum
PRE-MARKUP:
MusicGroup Example.
Sample JSON-LD for the Beatles as described by MusicBrainz.
MICRODATA:
Not available yet.
RDFA:
Not available yet.
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "MusicGroup",
"@id": "http://musicbrainz.org/artist/b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d",
"name": "Beatles",
"sameAs": "http://www.thebeatles.com",
"foundingLocation": {
"@type": "City",
"name": "Liverpool"
},
"foundingDate": "1957",
"dissolutionDate": "1970",
"genre": "Rock",
"album": {
"@type": "MusicAlbum",
"name": "The Beatles",
"alternateName": "The White Album",
"@id": "http://musicbrainz.org/release-group/055be730-dcad-31bf-b550-45ba9c202aa3",
"datePublished": "1968"
},
"member": [
{
"@type": "OrganizationRole",
"member": {
"@type": "Person",
"name": "John Lennon"
},
"startDate": "1957",
"endDate": "1970",
"roleName": ["guitar", "lead vocals"]
},
{
"@type": "OrganizationRole",
"member": {
"@type": "Person",
"name": "Paul McCartney"
},
"startDate": "1957",
"endDate": "1970",
"roleName": ["bass guitar", "lead vocals"]
},
{
"@type": "OrganizationRole",
"member": {
"@type": "Person",
"name": "George Harrison"
},
"startDate": "1958",
"endDate": "1970",
"roleName": ["guitar", "lead vocals"]
},
{
"@type": "OrganizationRole",
"member": {
"@type": "Person",
"name": "Ringo Starr"
},
"startDate": "1962",
"endDate": "1970",
"roleName": "drums"
}
]
}
</script>
TYPES: #music-4 MusicRecording, MusicComposition
PRE-MARKUP:
An example of some of the tracks on the Beatles White Album.
MICRODATA:
Not available yet.
RDFA:
Not available yet.
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "MusicRecording",
"@id": "http://musicbrainz.org/recording/3566e453-8f10-4a45-ac85-2c72eb183ca1",
"name": "Back in the U.S.S.R.",
"producer": {
"@type": "Person",
"name": "George Martin"
},
"duration": "PT2M43S",
"recordingOf": {
"@type": "MusicComposition",
"name": "Back in the U.S.S.R",
"iswcCode": "T-010.140.236-1"
}
}
</script>
TYPES: #music-5 MusicRecording, MusicComposition, PublicationEvent, MusicRelease
PRE-MARKUP:
An example of a single release of
the Beatles White Album, which was
released in the US and Canada on different dates.
MICRODATA:
Not available yet.
RDFA:
Not available yet.
JSON:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "MusicRelease",
"name": "The Beatles",
"alternateName": "White Album",
"musicReleaseFormat": "http://schema.org/VinylFormat",
"duration": "PT1H33M50S",
"inLanguage": "EN",
"recordLabel": {
"@type": "Organization",
"@id": "http://musicbrainz.org/label/cf7fc5cf-e011-4ef4-b511-cd0188537910",
"name": "Apple Records"
},
"catalogNumber": "SWBO 101",
"releasedEvent": [
{
"@type": "PublicationEvent",
"startDate": "1968-11-22",
"location": {
"@type": "Country",
"name": "Canada"
}
},
{
"@type": "PublicationEvent",
"startDate": "1968-11-25",
"location": {
"@type": "Country",
"name": "United States"
}
}
],
"producer": [
{
"@type": "Person",
"name": "George Martin"
},
{
"@type": "Person",
"name": "Chris Thomas"
}
]
}
</script>
TYPES: FakeEntryNeeded, FixMeSomeDay