discogs-wrapper 1.1.4 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. data/LICENSE +9 -0
  2. data/README.markdown +123 -43
  3. data/lib/discogs-wrapper.rb +1 -0
  4. data/lib/discogs.rb +1 -0
  5. data/lib/wrapper/authentication.rb +56 -0
  6. data/lib/wrapper/wrapper.rb +732 -43
  7. data/spec/samples/valid_artist.json +1 -0
  8. data/spec/samples/valid_artist_releases.json +1 -0
  9. data/spec/samples/valid_fields.json +48 -0
  10. data/spec/samples/valid_folder.json +6 -0
  11. data/spec/samples/valid_identity.json +6 -0
  12. data/spec/samples/valid_label.json +1 -0
  13. data/spec/samples/valid_label_releases.json +1 -0
  14. data/spec/samples/valid_listing.json +1 -0
  15. data/spec/samples/valid_master_release.json +1 -0
  16. data/spec/samples/valid_master_release_versions.json +1 -0
  17. data/spec/samples/valid_order.json +57 -0
  18. data/spec/samples/valid_order_messages.json +102 -0
  19. data/spec/samples/valid_orders.json +68 -0
  20. data/spec/samples/valid_price_suggestions.json +34 -0
  21. data/spec/samples/valid_release.json +1 -0
  22. data/spec/samples/valid_search_results.json +1 -0
  23. data/spec/samples/valid_user.json +1 -0
  24. data/spec/samples/valid_user_collection.json +1 -0
  25. data/spec/samples/valid_user_folder.json +6 -0
  26. data/spec/samples/valid_user_folders.json +16 -0
  27. data/spec/samples/valid_user_inventory.json +41 -0
  28. data/spec/samples/valid_user_profile.json +25 -0
  29. data/spec/samples/valid_user_wantlist.json +1 -0
  30. data/spec/samples/valid_wantlist_release.json +41 -0
  31. data/spec/spec_helper.rb +4 -18
  32. data/spec/wrapper_methods/add_release_to_user_wantlist_spec.rb +42 -0
  33. data/spec/wrapper_methods/edit_release_in_user_wantlist_spec.rb +38 -0
  34. data/spec/wrapper_methods/edit_user_spec.rb +36 -0
  35. data/spec/wrapper_methods/get_artist_releases_spec.rb +49 -0
  36. data/spec/wrapper_methods/get_artist_spec.rb +15 -75
  37. data/spec/wrapper_methods/get_identity_spec.rb +35 -0
  38. data/spec/wrapper_methods/get_label_releases_spec.rb +49 -0
  39. data/spec/wrapper_methods/get_label_spec.rb +15 -28
  40. data/spec/wrapper_methods/get_listing_spec.rb +40 -0
  41. data/spec/wrapper_methods/get_master_release_spec.rb +16 -42
  42. data/spec/wrapper_methods/get_master_release_versions_spec.rb +49 -0
  43. data/spec/wrapper_methods/get_order_messages_spec.rb +36 -0
  44. data/spec/wrapper_methods/get_order_spec.rb +36 -0
  45. data/spec/wrapper_methods/get_price_suggestions_spec.rb +36 -0
  46. data/spec/wrapper_methods/get_release_spec.rb +26 -52
  47. data/spec/wrapper_methods/get_user_collection_spec.rb +41 -0
  48. data/spec/wrapper_methods/get_user_folder_spec.rb +46 -0
  49. data/spec/wrapper_methods/get_user_folders_spec.rb +42 -0
  50. data/spec/wrapper_methods/get_user_inventory_spec.rb +45 -0
  51. data/spec/wrapper_methods/get_user_spec.rb +45 -0
  52. data/spec/wrapper_methods/get_user_wantlist_spec.rb +49 -0
  53. data/spec/wrapper_methods/search_spec.rb +22 -293
  54. data/spec/wrapper_spec.rb +124 -45
  55. metadata +162 -67
  56. data/Rakefile +0 -26
  57. data/discogs.gemspec +0 -22
  58. data/lib/wrapper/resource.rb +0 -80
  59. data/lib/wrapper/resource_mappings.rb +0 -80
  60. data/lib/wrapper/resources/artist.rb +0 -40
  61. data/lib/wrapper/resources/artist_release.rb +0 -28
  62. data/lib/wrapper/resources/format.rb +0 -11
  63. data/lib/wrapper/resources/generic_list.rb +0 -29
  64. data/lib/wrapper/resources/image.rb +0 -11
  65. data/lib/wrapper/resources/label.rb +0 -16
  66. data/lib/wrapper/resources/label_release.rb +0 -17
  67. data/lib/wrapper/resources/master_release.rb +0 -19
  68. data/lib/wrapper/resources/master_release_version.rb +0 -17
  69. data/lib/wrapper/resources/release.rb +0 -25
  70. data/lib/wrapper/resources/release_artist.rb +0 -21
  71. data/lib/wrapper/resources/release_label.rb +0 -10
  72. data/lib/wrapper/resources/search.rb +0 -61
  73. data/lib/wrapper/resources/search_result.rb +0 -17
  74. data/lib/wrapper/resources/track.rb +0 -19
  75. data/lib/wrapper/resources/user.rb +0 -11
  76. data/lib/wrapper/resources/video.rb +0 -11
  77. data/spec/resource_spec.rb +0 -27
  78. data/spec/resources/artist_release_spec.rb +0 -59
  79. data/spec/resources/artist_spec.rb +0 -15
  80. data/spec/resources/format_spec.rb +0 -41
  81. data/spec/resources/generic_list_spec.rb +0 -66
  82. data/spec/resources/image_spec.rb +0 -43
  83. data/spec/resources/label_release_spec.rb +0 -55
  84. data/spec/resources/label_spec.rb +0 -15
  85. data/spec/resources/master_release_spec.rb +0 -15
  86. data/spec/resources/master_release_version_spec.rb +0 -55
  87. data/spec/resources/release_artist_spec.rb +0 -43
  88. data/spec/resources/release_label_spec.rb +0 -31
  89. data/spec/resources/release_spec.rb +0 -15
  90. data/spec/resources/search_result_spec.rb +0 -47
  91. data/spec/resources/search_spec.rb +0 -15
  92. data/spec/resources/track_spec.rb +0 -56
  93. data/spec/resources/video_spec.rb +0 -43
@@ -0,0 +1 @@
1
+ {"profile": "Heavy metal band from Ventura, California. The band was formed in 1972 by Robert W. Garven Jr.(drums, graphic artist, sometimes lyricist), Jerry Fogle (guitar, R.I.P.) and Greg Lindstrom (bass, guitars, keyboards, songwriter). They broke up in May 1992.\r\n\r\nThe name is from [a=J.R.R. Tolkien]\u2019s manufactured language of Middle Earth, Cirith Ungol translates out as \"pass of the spider\".\r\n\r\nThe Final Lineup:\r\nTim Baker - Vocals\r\nJim Barraza - Guitars\r\nVernon Green - Bass\r\nRobert Garven - Drums\r\n\r\nFormer members:\r\nNeal Beattie - Vocals\r\nJerry Fogle - Guitars (died August 20, 1998)\r\nGreg Lindstrom - Guitars\r\nMichael \"Flint\" Vujejia - Bass\n", "releases_url": "http://api.discogs.com/artists/313929/releases", "name": "Cirith Ungol", "uri": "http://www.discogs.com/artist/313929-Cirith-Ungol", "members": [{"active": false, "resource_url": "http://api.discogs.com/artists/505331", "id": 505331, "name": "Greg Lindstrom"}, {"active": false, "resource_url": "http://api.discogs.com/artists/592064", "id": 592064, "name": "Jerry Fogle"}, {"active": true, "resource_url": "http://api.discogs.com/artists/1967868", "id": 1967868, "name": "Jim Barraza"}, {"active": false, "resource_url": "http://api.discogs.com/artists/592065", "id": 592065, "name": "Michael Flint"}, {"active": true, "resource_url": "http://api.discogs.com/artists/505330", "id": 505330, "name": "Robert Garven"}, {"active": true, "resource_url": "http://api.discogs.com/artists/706517", "id": 706517, "name": "Tim Baker (2)"}, {"active": true, "resource_url": "http://api.discogs.com/artists/1967869", "id": 1967869, "name": "Vernon Green (2)"}], "urls": ["http://www.truemetal.org/cirithungol", "http://www.myspace.com/cirithungol"], "images": [{"uri": "http://api.discogs.com/image/A-313929-1125278679.jpg", "height": 288, "width": 360, "resource_url": "http://api.discogs.com/image/A-313929-1125278679.jpg", "type": "secondary", "uri150": "http://api.discogs.com/image/A-150-313929-1125278679.jpg"}, {"uri": "http://api.discogs.com/image/A-313929-1174649970.jpeg", "height": 176, "width": 170, "resource_url": "http://api.discogs.com/image/A-313929-1174649970.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/A-150-313929-1174649970.jpeg"}], "resource_url": "http://api.discogs.com/artists/313929", "id": 313929, "data_quality": "Correct"}
@@ -0,0 +1 @@
1
+ {"pagination": {"per_page": 50, "items": 37, "page": 1, "urls": {}, "pages": 1}, "releases": [{"thumb": "http://api.discogs.com/image/R-150-4521828-1367337210-6154.jpeg", "artist": "Cirith Ungol", "main_release": 4521828, "title": "Frost And Fire", "role": "Main", "year": 1981, "resource_url": "http://api.discogs.com/masters/253625", "type": "master", "id": 253625}, {"thumb": "http://api.discogs.com/image/R-150-1496532-1281725349.jpeg", "artist": "Cirith Ungol", "main_release": 1496532, "title": "King Of The Dead", "role": "Main", "year": 1984, "resource_url": "http://api.discogs.com/masters/127099", "type": "master", "id": 127099}, {"thumb": "http://api.discogs.com/image/R-150-1841500-1358170013-2230.jpeg", "artist": "Cirith Ungol", "main_release": 1841500, "title": "One Foot In Hell", "role": "Main", "year": 1986, "resource_url": "http://api.discogs.com/masters/152017", "type": "master", "id": 152017}, {"thumb": "http://api.discogs.com/image/R-150-1035198-1368729847-6787.jpeg", "artist": "Cirith Ungol", "main_release": 1035198, "title": "Paradise Lost", "role": "Main", "year": 1991, "resource_url": "http://api.discogs.com/masters/475561", "type": "master", "id": 475561}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-1884494-1281726015.jpeg", "title": "Frost And Fire- King Of The Dead", "format": "CD, Comp", "label": "One Way Records (6)", "role": "Main", "year": 1995, "resource_url": "http://api.discogs.com/releases/1884494", "artist": "Cirith Ungol", "type": "release", "id": 1884494}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-2280214-1297374759.jpeg", "title": "Live", "format": "7\", Single", "label": "Old Metal Records", "role": "Main", "year": 1996, "resource_url": "http://api.discogs.com/releases/2280214", "artist": "Cirith Ungol", "type": "release", "id": 2280214}, {"thumb": "http://api.discogs.com/image/R-150-678425-1281725622.jpeg", "artist": "Cirith Ungol", "main_release": 678425, "title": "Servants Of Chaos", "role": "Main", "year": 2001, "resource_url": "http://api.discogs.com/masters/390394", "type": "master", "id": 390394}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-766378-1370029668-3350.jpeg", "title": "The Metal Machine", "format": "LP, Comp", "label": "Roadrunner Records", "role": "Appearance", "year": 1984, "trackinfo": "Black Machine", "resource_url": "http://api.discogs.com/releases/766378", "artist": "Various", "type": "release", "id": 766378}, {"thumb": "http://api.discogs.com/image/R-150-1443272-1281727929.jpeg", "artist": "Various", "main_release": 1443272, "title": "The Best Of Metal Blade Volume II", "role": "Appearance", "year": 1987, "resource_url": "http://api.discogs.com/masters/500327", "type": "master", "id": 500327}, {"thumb": "http://api.discogs.com/image/R-150-942277-1175474359.jpeg", "artist": "DoomSword", "main_release": 942277, "title": "Doomsword", "role": "Appearance", "year": 1999, "resource_url": "http://api.discogs.com/masters/434133", "type": "master", "id": 434133}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-4518961-1367171562-5734.jpeg", "title": "Hatred And Warlust", "format": "CD, EP, Dem", "label": "Not On Label", "role": "Appearance", "year": 2002, "trackinfo": "Frost And Fire", "resource_url": "http://api.discogs.com/releases/4518961", "artist": "Holy Martyr", "type": "release", "id": 4518961}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-2990806-1310715821.gif", "title": "Battle Ram", "format": "LP, Ltd", "label": "Metal Supremacy", "role": "Appearance", "year": 2003, "trackinfo": "Join The Legion", "resource_url": "http://api.discogs.com/releases/2990806", "artist": "Battle Ram", "type": "release", "id": 2990806}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-4511898-1366985173-9502.gif", "title": "Battle Ram", "format": "CD", "label": "Not On Label", "role": "Appearance", "year": 2003, "trackinfo": "Join The Legion", "resource_url": "http://api.discogs.com/releases/4511898", "artist": "Battle Ram", "type": "release", "id": 4511898}, {"thumb": "http://api.discogs.com/image/R-150-1696482-1255141854.jpeg", "artist": "Lamp Of Thoth, The", "main_release": 1696482, "title": "Cauldron Of Witchery", "role": "Appearance", "year": 2007, "resource_url": "http://api.discogs.com/masters/291675", "type": "master", "id": 291675}, {"thumb": "http://api.discogs.com/image/R-150-2051418-1260988051.jpeg", "artist": "Various", "main_release": 2051418, "title": "Clone - Play Slow, Die Fast Volume I", "role": "Appearance", "year": 2009, "resource_url": "http://api.discogs.com/masters/209824", "type": "master", "id": 209824}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-1704243-1238086673.jpeg", "title": "The Priest's Command", "format": "CD, Comp", "label": "Under The Sign Of Garazel Productions", "role": "Appearance", "year": 2009, "trackinfo": "Atomsmasher", "resource_url": "http://api.discogs.com/releases/1704243", "artist": "Faustcoven", "type": "release", "id": 1704243}, {"thumb": "http://api.discogs.com/image/R-150-810749-1161142233.jpeg", "artist": "Various", "main_release": 810749, "title": "Metal Massacre", "role": "TrackAppearance", "year": 1982, "resource_url": "http://api.discogs.com/masters/63482", "type": "master", "id": 63482}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-766378-1370029668-3350.jpeg", "title": "The Metal Machine", "format": "LP, Comp", "label": "Roadrunner Records", "role": "TrackAppearance", "year": 1984, "trackinfo": "Black Machine", "resource_url": "http://api.discogs.com/releases/766378", "artist": "Various", "type": "release", "id": 766378}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-5613334-1398029553-6577.jpeg", "title": "Heavy Metal Thunder", "format": "LP, Comp", "label": "Young", "role": "TrackAppearance", "year": 1986, "trackinfo": "Master Of Pit", "resource_url": "http://api.discogs.com/releases/5613334", "artist": "Various", "type": "release", "id": 5613334}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-4567231-1368600283-3722.jpeg", "title": "L.A. Steel", "format": "LP, Comp", "label": "Rockcity Records Inc.", "role": "TrackAppearance", "year": 1986, "trackinfo": "I'm Alive", "resource_url": "http://api.discogs.com/releases/4567231", "artist": "Various", "type": "release", "id": 4567231}, {"thumb": "http://api.discogs.com/image/R-150-1443272-1281727929.jpeg", "artist": "Various", "main_release": 1443272, "title": "The Best Of Metal Blade Volume II", "role": "TrackAppearance", "year": 1987, "resource_url": "http://api.discogs.com/masters/500327", "type": "master", "id": 500327}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-5627306-1398358774-7977.jpeg", "title": "Metal Massacre", "format": "CD, Comp, RE", "label": "Metal Blade Records", "role": "TrackAppearance", "year": 1994, "trackinfo": "Death Of The Sun", "resource_url": "http://api.discogs.com/releases/5627306", "artist": "Various", "type": "release", "id": 5627306}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-4821701-1378037711-1470.jpeg", "title": "Grim Harvest: Complete Metal Massacre Volumes I-XII", "format": "11xCD, Comp + Box, Ltd", "label": "Metal Blade Records", "role": "TrackAppearance", "year": 1998, "trackinfo": "Death Of The Sun", "resource_url": "http://api.discogs.com/releases/4821701", "artist": "Various", "type": "release", "id": 4821701}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-2669093-1295801203.jpeg", "title": "Metal Blade Records 20th Anniversary", "format": "9xCD, Comp + DVD-V + Box, Ltd", "label": "Metal Blade Records", "role": "TrackAppearance", "year": 2002, "trackinfo": "One Foot In Hell", "resource_url": "http://api.discogs.com/releases/2669093", "artist": "Various", "type": "release", "id": 2669093}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-2241991-1273314343.jpeg", "title": "Lauschangriff Volume 003", "format": "CD, Comp, Promo", "label": "RockHard", "role": "TrackAppearance", "year": 2010, "trackinfo": "Frost And Fire", "resource_url": "http://api.discogs.com/releases/2241991", "artist": "Various", "type": "release", "id": 2241991}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-3596134-1336772377-9416.jpeg", "title": "Metal Blade Records 30th Anniversary Sampler 1982-2012", "format": "2xCD, Promo, Smplr", "label": "Metal Blade Records", "role": "TrackAppearance", "year": 2012, "trackinfo": "Atom Smasher", "resource_url": "http://api.discogs.com/releases/3596134", "artist": "Various", "type": "release", "id": 3596134}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-4916189-1379334005-1715.jpeg", "title": "Sonic Cathedrals Vol. CXVI", "format": "29xFile, MP3, Mixed, 320", "label": "CVLT Nation", "role": "TrackAppearance", "year": 2013, "trackinfo": "Chaos Descends", "resource_url": "http://api.discogs.com/releases/4916189", "artist": "All Pigs Must Die", "type": "release", "id": 4916189}, {"thumb": "http://api.discogs.com/image/R-150-5258280-1388923459-3565.jpeg", "artist": "Various", "main_release": 5258280, "title": "Metal Massacre", "role": "UnofficialRelease", "year": 1984, "resource_url": "http://api.discogs.com/masters/63482", "type": "master", "id": 63482}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-3856896-1347086775-1998.jpeg", "title": "King Of The Dead / Frost And Fire", "format": "CD, Comp, Unofficial", "label": "Reborn Classics", "role": "UnofficialRelease", "year": 1992, "resource_url": "http://api.discogs.com/releases/3856896", "artist": "Cirith Ungol", "type": "release", "id": 3856896}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-4025428-1352748634-3971.jpeg", "title": "One Foot In Hell / Lesson Well Learned", "format": "CD, Unofficial", "label": "Reborn Classics", "role": "UnofficialRelease", "year": 1992, "trackinfo": "Blood & Iron, Chao...", "resource_url": "http://api.discogs.com/releases/4025428", "artist": "Cirith Ungol, Armored Saint", "type": "release", "id": 4025428}, {"thumb": "http://api.discogs.com/image/R-150-3423346-1329830896.jpeg", "artist": "Cirith Ungol", "main_release": 3423346, "title": "Servants Of Chaos", "role": "UnofficialRelease", "year": 2001, "resource_url": "http://api.discogs.com/masters/390394", "type": "master", "id": 390394}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-4539565-1367778228-7947.jpeg", "title": "Return Of The Dead Kings", "format": "CDr, Unofficial", "label": "Battle Axe Productions", "role": "UnofficialRelease", "year": 2009, "resource_url": "http://api.discogs.com/releases/4539565", "artist": "Cirith Ungol", "type": "release", "id": 4539565}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-4032344-1352986967-3348.jpeg", "title": "1983 Live Arlington Theatre In California", "format": "LP, Ltd, Unofficial, Blu", "label": "Not On Label", "role": "UnofficialRelease", "year": 2011, "resource_url": "http://api.discogs.com/releases/4032344", "artist": "Cirith Ungol", "type": "release", "id": 4032344}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-2812510-1324604919.jpeg", "title": "Live October 14th 1983", "format": "LP, Unofficial, Yel", "label": "Not On Label (Cirith Ungol)", "role": "UnofficialRelease", "year": 2011, "resource_url": "http://api.discogs.com/releases/2812510", "artist": "Cirith Ungol", "type": "release", "id": 2812510}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-3909829-1387834395-8222.jpeg", "title": "Battle With Shelob", "format": "LP, Ltd, Unofficial", "label": "Not On Label (Cirith Ungol)", "role": "UnofficialRelease", "year": 2012, "resource_url": "http://api.discogs.com/releases/3909829", "artist": "Cirith Ungol", "type": "release", "id": 3909829}, {"thumb": "http://api.discogs.com/image/R-150-2479400-1387838251-1971.jpeg", "artist": "Cirith Ungol", "main_release": 2479400, "title": "Frost And Fire", "role": "UnofficialRelease", "resource_url": "http://api.discogs.com/masters/253625", "type": "master", "id": 253625}, {"thumb": "http://api.discogs.com/image/R-150-2479354-1387891925-7949.jpeg", "artist": "Cirith Ungol", "main_release": 2479354, "title": "Paradise Lost", "role": "UnofficialRelease", "resource_url": "http://api.discogs.com/masters/475561", "type": "master", "id": 475561}]}
@@ -0,0 +1,48 @@
1
+ {
2
+ "fields": [
3
+ {
4
+ "id": 1,
5
+ "name": "Media Condition",
6
+ "position": 1,
7
+ "public": true,
8
+ "type": "dropdown",
9
+ "options": [
10
+ "Mint (M)",
11
+ "Near Mint (NM or M-)",
12
+ "Very Good Plus (VG+)",
13
+ "Very Good (VG)",
14
+ "Good Plus (G+)",
15
+ "Good (G)",
16
+ "Fair (F)",
17
+ "Poor (P)"
18
+ ]
19
+ },
20
+ {
21
+ "id": 2,
22
+ "name": "Sleeve Condition",
23
+ "position": 2,
24
+ "public": false,
25
+ "type": "dropdown",
26
+ "options": [
27
+ "Generic",
28
+ "No Cover",
29
+ "Mint (M)",
30
+ "Near Mint (NM or M-)",
31
+ "Very Good Plus (VG+)",
32
+ "Very Good (VG)",
33
+ "Good Plus (G+)",
34
+ "Good (G)",
35
+ "Fair (F)",
36
+ "Poor (P)"
37
+ ]
38
+ },
39
+ {
40
+ "id": 3,
41
+ "name": "Notes",
42
+ "position": 3,
43
+ "public": true,
44
+ "type": "textarea",
45
+ "lines": 3
46
+ }
47
+ ]
48
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": 232842,
3
+ "name": "My New Folder",
4
+ "count": 0,
5
+ "resource_url": "http://api.discogs.com/users/abuntine/collection/folders/232842"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": 1,
3
+ "username": "example",
4
+ "resource_url": "http://api.discogs.com/users/example",
5
+ "consumer_name": "Your Application Name"
6
+ }
@@ -0,0 +1 @@
1
+ {"profile": "Label Code: LC 0392 / LC 00392\r\n\r\nFounded in 1958 by Jack Warner as a soundtrack factory for Warner Bros. movie studios, Warner Bros. Records and its family of subsidiary labels, which includes Reprise Records, Sire Records, Maverick Records, Warner Nashville, Warner Jazz, Warner Western, and Word Label Group now encompasses a full spectrum of musical genres.\r\n----\r\nKnown to have used [l403953] for pressing.\r\n\r\n[u]A NOTE ON U.S. CATALOGUE NUMBERS:[/u]\r\nMany U.S. releases on this label will have two separate catalogue numbers. Catalogue numbers printed on the packaging are typically in the format 9 [b]#####[/b]-[i]#[/i], while numbers printed on the media itself are typically in the format [i]#[/i]-[b]#####[/b]. For example, a release listed as 0-12345 on the center label of a record may also be listed as 9 12345-0 on the picture sleeve. Please be sure to double-check both versions of the catalogue number before attempting to add your release, to prevent duplicates. If both numbers are listed on a release, enter the [i]#[/i]-[b]#####[/b] form on the first label line, and the 9 [b]#####[/b]-[i]#[/i] form on the second label line.\r\n\r\n[U]Information about how to determine first pressings of US LP's on this label[/U]:\r\n\r\nGrey label, black WB Shield, WB in gold print # 1200 - approx. 1470\r\nSame, but in white print # 1470 - 1615\r\nGold Label # 1616 - 1737 (last spotted gold label)\r\nGreen Label, Warner Bros. - Seven Arts Records, W7 logo # 1738 - 1834\r\nGreen Label, Warner Bros. Records. w/ WB Shield # 1835 - 2692 (last spotted green label)\r\nPalm Trees Label NO ADDRESS at bottom # 2693 - 2865\r\nPalm Trees Label 3300 Warner Blvd. # 2866 - 3180\r\nCream Label w/lines and address in perimeter # 3181 - ?\r\nCream Label no lines everything since 1983\r\n\r\nSource: Joe Lindsay's ''Record Label Guide'' and Raymond Dumont's collection.\r\n", "releases_url": "http://api.discogs.com/labels/1000/releases", "name": "Warner Bros. Records", "contact_info": "3300 Warner Boulevard\r\nBurbank, CA 91505-4964\r\nUSA\r\n\r\n1290 Avenue of the Americas\r\nNew York, NY 10104-0012\r\nUSA\r\n\r\n(818) 846-9090\r\n", "parent_label": {"resource_url": "http://api.discogs.com/labels/2345", "id": 2345, "name": "Warner Music Group"}, "uri": "http://www.discogs.com/label/1000-Warner-Bros-Records", "sublabels": [{"resource_url": "http://api.discogs.com/labels/195500", "id": 195500, "name": "1017 Brick Squad Records"}, {"resource_url": "http://api.discogs.com/labels/101592", "id": 101592, "name": "A&A Records"}, {"resource_url": "http://api.discogs.com/labels/265452", "id": 265452, "name": "Back To Back Hits"}, {"resource_url": "http://api.discogs.com/labels/317228", "id": 317228, "name": "CD Back Trax"}, {"resource_url": "http://api.discogs.com/labels/12223", "id": 12223, "name": "Curtom"}, {"resource_url": "http://api.discogs.com/labels/23699", "id": 23699, "name": "Discreet"}, {"resource_url": "http://api.discogs.com/labels/11649", "id": 11649, "name": "Extasy Records"}, {"resource_url": "http://api.discogs.com/labels/7", "id": 7, "name": "F-111 Records"}, {"resource_url": "http://api.discogs.com/labels/4533", "id": 4533, "name": "Giant Records"}, {"resource_url": "http://api.discogs.com/labels/118842", "id": 118842, "name": "Jingle Town Records"}, {"resource_url": "http://api.discogs.com/labels/66307", "id": 66307, "name": "JKss Records"}, {"resource_url": "http://api.discogs.com/labels/70328", "id": 70328, "name": "Kwanza Records"}, {"resource_url": "http://api.discogs.com/labels/69901", "id": 69901, "name": "Loma"}, {"resource_url": "http://api.discogs.com/labels/49462", "id": 49462, "name": "Machine Shop Recordings"}, {"resource_url": "http://api.discogs.com/labels/82248", "id": 82248, "name": "Malpaso Records"}, {"resource_url": "http://api.discogs.com/labels/124935", "id": 124935, "name": "Merrie Melodies"}, {"resource_url": "http://api.discogs.com/labels/652", "id": 652, "name": "Nonesuch"}, {"resource_url": "http://api.discogs.com/labels/270241", "id": 270241, "name": "Nonesuch Records Inc."}, {"resource_url": "http://api.discogs.com/labels/5525", "id": 5525, "name": "Opal Records"}, {"resource_url": "http://api.discogs.com/labels/5115", "id": 5115, "name": "Paisley Park"}, {"resource_url": "http://api.discogs.com/labels/107875", "id": 107875, "name": "Paradise Records (8)"}, {"resource_url": "http://api.discogs.com/labels/32825", "id": 32825, "name": "Premeditated Records"}, {"resource_url": "http://api.discogs.com/labels/6723", "id": 6723, "name": "Qwest Records"}, {"resource_url": "http://api.discogs.com/labels/43406", "id": 43406, "name": "Record Collection"}, {"resource_url": "http://api.discogs.com/labels/315857", "id": 315857, "name": "Reprise Records Inc."}, {"resource_url": "http://api.discogs.com/labels/17700", "id": 17700, "name": "RFC Records"}, {"resource_url": "http://api.discogs.com/labels/51361", "id": 51361, "name": "Ruffnation Records"}, {"resource_url": "http://api.discogs.com/labels/27031", "id": 27031, "name": "Sire"}, {"resource_url": "http://api.discogs.com/labels/47874", "id": 47874, "name": "Tetragrammaton Records"}, {"resource_url": "http://api.discogs.com/labels/504078", "id": 504078, "name": "The Cars Mini LP SHM-CD Collection"}, {"resource_url": "http://api.discogs.com/labels/400264", "id": 400264, "name": "The Warner Bros. Music Show"}, {"resource_url": "http://api.discogs.com/labels/20590", "id": 20590, "name": "Warner Alliance"}, {"resource_url": "http://api.discogs.com/labels/97348", "id": 97348, "name": "Warner Archives"}, {"resource_url": "http://api.discogs.com/labels/102249", "id": 102249, "name": "Warner Bros. - Seven Arts Records"}, {"resource_url": "http://api.discogs.com/labels/306758", "id": 306758, "name": "Warner Bros. Records Ltd."}, {"resource_url": "http://api.discogs.com/labels/75604", "id": 75604, "name": "Warner Bros. Records Nashville"}, {"resource_url": "http://api.discogs.com/labels/24371", "id": 24371, "name": "Warner Music Video"}, {"resource_url": "http://api.discogs.com/labels/379181", "id": 379181, "name": "Warner Remasters"}, {"resource_url": "http://api.discogs.com/labels/20581", "id": 20581, "name": "Warner Reprise Video"}, {"resource_url": "http://api.discogs.com/labels/29742", "id": 29742, "name": "Warner Resound"}, {"resource_url": "http://api.discogs.com/labels/41256", "id": 41256, "name": "Warner Special Products"}, {"resource_url": "http://api.discogs.com/labels/99622", "id": 99622, "name": "Warner-Spector"}, {"resource_url": "http://api.discogs.com/labels/131984", "id": 131984, "name": "Wb Music Corp."}, {"resource_url": "http://api.discogs.com/labels/9548", "id": 9548, "name": "Whitfield Records"}], "urls": ["http://www.warnerbrosrecords.com/", "http://www.facebook.com/WarnerBrosRecords", "http://plus.google.com/u/0/+warnerbrosrecords/about", "http://www.myspace.com/warnerbrosrecords", "http://soundcloud.com/warnerbrosrecords", "http://twitter.com/wbr", "http://www.youtube.com/user/warnerbrosrecords", "http://en.wikipedia.org/wiki/Warner_Bros._Records", "http://www.bsnpubs.com/warner/warnerstory.html", "http://www.vinylbeat.com/cgi-bin/labelfocus.cgi?label=WARNER+BROS.+%28WB%29&label_section=V,W,X"], "images": [{"uri": "http://api.discogs.com/image/L-1000-1379032089-6536.jpeg", "height": 780, "width": 600, "resource_url": "http://api.discogs.com/image/L-1000-1379032089-6536.jpeg", "type": "primary", "uri150": "http://api.discogs.com/image/L-150-1000-1379032089-6536.jpeg"}, {"uri": "http://api.discogs.com/image/L-1000-1175669293.jpeg", "height": 698, "width": 533, "resource_url": "http://api.discogs.com/image/L-1000-1175669293.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/L-150-1000-1175669293.jpeg"}, {"uri": "http://api.discogs.com/image/L-1000-1351783568-4179.jpeg", "height": 600, "width": 600, "resource_url": "http://api.discogs.com/image/L-1000-1351783568-4179.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/L-150-1000-1351783568-4179.jpeg"}, {"uri": "http://api.discogs.com/image/L-1000-1159478385.gif", "height": 532, "width": 532, "resource_url": "http://api.discogs.com/image/L-1000-1159478385.gif", "type": "secondary", "uri150": "http://api.discogs.com/image/L-150-1000-1159478385.gif"}, {"uri": "http://api.discogs.com/image/L-1000-1175669367.gif", "height": 192, "width": 175, "resource_url": "http://api.discogs.com/image/L-1000-1175669367.gif", "type": "secondary", "uri150": "http://api.discogs.com/image/L-150-1000-1175669367.gif"}, {"uri": "http://api.discogs.com/image/L-1000-1241590764.jpeg", "height": 94, "width": 200, "resource_url": "http://api.discogs.com/image/L-1000-1241590764.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/L-150-1000-1241590764.jpeg"}, {"uri": "http://api.discogs.com/image/L-1000-1368546406-3011.jpeg", "height": 493, "width": 500, "resource_url": "http://api.discogs.com/image/L-1000-1368546406-3011.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/L-150-1000-1368546406-3011.jpeg"}], "resource_url": "http://api.discogs.com/labels/1000", "id": 1000, "data_quality": "Needs Vote"}
@@ -0,0 +1 @@
1
+ {"pagination": {"per_page": 50, "items": 8, "page": 1, "urls": {}, "pages": 1}, "releases": [{"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-306002-1259674532.jpeg", "format": "12\"", "title": "I'll Nostra Tempo De La Vita / Having The Time Of Your Life", "catno": "SSS 001", "resource_url": "http://api.discogs.com/releases/306002", "artist": "Torfinn", "id": 306002}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-2403777-1396789761-2766.jpeg", "format": "12\"", "title": "I'll Nostra Tempo De La Vita / Having The Time Of Your Life", "catno": "SSS 001", "resource_url": "http://api.discogs.com/releases/2403777", "artist": "Torfinn", "id": 2403777}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-100001-1290653687.jpeg", "format": "12\", Promo, Ltd", "title": "I Want It", "catno": "STS 112", "resource_url": "http://api.discogs.com/releases/100001", "artist": "Torfinn Featuring Bi Bi Tapins", "id": 100001}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-174538-1366469692-7664.jpeg", "format": "12\"", "title": "Ain't No Thing", "catno": "STS 501", "resource_url": "http://api.discogs.com/releases/174538", "artist": "DJ Skitzo", "id": 174538}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-125327-1162879474.jpeg", "format": "12\"", "title": "Chicago Love", "catno": "STS 502", "resource_url": "http://api.discogs.com/releases/125327", "artist": "DJ Skitzo", "id": 125327}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-174520-1280325957.jpeg", "format": "12\"", "title": "Blow My Horn", "catno": "STS 503", "resource_url": "http://api.discogs.com/releases/174520", "artist": "DJ Skitzo", "id": 174520}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-4465171-1365624186-3893.jpeg", "format": "LP, 180", "title": "Sound Design 6", "catno": "STS 6111113", "resource_url": "http://api.discogs.com/releases/4465171", "artist": "Tate*, Buckner*, Bishop*", "id": 4465171}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-691141-1342519576-9824.jpeg", "format": "12\"", "title": "The Rain", "catno": "TFN 001", "resource_url": "http://api.discogs.com/releases/691141", "artist": "Torfinn", "id": 691141}]}
@@ -0,0 +1 @@
1
+ {"status": "For Sale", "weight": 239.0, "price": {"currency": "EUR", "value": 32.9}, "allow_offers": false, "sleeve_condition": "Near Mint (NM or M-)", "id": 157624565, "condition": "Near Mint (NM or M-)", "posted": "2014-05-01T09:46:06", "ships_from": "Greece", "uri": "http://www.discogs.com/sell/item/157624565", "comments": "", "seller": {"username": "EmpireDVDs", "resource_url": "http://api.discogs.com/users/EmpireDVDs", "id": 1489502}, "release": {"catalog_number": "ER 006", "resource_url": "http://api.discogs.com/releases/5643093", "year": 2014, "id": 5643093, "description": "Medieval Steel - Dark Castle (LP, Album)"}, "resource_url": "http://api.discogs.com/marketplace/listings/157624565", "audio": false}
@@ -0,0 +1 @@
1
+ {"styles": ["Prog Rock", "Art Rock"], "genres": ["Rock"], "videos": [{"duration": 1042, "description": "Synkopy - Introdukce / H\u016fl v slune\u010dn\u00edch hodin\u00e1ch / Jsi n\u00e1dhern\u011b prav\u011bk\u00e1", "embed": true, "uri": "http://www.youtube.com/watch?v=cND9H05yJio", "title": "Synkopy - Introdukce / H\u016fl v slune\u010dn\u00edch hodin\u00e1ch / Jsi n\u00e1dhern\u011b prav\u011bk\u00e1"}], "title": "Slune\u010dn\u00ed Hodiny", "main_release": 5160870, "main_release_url": "http://api.discogs.com/releases/5160870", "uri": "http://www.discogs.com/Synkopy-Old%C5%99ich-Vesel%C3%BD-Slune%C4%8Dn%C3%AD-Hodiny/master/9800", "artists": [{"join": "&", "name": "Synkopy", "anv": "", "tracks": "", "role": "", "resource_url": "http://api.discogs.com/artists/1249324", "id": 1249324}, {"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "", "tracks": "", "role": "", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}], "versions_url": "http://api.discogs.com/masters/9800/versions", "year": 1982, "images": [{"uri": "http://api.discogs.com/image/R-5160870-1386155216-1153.jpeg", "height": 607, "width": 600, "resource_url": "http://api.discogs.com/image/R-5160870-1386155216-1153.jpeg", "type": "primary", "uri150": "http://api.discogs.com/image/R-150-5160870-1386155216-1153.jpeg"}, {"uri": "http://api.discogs.com/image/R-5160870-1386155220-9295.jpeg", "height": 604, "width": 600, "resource_url": "http://api.discogs.com/image/R-5160870-1386155220-9295.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/R-150-5160870-1386155220-9295.jpeg"}, {"uri": "http://api.discogs.com/image/R-5160870-1386155223-6244.jpeg", "height": 598, "width": 600, "resource_url": "http://api.discogs.com/image/R-5160870-1386155223-6244.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/R-150-5160870-1386155223-6244.jpeg"}, {"uri": "http://api.discogs.com/image/R-5160870-1386155226-6216.jpeg", "height": 601, "width": 600, "resource_url": "http://api.discogs.com/image/R-5160870-1386155226-6216.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/R-150-5160870-1386155226-6216.jpeg"}], "resource_url": "http://api.discogs.com/masters/9800", "tracklist": [{"duration": "2:56", "position": "A1", "type_": "track", "extraartists": [{"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "", "tracks": "", "role": "Music By", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}], "title": "Introdukce"}, {"duration": "7:35", "position": "A2", "type_": "track", "extraartists": [{"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "O. Vesel\u00fd", "tracks": "", "role": "Lead Vocals", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}, {"join": "", "name": "Pavel Vrba", "anv": "", "tracks": "", "role": "Lyrics By", "resource_url": "http://api.discogs.com/artists/737198", "id": 737198}, {"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "", "tracks": "", "role": "Music By", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}], "title": "H\u016fl V Slune\u010dn\u00edch Hodin\u00e1ch"}, {"duration": "6:50", "position": "A3", "type_": "track", "extraartists": [{"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "O. Vesel\u00fd", "tracks": "", "role": "Lead Vocals", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}, {"join": "", "name": "Vratislav Luk\u00e1\u0161", "anv": "V. Luk\u00e1\u0161", "tracks": "", "role": "Lead Vocals", "resource_url": "http://api.discogs.com/artists/1244073", "id": 1244073}, {"join": "", "name": "Pavel Vrba", "anv": "", "tracks": "", "role": "Lyrics By", "resource_url": "http://api.discogs.com/artists/737198", "id": 737198}, {"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "", "tracks": "", "role": "Music By", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}], "title": "Jsi N\u00e1dhern\u011b Prav\u011bk\u00e1"}, {"duration": "2:20", "position": "A4", "type_": "track", "extraartists": [{"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "", "tracks": "", "role": "Music By", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}], "title": "Intermezzo"}, {"duration": "7:45", "position": "B1", "type_": "track", "extraartists": [{"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "O. Vesel\u00fd", "tracks": "", "role": "Lead Vocals", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}, {"join": "", "name": "Pavel Vrba", "anv": "", "tracks": "", "role": "Lyrics By", "resource_url": "http://api.discogs.com/artists/737198", "id": 737198}, {"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "", "tracks": "", "role": "Music By", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}], "title": "\u010cern\u00fd Racek"}, {"duration": "4:00", "position": "B2", "type_": "track", "extraartists": [{"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "", "tracks": "", "role": "Music By", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}], "title": "Kl\u00e1vesov\u00e9 Extempore"}, {"duration": "3:35", "position": "B3", "type_": "track", "extraartists": [{"join": "", "name": "Vratislav Luk\u00e1\u0161", "anv": "V. Luk\u00e1\u0161", "tracks": "", "role": "Lead Vocals", "resource_url": "http://api.discogs.com/artists/1244073", "id": 1244073}, {"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "", "tracks": "", "role": "Music By", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}], "title": "Vodop\u00e1d"}, {"duration": "7:30", "position": "B4", "type_": "track", "extraartists": [{"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "O. Vesel\u00fd", "tracks": "", "role": "Lead Vocals", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}, {"join": "", "name": "Pavel Vrba", "anv": "", "tracks": "", "role": "Lyrics By", "resource_url": "http://api.discogs.com/artists/737198", "id": 737198}, {"join": "", "name": "Old\u0159ich Vesel\u00fd", "anv": "", "tracks": "", "role": "Music By", "resource_url": "http://api.discogs.com/artists/942277", "id": 942277}], "title": "Toulka Je Obl\u00e1"}], "id": 9800, "data_quality": "Correct"}
@@ -0,0 +1 @@
1
+ {"pagination": {"per_page": 50, "items": 3, "page": 1, "urls": {}, "pages": 1}, "versions": [{"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-5160870-1386155216-1153.jpeg", "title": "Slune\u010dn\u00ed Hodiny", "country": "Czechoslovakia", "format": "LP, Album, RP", "label": "Panton", "released": "1982", "catno": "8113 0078", "resource_url": "http://api.discogs.com/releases/5160870", "id": 5160870}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-1489728-1223550994.jpeg", "title": "Slune\u010dn\u00ed Hodiny", "country": "Czech Republic", "format": "CD, Album, RE", "label": "Bonton, Bonton", "released": "1999", "catno": "493163 2, BON 493163 2", "resource_url": "http://api.discogs.com/releases/1489728", "id": 1489728}, {"status": "Accepted", "thumb": "http://api.discogs.com/image/R-150-1708718-1350510979-4047.jpeg", "title": "Slune\u010dn\u00ed Hodiny", "country": "Czechoslovakia", "format": "LP, Album, RP", "label": "Panton", "released": "1983", "catno": "8113 0078", "resource_url": "http://api.discogs.com/releases/1708718", "id": 1708718}]}
@@ -0,0 +1,57 @@
1
+ {
2
+ "id": "1-1",
3
+ "resource_url": "http://api.discogs.com/marketplace/orders/1-1",
4
+ "messages_url": "http://api.discogs.com/marketplace/orders/1-1/messages",
5
+ "uri": "http://www.discogs.com/sell/order/1-1",
6
+ "status": "New Order",
7
+ "next_status": [
8
+ "New Order",
9
+ "Buyer Contacted",
10
+ "Invoice Sent",
11
+ "Payment Pending",
12
+ "Payment Received",
13
+ "Shipped",
14
+ "Cancelled (Non-Paying Buyer)",
15
+ "Cancelled (Item Unavailable)",
16
+ "Cancelled (Per Buyer's Request)"
17
+ ],
18
+ "fee": {
19
+ "currency": "USD",
20
+ "value": 2.52
21
+ },
22
+ "created": "2011-10-21T09:25:17",
23
+ "items": [
24
+ {
25
+ "release": {
26
+ "id": 1,
27
+ "description": "Persuader, The - Stockholm (2x12\")"
28
+ },
29
+ "price": {
30
+ "currency": "USD",
31
+ "value": 42.0
32
+ },
33
+ "id": 41578242
34
+ }
35
+ ],
36
+ "shipping": {
37
+ "currency": "USD",
38
+ "value": 0.0
39
+ },
40
+ "shipping_address": "Asdf Exampleton\n234 NE Asdf St.\nAsdf Town, Oregon, 14423\nUnited States\n\nPhone: 555-555-2733\nPaypal address: asdf@example.com",
41
+ "additional_instructions": "please use sturdy packaging.",
42
+ "seller": {
43
+ "resource_url": "http://api.discogs.com/users/example_seller",
44
+ "username": "example_seller",
45
+ "id": 1
46
+ },
47
+ "last_activity": "2011-10-21T09:25:17",
48
+ "buyer": {
49
+ "resource_url": "http://api.discogs.com/users/example_buyer",
50
+ "username": "example_buyer",
51
+ "id": 2
52
+ },
53
+ "total": {
54
+ "currency": "USD",
55
+ "value": 42.0
56
+ }
57
+ }
@@ -0,0 +1,102 @@
1
+ {
2
+ "pagination": {
3
+ "per_page": 50,
4
+ "pages": 1,
5
+ "page": 1,
6
+ "urls": {},
7
+ "items": 7
8
+ },
9
+ "messages": [
10
+ {
11
+ "from": {
12
+ "username": "example_seller",
13
+ "resource_url": "http://api.discogs.com/users/example_seller"
14
+ },
15
+ "message": "Seller changed status from Invoice Sent to Payment Received\n\nThat was fast, thanks!",
16
+ "order": {
17
+ "resource_url": "http://api.discogs.com/marketplace/orders/1-1",
18
+ "id": "1-1"
19
+ },
20
+ "timestamp": "2011-11-17T14:55:52",
21
+ "subject": "Discogs Order #1-1, Stockholm"
22
+ },
23
+ {
24
+ "from": {
25
+ "username": "example_buyer",
26
+ "resource_url": "http://api.discogs.com/users/example_buyer"
27
+ },
28
+ "message": "I've sent the payment electronically :D",
29
+ "order": {
30
+ "resource_url": "http://api.discogs.com/marketplace/orders/1-1",
31
+ "id": "1-1"
32
+ },
33
+ "timestamp": "2011-11-17T14:50:35",
34
+ "subject": "Discogs Order #1-1, Stockholm"
35
+ },
36
+ {
37
+ "from": {
38
+ "username": "example_seller",
39
+ "resource_url": "http://api.discogs.com/users/example_seller"
40
+ },
41
+ "message": "Seller added $ 4.00 for shipping. Order total is now $ 46.00.",
42
+ "order": {
43
+ "resource_url": "http://api.discogs.com/marketplace/orders/1-1",
44
+ "id": "1-1"
45
+ },
46
+ "timestamp": "2011-11-17T14:49:20",
47
+ "subject": "Order Update: Discogs Order #1-1"
48
+ },
49
+ {
50
+ "from": {
51
+ "username": "example_buyer",
52
+ "resource_url": "http://api.discogs.com/users/example_buyer"
53
+ },
54
+ "message": "Hi! No preferences here, standard ground is fine.",
55
+ "order": {
56
+ "resource_url": "http://api.discogs.com/marketplace/orders/1-1",
57
+ "id": "1-1"
58
+ },
59
+ "timestamp": "2011-11-17T14:46:03",
60
+ "subject": "Discogs Order #1-1, Stockholm"
61
+ },
62
+ {
63
+ "from": {
64
+ "username": "example_seller",
65
+ "resource_url": "http://api.discogs.com/users/example_seller"
66
+ },
67
+ "message": "Seller changed status from New Order to Buyer Contacted\n\nHi there! Any shipping preferences?",
68
+ "order": {
69
+ "resource_url": "http://api.discogs.com/marketplace/orders/1-1",
70
+ "id": "1-1"
71
+ },
72
+ "timestamp": "2011-11-17T14:44:02",
73
+ "subject": "Discogs Order #1-1, Stockholm"
74
+ },
75
+ {
76
+ "from": {
77
+ "username": "example_buyer",
78
+ "resource_url": "http://api.discogs.com/users/example_buyer"
79
+ },
80
+ "message": "You have a new order via Discogs!\n\nOrder #1-1\nBuyer: example_buyer (example_buyer@example.com)\n\n...",
81
+ "order": {
82
+ "resource_url": "http://api.discogs.com/marketplace/orders/1-1",
83
+ "id": "1-1"
84
+ },
85
+ "timestamp": "2011-11-17T13:37:00",
86
+ "subject": "New Order #1-1, Stockholm"
87
+ },
88
+ {
89
+ "from": {
90
+ "username": "example_seller",
91
+ "resource_url": "http://api.discogs.com/users/example_seller"
92
+ },
93
+ "message": "This message is a confirmation of your purchase from example_seller via Discogs.\n\nOrder #1-1\n\n...",
94
+ "order": {
95
+ "resource_url": "http://api.discogs.com/marketplace/orders/1-1",
96
+ "id": "1-1"
97
+ },
98
+ "timestamp": "2011-11-17T13:37:00",
99
+ "subject": "Discogs Order #1-1, Stockholm"
100
+ }
101
+ ]
102
+ }
@@ -0,0 +1,68 @@
1
+ {
2
+ "pagination": {
3
+ "per_page": 50,
4
+ "pages": 1,
5
+ "page": 1,
6
+ "items": 1,
7
+ "urls": {}
8
+ },
9
+ "orders": [
10
+ {
11
+ "status": "New Order",
12
+ "fee": {
13
+ "currency": "USD",
14
+ "value": 2.52
15
+ },
16
+ "created": "2011-10-21T09:25:17",
17
+ "items": [
18
+ {
19
+ "release": {
20
+ "id": 1,
21
+ "description": "Persuader, The - Stockholm (2x12\")"
22
+ },
23
+ "price": {
24
+ "currency": "USD",
25
+ "value": 42.0
26
+ },
27
+ "id": 41578242
28
+ }
29
+ ],
30
+ "shipping": {
31
+ "currency": "USD",
32
+ "value": 0.0
33
+ },
34
+ "shipping_address": "Asdf Exampleton\n234 NE Asdf St.\nAsdf Town, Oregon, 14423\nUnited States\n\nPhone: 555-555-2733\nPaypal address: asdf@example.com",
35
+ "additional_instructions": "please use sturdy packaging.",
36
+ "seller": {
37
+ "resource_url": "http://api.discogs.com/users/example_seller",
38
+ "username": "example_seller",
39
+ "id": 1
40
+ },
41
+ "last_activity": "2011-10-21T09:25:17",
42
+ "buyer": {
43
+ "resource_url": "http://api.discogs.com/users/example_buyer",
44
+ "username": "example_buyer",
45
+ "id": 2
46
+ },
47
+ "total": {
48
+ "currency": "USD",
49
+ "value": 42.0
50
+ },
51
+ "id": "1-1"
52
+ "resource_url": "http://api.discogs.com/marketplace/orders/1-1",
53
+ "messages_url": "http://api.discogs.com/marketplace/orders/1-1/messages",
54
+ "uri": "http://www.discogs.com/sell/order/1-1",
55
+ "next_status": [
56
+ "New Order",
57
+ "Buyer Contacted",
58
+ "Invoice Sent",
59
+ "Payment Pending",
60
+ "Payment Received",
61
+ "Shipped",
62
+ "Cancelled (Non-Paying Buyer)",
63
+ "Cancelled (Item Unavailable)",
64
+ "Cancelled (Per Buyer's Request)"
65
+ ]
66
+ }
67
+ ]
68
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "Very Good (VG)": {
3
+ "currency": "USD",
4
+ "value": 6.7827501
5
+ },
6
+ "Good Plus (G+)": {
7
+ "currency": "USD",
8
+ "value": 3.7681945000000003
9
+ },
10
+ "Near Mint (NM or M-)": {
11
+ "currency": "USD",
12
+ "value": 12.8118613
13
+ },
14
+ "Good (G)": {
15
+ "currency": "USD",
16
+ "value": 2.2609167
17
+ },
18
+ "Very Good Plus (VG+)": {
19
+ "currency": "USD",
20
+ "value": 9.7973057
21
+ },
22
+ "Mint (M)": {
23
+ "currency": "USD",
24
+ "value": 14.319139100000001
25
+ },
26
+ "Fair (F)": {
27
+ "currency": "USD",
28
+ "value": 1.5072778000000002
29
+ },
30
+ "Poor (P)": {
31
+ "currency": "USD",
32
+ "value": 0.7536389000000001
33
+ }
34
+ }
@@ -0,0 +1 @@
1
+ {"status": "Accepted", "styles": ["Deep House"], "videos": [{"duration": 380, "description": "The Persuader - Vasastaden", "embed": true, "uri": "http://www.youtube.com/watch?v=5rA8CTKKEP4", "title": "The Persuader - Vasastaden"}, {"duration": 335, "description": "The Persuader-Stockholm-Sodermalm", "embed": true, "uri": "http://www.youtube.com/watch?v=QVdDhOnoR8k", "title": "The Persuader-Stockholm-Sodermalm"}, {"duration": 290, "description": "The Persuader (Jesper Dahlb\u00e4ck) - \u00d6stermalm", "embed": true, "uri": "http://www.youtube.com/watch?v=AHuQWcylaU4", "title": "The Persuader (Jesper Dahlb\u00e4ck) - \u00d6stermalm"}, {"duration": 175, "description": "The Persuader - Kungsholmen - Svek Records", "embed": true, "uri": "http://www.youtube.com/watch?v=sLZvvJVir5g", "title": "The Persuader - Kungsholmen - Svek Records"}, {"duration": 324, "description": "The Persuader - Gamla Stan - Svek Records", "embed": true, "uri": "http://www.youtube.com/watch?v=js_g1qtPmL0", "title": "The Persuader - Gamla Stan - Svek Records"}, {"duration": 289, "description": "The Persuader - Norrmalm", "embed": true, "uri": "http://www.youtube.com/watch?v=hy47qgyJeG0", "title": "The Persuader - Norrmalm"}], "series": [], "released_formatted": "Mar 1999", "labels": [{"id": 5, "resource_url": "http://api.discogs.com/labels/5", "catno": "SK032", "name": "Svek", "entity_type": "1"}], "estimated_weight": 460, "community": {"status": "Accepted", "rating": {"count": 91, "average": 4.48}, "have": 310, "contributors": [{"username": "teo", "resource_url": "http://api.discogs.com/users/teo"}, {"username": "Ultravod", "resource_url": "http://api.discogs.com/users/Ultravod"}, {"username": "MONK", "resource_url": "http://api.discogs.com/users/MONK"}, {"username": "herr_roessi", "resource_url": "http://api.discogs.com/users/herr_roessi"}, {"username": "Swedens_Finest", "resource_url": "http://api.discogs.com/users/Swedens_Finest"}, {"username": "daniel-phonk", "resource_url": "http://api.discogs.com/users/daniel-phonk"}, {"username": "sharevari", "resource_url": "http://api.discogs.com/users/sharevari"}, {"username": "cosmicdream", "resource_url": "http://api.discogs.com/users/cosmicdream"}, {"username": "moob", "resource_url": "http://api.discogs.com/users/moob"}, {"username": "irionman", "resource_url": "http://api.discogs.com/users/irionman"}, {"username": "PabloPlato", "resource_url": "http://api.discogs.com/users/PabloPlato"}, {"username": "tomazy", "resource_url": "http://api.discogs.com/users/tomazy"}, {"username": "NeedleCain", "resource_url": "http://api.discogs.com/users/NeedleCain"}, {"username": "more_music", "resource_url": "http://api.discogs.com/users/more_music"}, {"username": "teori", "resource_url": "http://api.discogs.com/users/teori"}, {"username": "disneyfacts", "resource_url": "http://api.discogs.com/users/disneyfacts"}, {"username": "baczbad", "resource_url": "http://api.discogs.com/users/baczbad"}], "want": 332, "submitter": {"username": "teo", "resource_url": "http://api.discogs.com/users/teo"}, "data_quality": "Complete and Correct"}, "released": "1999-03-00", "master_url": "http://api.discogs.com/masters/5427", "year": 1999, "images": [{"uri": "http://api.discogs.com/image/R-1-1193812031.jpeg", "height": 600, "width": 600, "resource_url": "http://api.discogs.com/image/R-1-1193812031.jpeg", "type": "primary", "uri150": "http://api.discogs.com/image/R-150-1-1193812031.jpeg"}, {"uri": "http://api.discogs.com/image/R-1-1193812053.jpeg", "height": 600, "width": 600, "resource_url": "http://api.discogs.com/image/R-1-1193812053.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/R-150-1-1193812053.jpeg"}, {"uri": "http://api.discogs.com/image/R-1-1193812072.jpeg", "height": 600, "width": 600, "resource_url": "http://api.discogs.com/image/R-1-1193812072.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/R-150-1-1193812072.jpeg"}, {"uri": "http://api.discogs.com/image/R-1-1193812091.jpeg", "height": 600, "width": 600, "resource_url": "http://api.discogs.com/image/R-1-1193812091.jpeg", "type": "secondary", "uri150": "http://api.discogs.com/image/R-150-1-1193812091.jpeg"}], "format_quantity": 2, "id": 1, "genres": ["Electronic"], "thumb": "http://api.discogs.com/image/R-150-1-1193812031.jpeg", "extraartists": [{"join": "", "name": "Jesper Dahlb\u00e4ck", "anv": "", "tracks": "", "role": "Music By [All Tracks By]", "resource_url": "http://api.discogs.com/artists/239", "id": 239}], "title": "Stockholm", "country": "Sweden", "notes": "The song titles are the names of Stockholm's districts.\r\n", "identifiers": [{"type": "Matrix / Runout", "description": "A-Side", "value": "MPO SK 032 A1 G PHRUPMASTERGENERAL T27 LONDON"}, {"type": "Matrix / Runout", "description": "B-Side", "value": "MPO SK 032 B1"}, {"type": "Matrix / Runout", "description": "C-Side", "value": "MPO SK 032 C1"}, {"type": "Matrix / Runout", "description": "D-Side", "value": "MPO SK 032 D1"}], "companies": [{"name": "The Globe Studios", "entity_type": "23", "catno": "", "resource_url": "http://api.discogs.com/labels/271046", "id": 271046, "entity_type_name": "Recorded At"}, {"name": "MPO", "entity_type": "17", "catno": "", "resource_url": "http://api.discogs.com/labels/56025", "id": 56025, "entity_type_name": "Pressed By"}], "uri": "http://www.discogs.com/Persuader-Stockholm/release/1", "artists": [{"join": "", "name": "Persuader, The", "anv": "", "tracks": "", "role": "", "resource_url": "http://api.discogs.com/artists/1", "id": 1}], "formats": [{"descriptions": ["12\"", "33 \u2153 RPM"], "name": "Vinyl", "qty": "2"}], "resource_url": "http://api.discogs.com/releases/1", "master_id": 5427, "tracklist": [{"duration": "4:45", "position": "A", "type_": "track", "title": "\u00d6stermalm"}, {"duration": "6:11", "position": "B1", "type_": "track", "title": "Vasastaden"}, {"duration": "2:49", "position": "B2", "type_": "track", "title": "Kungsholmen"}, {"duration": "5:38", "position": "C1", "type_": "track", "title": "S\u00f6dermalm"}, {"duration": "4:52", "position": "C2", "type_": "track", "title": "Norrmalm"}, {"duration": "5:16", "position": "D", "type_": "track", "title": "Gamla Stan"}], "data_quality": "Complete and Correct"}
@@ -0,0 +1 @@
1
+ {"pagination": {"per_page": 50, "items": 4, "page": 1, "urls": {}, "pages": 1}, "results": [{"style": ["Black Metal"], "thumb": "http://api.discogs.com/image/R-90-2633081-1294211425.jpeg", "format": ["Cassette", "Limited Edition"], "country": "Germany", "title": "Moonblood - The Winter Falls Over The Land", "uri": "/Moonblood-The-Winter-Falls-Over-The-Land/release/2633081", "label": ["Gospel Of The Witches Promotions"], "catno": "none", "year": "1995", "genre": ["Rock"], "resource_url": "http://api.discogs.com/releases/2633081", "type": "release", "id": 2633081}, {"style": ["Black Metal"], "thumb": "http://api.discogs.com/image/R-90-1192657-1199713352.jpeg", "format": ["Vinyl", "7\"", "33 \u2153 RPM", "Limited Edition"], "country": "Germany", "barcode": ["5421601/A", "5421602/A"], "uri": "/Isenheim-Uruk-Hai-Isenheim-Uruk-Hai/release/1192657", "label": ["Westwall Production"], "catno": "WW 009", "year": "2003", "genre": ["Rock"], "title": "Isenheim / Uruk-Hai (2) - Isenheim / Uruk-Hai", "resource_url": "http://api.discogs.com/releases/1192657", "type": "release", "id": 1192657}, {"style": ["Black Metal"], "thumb": "http://api.discogs.com/image/R-90-1206759-1210968520.jpeg", "format": ["CD", "Unofficial Release", "Compilation"], "country": "", "title": "Moonblood - Kingdom Under Funeral Skies", "uri": "/Moonblood-Kingdom-Under-Funeral-Skies/release/1206759", "label": ["Goat Moon Worship Records"], "catno": "GMWR 66602", "genre": ["Rock"], "resource_url": "http://api.discogs.com/releases/1206759", "type": "release", "id": 1206759}, {"style": ["Black Metal"], "thumb": "http://api.discogs.com/image/R-90-3509951-1333294477.jpeg", "format": ["CD", "Compilation", "Limited Edition", "Unofficial Release"], "country": "", "title": "Moonblood - Howls Under The Black Sky", "uri": "/Moonblood-Howls-Under-The-Black-Sky/release/3509951", "label": ["Goat Moon Worship Records"], "catno": "GMW 005", "year": "2006", "genre": ["Rock"], "resource_url": "http://api.discogs.com/releases/3509951", "type": "release", "id": 3509951}]}
@@ -0,0 +1 @@
1
+ {"profile": "", "wantlist_url": "http://api.discogs.com/users/abuntine/wants", "rank": 1.0, "num_pending": 0, "id": 556853, "num_for_sale": 0, "home_page": "", "location": "", "collection_folders_url": "http://api.discogs.com/users/abuntine/collection/folders", "username": "abuntine", "collection_fields_url": "http://api.discogs.com/users/abuntine/collection/fields", "releases_contributed": 0, "registered": "2009-06-10T04:37:02", "rating_avg": 4.46, "num_collection": 309, "releases_rated": 13, "num_lists": 0, "name": "", "num_wantlist": 77, "inventory_url": "http://api.discogs.com/users/abuntine/inventory", "uri": "http://www.discogs.com/user/abuntine", "resource_url": "http://api.discogs.com/users/abuntine"}
@@ -0,0 +1 @@
1
+ {"pagination": {"per_page": 5, "items": 309, "page": 1, "urls": {"last": "http://api.discogs.com/users/abuntine/collection/folders/0/releases?per_page=5&page=62", "next": "http://api.discogs.com/users/abuntine/collection/folders/0/releases?per_page=5&page=2"}, "pages": 62}, "releases": [{"instance_id": 1, "rating": 0, "basic_information": {"labels": [{"id": 157702, "resource_url": "http://api.discogs.com/labels/157702", "catno": "SR 0001-1311", "name": "\u0160ot Records", "entity_type": "1"}], "formats": [{"descriptions": ["LP", "Album", "45 RPM"], "name": "Vinyl", "qty": "1"}], "thumb": "http://api.discogs.com/image/R-150-1845027-1324771045.jpeg", "title": "Skimmed - New Insanity", "artists": [{"join": "", "name": "Skimmed", "anv": "", "tracks": "", "role": "", "resource_url": "http://api.discogs.com/artists/982750", "id": 982750}], "resource_url": "http://api.discogs.com/releases/1845027", "year": 1990, "id": 1845027}, "id": 1845027}, {"instance_id": 1, "rating": 0, "basic_information": {"labels": [{"id": 485715, "resource_url": "http://api.discogs.com/labels/485715", "catno": "none", "name": "999 Records", "entity_type": "1"}], "formats": [{"descriptions": ["LP", "Album", "Limited Edition"], "name": "Vinyl", "qty": "1"}], "thumb": "http://api.discogs.com/image/R-150-2086604-1360259439-6566.jpeg", "title": "Tan\u010dete Na Hrobech !", "artists": [{"join": "", "name": "Svat\u00fd Vincent", "anv": "", "tracks": "", "role": "", "resource_url": "http://api.discogs.com/artists/1476476", "id": 1476476}], "resource_url": "http://api.discogs.com/releases/2086604", "year": 1991, "id": 2086604}, "id": 2086604}, {"instance_id": 1, "rating": 0, "basic_information": {"labels": [{"id": 43136, "resource_url": "http://api.discogs.com/labels/43136", "catno": "ARlp091", "name": "Agonia Records", "entity_type": "1"}], "formats": [{"descriptions": ["LP", "Album", "Limited Edition"], "name": "Vinyl", "qty": "1"}], "thumb": "http://api.discogs.com/image/R-150-3164840-1318701219.jpeg", "title": "Heritage Of Satan", "artists": [{"join": "", "name": "Root (2)", "anv": "", "tracks": "", "role": "", "resource_url": "http://api.discogs.com/artists/259858", "id": 259858}], "resource_url": "http://api.discogs.com/releases/3164840", "year": 2011, "id": 3164840}, "id": 3164840}, {"instance_id": 1, "rating": 0, "basic_information": {"labels": [{"id": 43136, "resource_url": "http://api.discogs.com/labels/43136", "catno": "ARlp091", "name": "Agonia Records", "entity_type": "1"}], "formats": [{"descriptions": ["LP", "Album", "Limited Edition"], "text": "Red", "name": "Vinyl", "qty": "1"}], "thumb": "http://api.discogs.com/images/spacer.gif", "title": "Heritage Of Satan", "artists": [{"join": "", "name": "Root (2)", "anv": "", "tracks": "", "role": "", "resource_url": "http://api.discogs.com/artists/259858", "id": 259858}], "resource_url": "http://api.discogs.com/releases/3214128", "year": 2011, "id": 3214128}, "id": 3214128}, {"instance_id": 1, "rating": 0, "basic_information": {"labels": [{"id": 16715, "resource_url": "http://api.discogs.com/labels/16715", "catno": "ART 01", "name": "Arthur's Round Table", "entity_type": "1"}], "formats": [{"descriptions": ["Album"], "text": "2nd edition", "name": "CD", "qty": "1"}], "thumb": "http://api.discogs.com/image/R-150-1829252-1246206461.jpeg", "title": "The Moon Lay Hidden Beneath A Cloud", "artists": [{"join": "", "name": "Moon Lay Hidden Beneath A Cloud, The", "anv": "", "tracks": "", "role": "", "resource_url": "http://api.discogs.com/artists/49841", "id": 49841}], "resource_url": "http://api.discogs.com/releases/1829252", "year": 1993, "id": 1829252}, "id": 1829252}]}
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": 1,
3
+ "count": 20,
4
+ "name": "Uncategorized",
5
+ "resource_url": "http://api.discogs.com/users/example/collection/folders/1"
6
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "folders": [
3
+ {
4
+ "id": 0,
5
+ "count": 23,
6
+ "name": "All",
7
+ "resource_url": "http://api.discogs.com/users/example/collection/folders/0"
8
+ },
9
+ {
10
+ "id": 1,
11
+ "count": 20,
12
+ "name": "Uncategorized",
13
+ "resource_url": "http://api.discogs.com/users/example/collection/folders/1"
14
+ }
15
+ ]
16
+ }
@@ -0,0 +1,41 @@
1
+ {
2
+ "pagination": {
3
+ "per_page": 50,
4
+ "pages": 1,
5
+ "page": 1,
6
+ "items": 1,
7
+ "urls": {}
8
+ },
9
+ "listings": [
10
+ {
11
+ "id": 41578240,
12
+ "status": "For Sale",
13
+ "resource_url": "http://api.discogs.com/marketplace/listings/41578240",
14
+ "posted": "2011-10-19T10:40:26",
15
+ "ships_from": "United States",
16
+ "comments": "Like used!",
17
+ "condition": "Poor (P)",
18
+ "sleeve_condition": "Poor (P)",
19
+ "audio": true,
20
+ "allow_offers": true,
21
+ "weight": 239.0,
22
+ "format_quantity": 2,
23
+ "external_id": "shelf 32a, #5",
24
+ "seller": {
25
+ "username": "test",
26
+ "id": 1
27
+ },
28
+ "price": {
29
+ "currency": "USD",
30
+ "value": 23.0
31
+ },
32
+ "release": {
33
+ "id": 810756,
34
+ "resource_url": "http://api.discogs.com/releases/810756",
35
+ "description": "AC/DC - Back In Black (LP, Album)",
36
+ "catalog_number": "ATL 50735",
37
+ "year": 1980
38
+ }
39
+ }
40
+ ]
41
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "id": 1,
3
+ "username": "abuntine",
4
+ "name": "Example Sampleman",
5
+ "email": "sampleman@example.com",
6
+ "resource_url": "http://api.discogs.com/users/example",
7
+ "inventory_url": "http://api.discogs.com/users/example/inventory",
8
+ "collection_folders_url": "http://api.discogs.com/users/example/collection/folders",
9
+ "collection_fields_url": "http://api.discogs.com/users/example/collection/fields",
10
+ "wantlist_url": "http://api.discogs.com/users/example/wants",
11
+ "uri": "http://www.discogs.com/user/example",
12
+ "profile": "This is a new profile",
13
+ "home_page": "http://www.example.com",
14
+ "location": "Australia",
15
+ "registered": "2011-08-30 14:21:45",
16
+ "num_lists": 0,
17
+ "num_for_sale": 6,
18
+ "num_collection": 4,
19
+ "num_wantlist": 5,
20
+ "num_pending": 10,
21
+ "releases_contributed": 15,
22
+ "rank": 30.0,
23
+ "releases_rated": 4,
24
+ "rating_avg": 2.5
25
+ }