-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscography.xml
982 lines (975 loc) · 44.4 KB
/
discography.xml
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
<?xml version="1.0" encoding="UTF-8"?>
<!-- Checklist: add release id to concerts.xml if live concert -->
<discography modified="2023-09-04">
<release id="swinging-big-sound">
<artist>Don Jacoby and the College All-Stars</artist>
<name>Swinging Big Sound</name>
<year>1962</year>
<type>album</type>
<link type="Discogs" url="https://www.discogs.com/master/738171"/>
</release>
<release id="buttercorn-lady">
<artist>Art Blakey & the Jazz Messengers</artist>
<name>Buttercorn Lady</name>
<year>1966</year>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000187725"/>
<link type="Discogs" url="https://www.discogs.com/master/176740"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/06f9a118-22c0-3e03-a547-6de7a7c73922"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q16954686"/>
</release>
<release id="dream-weaver">
<artist>The Charles Lloyd Quartet</artist>
<name>Dream Weaver</name>
<year>1966</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000224251"/>
<link type="Discogs" url="https://www.discogs.com/master/168858"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5306478"/>
</release>
<release id="forest-flower">
<artist>Charles Lloyd</artist>
<name>Forest Flower</name>
<year>1967</year>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000120169"/>
<link type="Discogs" url="https://www.discogs.com/master/168859"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/87391912-d884-4521-8c5d-576d054ff03e"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5468862"/>
</release>
<release id="love-in">
<artist>The Charles Lloyd Quartet</artist>
<name>Love-In</name>
<year>1967</year>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000661993"/>
<link type="Discogs" url="https://www.discogs.com/master/168860"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/a97b2b88-d7b7-4f69-9984-5f841e6f81a2"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q6690148"/>
</release>
<release id="journey-within">
<artist>The Charles Lloyd Quartet</artist>
<name>Journey Within</name>
<year>1967</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000894426"/>
<link type="Discogs" url="https://www.discogs.com/master/366042"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q6296363"/>
</release>
<release id="charles-lloyd-in-europe">
<artist>Charles Lloyd</artist>
<name>Charles Lloyd in Europe</name>
<year>1968</year>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000455551"/>
<link type="Discogs" url="https://www.discogs.com/master/259282"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/189824ce-743c-4429-9da5-e27ff4f2d70a"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5080302"/>
</release>
<release id="life-between-the-exit-signs">
<artist>Keith Jarrett</artist>
<name>Life Between the Exit Signs</name>
<year>1968</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000911876"/>
<link type="Discogs" url="https://www.discogs.com/master/292865"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/b9132c60-c29b-38b9-938a-1076b4635967"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q6544734"/>
</release>
<release id="restoration-ruin">
<artist>Keith Jarrett</artist>
<name>Restoration Ruin</name>
<year>1968</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/restoration-ruin-mw0000868106/credits"/>
<link type="Discogs" url="https://www.discogs.com/master/292854"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/3d857781-8db4-3283-b046-ef3c04b4f850"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q17027792"/>
</release>
<release id="soundtrack">
<artist>Charles Lloyd</artist>
<name>Soundtrack</name>
<year>1969</year>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000874223"/>
<link type="Discogs" url="https://www.discogs.com/master/435168"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/60b5aae7-7423-40fa-be5d-91fa8a174aad"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7564980"/>
</release>
<release id="somewhere-before">
<artist>Keith Jarrett Trio</artist>
<name>Somewhere Before</name>
<year>1969</year>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000196472"/>
<link type="Discogs" url="https://www.discogs.com/master/218104"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/9459e5d4-7ced-41fe-b410-ab9128b3d0f5"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7560336"/>
</release>
<release id="charles-lloyd-in-the-soviet-union">
<artist>Charles Lloyd</artist>
<name>Charles Lloyd in the Soviet Union</name>
<year>1970</year>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000890370"/>
<link type="Discogs" url="https://www.discogs.com/master/571145"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/ae5fbb1d-a00f-4d9a-bb96-9da0ef333fdf"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5080303"/>
</release>
<release id="gary-burton-keith-jarrett">
<artist>Gary Burton & Keith Jarrett</artist>
<name>Gary Burton & Keith Jarrett</name>
<year>1971</year>
<firstreleasedate>1971-01-12</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000869415"/>
<link type="Discogs" url="https://www.discogs.com/master/119159"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/29c297a2-73e2-4d74-9ae4-224e74146ce3"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q2687806"/>
</release>
<release id="the-mourning-of-a-star">
<artist>Keith Jarrett</artist>
<name>The Mourning of a Star</name>
<year>1971</year>
<firstreleasedate>1971-07-09</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000111796"/>
<link type="Discogs" url="https://www.discogs.com/master/271143"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release/9654811d-cad3-44b7-b29d-a0bb0777b1c7"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7752504"/>
</release>
<release id="the-flowering">
<artist>The Charles Lloyd Quartet</artist>
<name>The Flowering</name>
<year>1971</year>
<firstreleasedate>1971-07-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000882294"/>
<link type="Discogs" url="https://www.discogs.com/master/338330"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/fa92987f-8dd5-4596-92a8-8d00658530e5"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7734541"/>
</release>
<release id="facing-you">
<artist>Keith Jarrett</artist>
<name>Facing You</name>
<year>1972</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000192031"/>
<link type="Discogs" url="https://www.discogs.com/master/26290"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/7260d883-056f-34e9-ba51-6c1da663d64b"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5428630"/>
</release>
<release id="birth">
<artist>Keith Jarrett</artist>
<name>Birth</name>
<year>1972</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000311725"/>
<link type="Discogs" url="https://www.discogs.com/master/119164"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/b00157e9-76f3-3e99-bf3a-9257187a9314"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q4916992"/>
</release>
<release id="expectations">
<artist>Keith Jarrett</artist>
<name>Expectations</name>
<year>1972</year>
<firstreleasedate>1972-10-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000691522"/>
<link type="Discogs" url="https://www.discogs.com/master/26466"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/68e17ee7-446e-3083-b476-e89dc7940fdf"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5420839"/>
</release>
<release id="ruta-and-daitya">
<artist>Keith Jarrett & Jack DeJohnette</artist>
<name>Ruta and Daitya</name>
<year>1973</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000093768"/>
<link type="Discogs" url="https://www.discogs.com/master/26523"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/3c7242d8-5406-365b-87d7-024c79b37953"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7382748"/>
</release>
<release id="fort-yawuh">
<artist>Keith Jarrett</artist>
<name>Fort Yawuh</name>
<year>1973</year>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000308857"/>
<link type="Discogs" url="https://www.discogs.com/master/53918"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/d14ac8ec-388f-3c48-92fe-43e2b35bb897"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5472421"/>
</release>
<release id="solo-concerts-bremen-and-lausanne">
<artist>Keith Jarrett</artist>
<name>Solo Concerts: Bremen and Lausanne</name>
<year>1973</year>
<firstreleasedate>1973-11-01</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000649585"/>
<link type="Discogs" url="https://www.discogs.com/master/26363"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/e64d5bbe-7494-3634-ac11-a4ac06b3714"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q2299135"/>
</release>
<release id="in-the-light">
<artist>Keith Jarrett</artist>
<name>In the Light</name>
<year>1974</year>
<firstreleasedate>1974-04-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000612161"/>
<link type="Discogs" url="https://www.discogs.com/master/475536"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/bbf52f96-8cab-3a97-8813-6615d693bbb7"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q6012420"/>
</release>
<release id="treasure-island">
<artist>Keith Jarrett</artist>
<name>Treasure Island</name>
<year>1974</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000196854"/>
<link type="Discogs" url="https://www.discogs.com/master/26369"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/1fc26879-3765-3408-b89a-b7686b1c6e44"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7836698"/>
</release>
<release id="belonging">
<artist>Keith Jarrett, Jan Garbarek, Palle Danielsson & Jon Christensen</artist>
<name>Belonging</name>
<year>1974</year>
<firstreleasedate>1974-10-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000192033"/>
<link type="Discogs" url="https://www.discogs.com/master/26453"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release/bbf913d4-df10-4c46-8eda-1412600d84fc"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q2895061"/>
</release>
<release id="luminessence">
<artist>Keith Jarrett & Jan Garbarek</artist>
<name>Luminessence</name>
<year>1975</year>
<firstreleasedate>1975-03-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000200605"/>
<link type="Discogs" url="https://www.discogs.com/release/3548396"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/cba95cf7-3e69-3b58-8b9f-9b018de0633c"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3267308"/>
</release>
<release id="backhand">
<artist>Keith Jarrett</artist>
<name>Backhand</name>
<year>1975</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000915428"/>
<link type="Discogs" url="https://www.discogs.com/master/103084"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/f1264345-2289-40cb-a8d7-2fb46af15d40"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q4839659"/>
</release>
<release id="el-juicio-the-judgement">
<artist>Keith Jarrett</artist>
<name>El Juicio (The Judgement)</name>
<year>1975</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000744051"/>
<link type="Discogs" url="https://www.discogs.com/release/1903153"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/977a4ca2-d51b-3d42-bb5c-7cfb775c7a50"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5351470"/>
</release>
<release id="death-and-the-flower">
<artist>Keith Jarrett</artist>
<name>Death and the Flower</name>
<year>1975</year>
<firstreleasedate>1975-05-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000113144"/>
<link type="Discogs" url="https://www.discogs.com/master/53925"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/6e07bc91-7af9-3139-9d49-3a0ee317d330"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3020742"/>
</release>
<release id="the-koln-concert">
<artist>Keith Jarrett</artist>
<name>The Köln Concert</name>
<year>1975</year>
<firstreleasedate>1975-11-30</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000188364"/>
<link type="Discogs" url="https://www.discogs.com/master/26241"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/516d4629-7bf3-3ac3-907a-ed9a022db840"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q532850"/>
</release>
<release id="mysteries">
<artist>Keith Jarrett</artist>
<name>Mysteries</name>
<year>1976</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000654500"/>
<link type="Discogs" url="https://www.discogs.com/master/189894"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/d12b0e77-eb78-3035-825d-ce1518e807c5"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3331720"/>
</release>
<release id="shades">
<artist>Keith Jarrett</artist>
<name>Shades</name>
<year>1976</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000532461"/>
<link type="Discogs" url="https://www.discogs.com/master/212238"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/df98314a-855c-4c1f-bc84-fa599cd1291a"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7460297"/>
</release>
<release id="arbour-zena">
<artist>Keith Jarrett</artist>
<name>Arbour Zena</name>
<year>1976</year>
<firstreleasedate>1976-05-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000188227"/>
<link type="Discogs" url="https://www.discogs.com/master/53928"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/75832078-4350-3e99-bfb6-c2c914574014"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q2859733"/>
</release>
<release id="hymns-spheres">
<artist>Keith Jarrett</artist>
<name>Hymns / Spheres</name>
<year>1976</year>
<firstreleasedate>1976-11-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000867587"/>
<link type="Discogs" url="https://www.discogs.com/master/278312"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/6f76f14a-69f0-4f03-9c91-d758808222a4"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q13582537"/>
</release>
<release id="the-survivors-suite">
<artist>Keith Jarrett</artist>
<name>The Survivors' Suite</name>
<year>1977</year>
<firstreleasedate>1977-01-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000651281"/>
<link type="Discogs" url="https://www.discogs.com/master/26495"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/2976c1d9-55fc-3a4a-913c-f117e4436df5"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q2414491"/>
</release>
<release id="staircase">
<artist>Keith Jarrett</artist>
<name>Staircase</name>
<year>1977</year>
<firstreleasedate>1977-05-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000651424"/>
<link type="Discogs" url="https://www.discogs.com/master/26387"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/226d59c5-c127-3aee-abab-b5687deacf2d"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7597091"/>
</release>
<release id="byablue">
<artist>Keith Jarrett</artist>
<name>Byablue</name>
<year>1977</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000874554"/>
<link type="Discogs" url="https://www.discogs.com/master/53968"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/dd1e865a-ae3f-3c36-ab95-d30f2b449018"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5003902"/>
</release>
<release id="sun-bear-concerts">
<artist>Keith Jarrett</artist>
<name>Sun Bear Concerts</name>
<year>1978</year>
<firstreleasedate>1978-01-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000316745"/>
<link type="Discogs" url="https://www.discogs.com/master/26306"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/3cdb714e-a620-362b-91d9-3fb33a91e63d"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3503734"/>
</release>
<release id="my-song">
<artist>Keith Jarrett</artist>
<name>My Song</name>
<year>1978</year>
<firstreleasedate>1978-06-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000188228"/>
<link type="Discogs" url="https://www.discogs.com/master/26503"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/b60a80b9-5077-38f7-92df-fda49d5a73f5"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q941930"/>
</release>
<release id="bop-be">
<artist>Keith Jarrett</artist>
<name>Bop-Be</name>
<year>1978</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000938452"/>
<link type="Discogs" url="https://www.discogs.com/master/53971"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/877553d1-65c5-4921-b194-0526b834f0c1"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q4944150"/>
</release>
<release id="eyes-of-the-heart">
<artist>Keith Jarrett</artist>
<name>Eyes of the Heart</name>
<year>1979</year>
<firstreleasedate>1979-05-25</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000188362"/>
<link type="Discogs" url="https://www.discogs.com/master/212263"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/fdb574a8-4723-35af-826e-7a6ebf44ed8e"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5422841"/>
</release>
<release id="nude-ants">
<artist>Keith Jarrett, Jan Garbarek, Palle Danielsson & Jon Christensen</artist>
<name>Nude Ants</name>
<year>1980</year>
<firstreleasedate>1980-03-25</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000192984"/>
<link type="Discogs" url="https://www.discogs.com/master/26514"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/a8cde19e-6cf8-3eec-b043-8d012aa4fecc"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3346053"/>
</release>
<release id="sacred-hymns">
<artist>Keith Jarrett</artist>
<name>G.I. Gurdjieff: Sacred Hymns</name>
<year>1980</year>
<firstreleasedate>1980-09-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000197736"/>
<link type="Discogs" url="https://www.discogs.com/master/119160"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/a8b37587-5f04-3c66-81da-199999408cf1"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5512023"/>
</release>
<release id="the-celestial-hawk">
<artist>Keith Jarrett</artist>
<name>The Celestial Hawk</name>
<year>1980</year>
<firstreleasedate>1980-11-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000064242"/>
<link type="Discogs" url="https://www.discogs.com/master/119166"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/871478b2-7f71-3314-91af-f3c3b3eef584"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7721829"/>
</release>
<release id="invocations-the-moth-and-the-flame">
<artist>Keith Jarrett</artist>
<name>Invocations / The Moth and the Flame</name>
<year>1981</year>
<firstreleasedate>1981-05-27</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000651255"/>
<link type="Discogs" url="https://www.discogs.com/master/212430"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/953e046c-79e2-3d8f-b416-1d72c35179fe"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3153964"/>
</release>
<release id="ritual">
<artist>Keith Jarrett & Dennis Russell Davies</artist>
<name>Ritual</name>
<year>1982</year>
<firstreleasedate>1982-02-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000898684"/>
<link type="Discogs" url="https://www.discogs.com/master/259251"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/c63d6808-0f59-48b5-a611-63e6b41176a5"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7336839"/>
</release>
<release id="concerts">
<artist>Keith Jarrett</artist>
<name>Concerts</name>
<year>1982</year>
<firstreleasedate>1982-09-15</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000651256"/>
<link type="Discogs" url="https://www.discogs.com/master/315902"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/91c4ef2a-7cf3-41c8-a33b-7161bbb446a8"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5158589"/>
</release>
<release id="standards-volume-1">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Standards, Volume 1</name>
<year>1983</year>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000188229"/>
<link type="Discogs" url="https://www.discogs.com/master/299956"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/794ec2de-07e4-3773-84c2-9d807678746f"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q2703037"/>
</release>
<release id="changes">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Changes</name>
<year>1984</year>
<firstreleasedate>1984-09-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000649584"/>
<link type="Discogs" url="https://www.discogs.com/master/261206"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/3c165b2e-4716-3843-b544-7b8223e4de90"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q2295483"/>
</release>
<release id="standards-volume-2">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Standards, Volume 2</name>
<year>1985</year>
<firstreleasedate>1985-04-29</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000649586"/>
<link type="Discogs" url="https://www.discogs.com/master/289295"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/a994ec2b-1552-3ce3-9b5a-066075a141a1"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q2330381"/>
</release>
<release id="standards-live">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Standards Live</name>
<year>1986</year>
<firstreleasedate>1986-03-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000192032"/>
<link type="Discogs" url="https://www.discogs.com/master/53983"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/6246516d-9b72-3f27-8792-f52f69af2e03"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7598422"/>
</release>
<release id="spirits">
<artist>Keith Jarrett</artist>
<name>Spirits</name>
<year>1986</year>
<firstreleasedate>1986-09-29</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000188363"/>
<link type="Discogs" url="https://www.discogs.com/master/26416"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/978fafa2-2040-417d-b167-f68950193560"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7578073"/>
</release>
<release id="book-of-ways">
<artist>Keith Jarrett</artist>
<name>Book of Ways</name>
<year>1987</year>
<firstreleasedate>1987-09-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000193575"/>
<link type="Discogs" url="https://www.discogs.com/master/119167"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/d747ef24-53f4-316b-875b-932d79f00697"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q4943099"/>
</release>
<release id="still-live">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Still Live</name>
<year>1988</year>
<firstreleasedate>1988-03-07</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000195323"/>
<link type="Discogs" url="https://www.discogs.com/master/218103"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/c9e02421-4053-3517-a201-d759f669fe8d"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7617100"/>
</release>
<release id="das-wohltemperierte-klavier-buch-i">
<artist>Keith Jarrett</artist>
<name>J. S. Bach: Das Wohltemperierte Klavier, Buch I</name>
<year>1988</year>
<firstreleasedate>1988-04-25</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000877646"/>
<link type="Discogs" url="https://www.discogs.com/master/444813"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/03d06048-b8f0-3b13-ae2a-c8b307e7b067"/>
</release>
<release id="dark-intervals">
<artist>Keith Jarrett</artist>
<name>Dark Intervals</name>
<year>1988</year>
<firstreleasedate>1988-10-03</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000197806"/>
<link type="Discogs" url="https://www.discogs.com/master/53937"/>
<link type="MusicBrainz" url="https://www.wikidata.org/wiki/Q3702715"/>
<link type="Wikidata" url="https://musicbrainz.org/release-group/3697a2df-0d93-3daf-9604-3e47a493be0e"/>
</release>
<release id="personal-mountains">
<artist>Keith Jarrett, Jan Garbarek, Palle Danielsson & Jon Christensen</artist>
<name>Personal Mountains</name>
<year>1989</year>
<firstreleasedate>1989-05-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000653601"/>
<link type="Discogs" url="https://www.discogs.com/master/26480"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/bafc9193-616e-3718-9909-0ef5678b3692"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3375701"/>
</release>
<release id="changeless">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Changeless</name>
<year>1989</year>
<firstreleasedate>1989-10-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000654753"/>
<link type="Discogs" url="https://www.discogs.com/master/347492"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/ff67b63e-1a9a-38ed-b399-2df09661817b"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5071906"/>
</release>
<release id="paris-concert">
<artist>Keith Jarrett</artist>
<name>Paris Concert</name>
<year>1990</year>
<firstreleasedate>1990-04-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000309205"/>
<link type="Discogs" url="https://www.discogs.com/master/26275"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/4a055da3-1626-3840-9ffc-5ef55928f4f0"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3818513"/>
</release>
<release id="tribute">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Tribute</name>
<year>1990</year>
<firstreleasedate>1990-10-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000674398"/>
<link type="Discogs" url="https://www.discogs.com/master/326676"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/6905ece1-5d88-315b-9184-689fab9c4328"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7840506"/>
</release>
<release id="das-wohltemperierte-klavier-buch-ii">
<artist>Keith Jarrett</artist>
<name>J. S. Bach: Das Wohltemperierte Klavier, Buch II</name>
<year>1991</year>
<firstreleasedate>1991-05-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000875519"/>
<link type="Discogs" url="https://www.discogs.com/master/744731"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/9d9e7efc-3358-37d6-b5f1-0fb0e3cb1383"/>
</release>
<release id="the-cure">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>The Cure</name>
<year>1991</year>
<firstreleasedate>1991-10-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000273257"/>
<link type="Discogs" url="https://www.discogs.com/master/490714"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/9d13c204-8e04-3db3-b8df-aae4931ccdcc"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7728416"/>
</release>
<release id="bye-bye-blackbird">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Bye Bye Blackbird</name>
<year>1993</year>
<firstreleasedate>1993-04-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000096952"/>
<link type="Discogs" url="https://www.discogs.com/master/79381"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/abab7f9f-d122-36e5-ac24-a95dd68d7576"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q5004017"/>
</release>
<release id="vienna-concert">
<artist>Keith Jarrett</artist>
<name>Vienna Concert</name>
<year>1992</year>
<firstreleasedate>1992-09-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000084890"/>
<link type="Discogs" url="https://www.discogs.com/master/861832"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/e9daa13f-3d75-3b98-baed-8f45986badf8"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q4011471"/>
</release>
<release id="at-the-deer-head-inn">
<artist>Keith Jarrett, Gary Peacock & Paul Motian</artist>
<name>At the Deer Head Inn</name>
<year>1994</year>
<firstreleasedate>1994-04-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000623859"/>
<link type="Discogs" url="https://www.discogs.com/master/673816"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/3f1c8b95-09ce-376e-afb2-324b3b99d51b"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q4812489"/>
</release>
<release id="bridge-of-light">
<artist>Keith Jarrett</artist>
<name>Bridge of Light</name>
<year>1994</year>
<firstreleasedate>1994-04-xx</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000610811"/>
<link type="Discogs" url="https://www.discogs.com/master/348648"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/bedf5432-cc5a-36c3-992f-4c05b8e83e8c"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q4966435"/>
</release>
<release id="standards-in-norway">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Standards in Norway</name>
<year>1995</year>
<firstreleasedate>1995-04-xx</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000176329"/>
<link type="Discogs" url="https://www.discogs.com/master/218102"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/56fed9a1-ec8b-37a3-9629-f2d8bf4ff041"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7598431"/>
</release>
<release id="at-the-blue-note">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Keith Jarrett at the Blue Note - The complete recordings</name>
<year>1995</year>
<firstreleasedate>1995-10-25</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000176964"/>
<link type="Discogs" url="https://www.discogs.com/master/1362851"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/c81c22f8-0fbe-3a16-8dcf-7226737bf115"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q4459658"/>
</release>
<release id="la-scala">
<artist>Keith Jarrett</artist>
<name>La Scala</name>
<year>1997</year>
<firstreleasedate>1997-05-12</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000020899"/>
<link type="Discogs" url="https://www.discogs.com/master/259278"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/52ca368a-a71f-3627-b65c-0b4055857d20"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3819026"/>
</release>
<release id="tokyo-96">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Tokyo '96</name>
<year>1998</year>
<firstreleasedate>1998-04-20</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000709266"/>
<link type="Discogs" url="https://www.discogs.com/master/624007"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/c045faf4-175e-3272-b996-096cf2a86911"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q17026026"/>
</release>
<release id="the-melody-at-night-with-you">
<artist>Keith Jarrett</artist>
<name>The Melody At Night, With You</name>
<year>1999</year>
<firstreleasedate>1999-10-04</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000256895"/>
<link type="Discogs" url="https://www.discogs.com/master/347489"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/6d6a83dd-05ac-3de1-887f-e0da7a603532"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7750940"/>
</release>
<release id="whisper-not">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Whisper Not</name>
<year>2000</year>
<firstreleasedate>2000-10-09</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000620211"/>
<link type="Discogs" url="https://www.discogs.com/master/315901"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/3e6a1e73-6e91-3e47-8f3c-074e505aff01"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7993930"/>
</release>
<release id="inside-out">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Inside Out</name>
<year>2001</year>
<firstreleasedate>2001-10-01</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000013605"/>
<link type="Discogs" url="https://www.discogs.com/master/616584"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/1108c5ac-fe35-39b9-a275-42cce397e36d"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q6037737"/>
</release>
<release id="always-let-me-go">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Always Let Me Go</name>
<year>2002</year>
<firstreleasedate>2002-10-22</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000662266"/>
<link type="Discogs" url="https://www.discogs.com/master/394017"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/886a2598-71e6-3e39-a255-2282cd88a48a"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q3126677"/>
</release>
<release id="up-for-it">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>Up For It</name>
<year>2003</year>
<firstreleasedate>2003-05-13</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000030116"/>
<link type="Discogs" url="https://www.discogs.com/master/1067453"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/58ee14a1-caf7-3152-a370-45b45eee999c"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q7898039"/>
</release>
<release id="the-out-of-towners">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>The Out-of-Towners</name>
<year>2004</year>
<firstreleasedate>2004-08-30</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0000209537"/>
<link type="Discogs" url="https://www.discogs.com/master/259281"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/9cd97b88-14e9-3880-8287-7e2a5409d1b0"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q2156532"/>
</release>
<!-- TODO: Barber: Piano Concerto; Bartók: Piano Concerto No. 3; Keith Jarrett: Tokyo Encore -->
<!--
<release id="">
<artist>Keith Jarrett</artist>
<name></name>
<year></year>
<firstreleasedate></firstreleasedate>
<type></type>
<link type="AllMusic" url=""/>
<link type="Discogs" url=""/>
<link type="MusicBrainz" url=""/>
<link type="Wikidata" url=""/>
</release>
-->
<release id="last-dance">
<artist>Keith Jarrett & Charlie Haden</artist>
<name>Last Dance</name>
<year>2014</year>
<firstreleasedate>2014-06-13</firstreleasedate>
<type>album</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0002651007"/>
<link type="Discogs" url="https://www.discogs.com/master/738318"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/3f9b64ca-d3d2-4350-95d0-952bfb207551"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q17490367"/>
</release>
<release id="creation">
<artist>Keith Jarrett</artist>
<name>Creation</name>
<year>2015</year>
<firstreleasedate>2015-05-08</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0002837009"/>
<link type="Discogs" url="https://www.discogs.com/master/1069420"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/38b82833-997b-4fce-89a3-51e858dea4f9"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q19946311"/>
</release>
<release id="a-multitude-of-angels">
<artist>Keith Jarrett</artist>
<name>A Multitude of Angels</name>
<year>2016</year>
<firstreleasedate>2016-11-04</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0002984128"/>
<link type="Discogs" url="https://www.discogs.com/master/1109059"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/1bfb266c-c130-485b-941d-a2a77ebde5da"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q28872132"/>
</release>
<release id="after-the-fall">
<artist>Keith Jarrett, Gary Peacock & Jack DeJohnette</artist>
<name>After the Fall</name>
<year>2018</year>
<firstreleasedate>2018-03-02</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0003141419"/>
<link type="Discogs" url="https://www.discogs.com/master/1324381"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/f7ba671c-082a-48e2-ba84-7c986f410dd6"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q55603321"/>
</release>
<release id="la-fenice">
<artist>Keith Jarrett</artist>
<name>La Fenice</name>
<year>2018</year>
<firstreleasedate>2018-10-19</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0003211288"/>
<link type="Discogs" url="https://www.discogs.com/master/1441618"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/884cd772-2368-4070-951a-9fcd30fbc307"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q60773202"/>
</release>
<release id="the-well‐tempered-clavier-book-i">
<artist>Keith Jarrett</artist>
<name>The Well‐Tempered Clavier, Book I</name>
<year>2019</year>
<firstreleasedate>2019-06-14</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0003278174"/>
<link type="Discogs" url="https://www.discogs.com/master/1567057"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/b2316379-3e38-4f92-ac2f-6bd6b6d6450b"/>
<!-- <link type="Wikidata" url=""/> -->
</release>
<release id="munich-2016">
<artist>Keith Jarrett</artist>
<name>Munich 2016</name>
<year>2019</year>
<firstreleasedate>2019-11-01</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0003322318"/>
<link type="Discogs" url="https://www.discogs.com/master/1629545"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/05a77155-66b8-4dd0-8066-a62eec05a645"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q74813257"/>
</release>
<release id="budapest-concert">
<artist>Keith Jarrett</artist>
<name>Budapest Concert</name>
<year>2020</year>
<firstreleasedate>2020-10-30</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0003428744"/>
<link type="Discogs" url="https://www.discogs.com/master/1830996"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/d45d17ce-c2f7-459d-a88d-60330ee8a485"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q101003695"/>
</release>
<release id="bordeaux-concert">
<artist>Keith Jarrett</artist>
<name>Bordeaux Concert</name>
<year>2022</year>
<firstreleasedate>2022-09-30</firstreleasedate>
<type>album</type>
<type>live</type>
<link type="AllMusic" url="https://www.allmusic.com/album/mw0003793515"/>
<link type="Discogs" url="https://www.discogs.com/master/2804822"/>
<link type="MusicBrainz" url="https://musicbrainz.org/release-group/656e8ab7-3ac7-4aa4-b891-a600d5f43c65"/>
<link type="Wikidata" url="https://www.wikidata.org/wiki/Q114697352"/>
</release>
</discography>
<!--
Types (should be about the actual content of the release, not about the physical/digital format):
- album
- compilation
- live
- sampler
- single
- soundtrack
- unofficial release (= bootleg)
Types that won't apply (either because they don't apply to master releases / release groups or because they won't apply to Keith Jarrett):
- advance
- EP (*probably* won't apply to Keith Jarrett)
- maxi-single (*probably* won't apply to Keith Jarrett)
- promo
- reissue
- remastered
- test pressing
References:
- https://musicbrainz.org/doc/Release_Group/Type
- https://www.discogs.com/help/formatslist
-->