jammed 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. data/.gitignore +6 -0
  2. data/.rspec +1 -0
  3. data/.travis.yml +3 -0
  4. data/Gemfile +10 -0
  5. data/LICENSE +22 -0
  6. data/README.md +54 -0
  7. data/Rakefile +44 -0
  8. data/examples/basics.rb +60 -0
  9. data/lib/jammed/base.rb +182 -0
  10. data/lib/jammed/followers.rb +36 -0
  11. data/lib/jammed/following.rb +36 -0
  12. data/lib/jammed/jams.rb +34 -0
  13. data/lib/jammed/likes.rb +32 -0
  14. data/lib/jammed/people_search.rb +55 -0
  15. data/lib/jammed/person.rb +32 -0
  16. data/lib/jammed/popular_jams.rb +14 -0
  17. data/lib/jammed/suggested_people.rb +14 -0
  18. data/lib/jammed/user.rb +158 -0
  19. data/lib/jammed/version.rb +4 -0
  20. data/lib/jammed.rb +28 -0
  21. data/spec/jammed/base_spec.rb +90 -0
  22. data/spec/jammed/followers_spec.rb +55 -0
  23. data/spec/jammed/following_spec.rb +55 -0
  24. data/spec/jammed/jams_spec.rb +53 -0
  25. data/spec/jammed/likes_spec.rb +51 -0
  26. data/spec/jammed/people_search_spec.rb +79 -0
  27. data/spec/jammed/person_spec.rb +38 -0
  28. data/spec/jammed/popular_jams_spec.rb +23 -0
  29. data/spec/jammed/suggested_people_spec.rb +18 -0
  30. data/spec/jammed/user_spec.rb +205 -0
  31. data/spec/sample_responses/followers.json +1495 -0
  32. data/spec/sample_responses/followers_affinity.json +1495 -0
  33. data/spec/sample_responses/followers_date.json +1281 -0
  34. data/spec/sample_responses/followers_name.json +0 -0
  35. data/spec/sample_responses/following.json +1495 -0
  36. data/spec/sample_responses/following_affinity.json +1495 -0
  37. data/spec/sample_responses/following_date.json +1406 -0
  38. data/spec/sample_responses/following_name.json +1406 -0
  39. data/spec/sample_responses/jams.json +620 -0
  40. data/spec/sample_responses/jams_past.json +602 -0
  41. data/spec/sample_responses/likes.json +1106 -0
  42. data/spec/sample_responses/likes_current.json +224 -0
  43. data/spec/sample_responses/likes_past.json +1106 -0
  44. data/spec/sample_responses/person.json +44 -0
  45. data/spec/sample_responses/popular.json +364 -0
  46. data/spec/sample_responses/search_artist.json +1377 -0
  47. data/spec/sample_responses/search_name.json +55 -0
  48. data/spec/sample_responses/search_track.json +1333 -0
  49. data/spec/sample_responses/suggested_people.json +1427 -0
  50. data/spec/spec_helper.rb +18 -0
  51. metadata +189 -0
@@ -0,0 +1,44 @@
1
+ {
2
+ "jam": {
3
+ "artist": "B.W. Stevenson",
4
+ "caption": "The Institute needs an AM radio, and soon.",
5
+ "creationDate": "Tue, 17 Apr 2012 22:53:03 +0000",
6
+ "current": true,
7
+ "endDate": "Tue, 24 Apr 2012 22:53:03 +0000",
8
+ "from": "IFTFOM",
9
+ "id": "18ahqel",
10
+ "jamvatarLarge": "http://static01.thisismyjam.com/i/0af5ee0aebf3ed7ddd44e2a91df7f612_395.jpg",
11
+ "jamvatarMedium": "http://static02.thisismyjam.com/i/0af5ee0aebf3ed7ddd44e2a91df7f612_185.jpg",
12
+ "jamvatarSmall": "http://static01.thisismyjam.com/i/0af5ee0aebf3ed7ddd44e2a91df7f612_80.jpg",
13
+ "likes": "http://api.thisismyjam.com/1/jams/18ahqel/likes.json?key=987bcab01b929eb2c07877b224215c92",
14
+ "likesCount": 23,
15
+ "playCount": 105,
16
+ "title": "My Maria",
17
+ "via": "youtube",
18
+ "viaUrl": "http://www.youtube.com/watch?v=JdBvTvxHy7E"
19
+ },
20
+ "person": {
21
+ "apiUrl": "http://api.thisismyjam.com/1/IFTFOM.json?key=987bcab01b929eb2c07877b224215c92",
22
+ "avatarNormal": "http://static01.thisismyjam.com/i/avtr_ffb74c754f2e74d43ba3e77aa46c3e1a_128.jpg",
23
+ "avatarSmall": "http://static03.thisismyjam.com/i/avtr_ffb74c754f2e74d43ba3e77aa46c3e1a_small.jpg",
24
+ "bio": "Between the park and the canal. Improving your music life with science and heart. We like coldwave, yacht rock, the future, and you.",
25
+ "followers": "http://api.thisismyjam.com/1/IFTFOM/followers.json?key=987bcab01b929eb2c07877b224215c92",
26
+ "followersCount": 1547,
27
+ "following": "http://api.thisismyjam.com/1/IFTFOM/following.json?key=987bcab01b929eb2c07877b224215c92",
28
+ "followingCount": 718,
29
+ "fullname": "Institute for the Future of Music",
30
+ "hasCurrentJam": true,
31
+ "jamCount": 34,
32
+ "joinedDate": "Fri, 26 Aug 2011 16:15:19 +0000",
33
+ "lastfmName": "IFTFOM",
34
+ "name": "IFTFOM",
35
+ "representativeArtists": [
36
+ "Orchestral Manoeuvres in the Dark",
37
+ "Christopher Cross",
38
+ "Steely Dan",
39
+ "Robert Palmer"
40
+ ],
41
+ "twitterName": "IFTFOM",
42
+ "url": "http://www.thisismyjam.com/IFTFOM"
43
+ }
44
+ }
@@ -0,0 +1,364 @@
1
+ {
2
+ "jams": [
3
+ {
4
+ "artist": "Tom Waits",
5
+ "caption": "the band is playing our song again",
6
+ "creationDate": "Tue, 17 Apr 2012 00:08:13 +0000",
7
+ "current": true,
8
+ "endDate": "Tue, 24 Apr 2012 00:08:13 +0000",
9
+ "from": "defineogre",
10
+ "id": "17qpab1",
11
+ "jamvatarLarge": "http://static02.thisismyjam.com/i/60592665c09d555fb2aa9b6bfbc91065_395.jpg",
12
+ "jamvatarMedium": "http://static03.thisismyjam.com/i/60592665c09d555fb2aa9b6bfbc91065_185.jpg",
13
+ "jamvatarSmall": "http://static02.thisismyjam.com/i/60592665c09d555fb2aa9b6bfbc91065_80.jpg",
14
+ "likes": "http://api.thisismyjam.com/1/jams/17qpab1/likes.json",
15
+ "likesCount": 18,
16
+ "playCount": 42,
17
+ "title": "All The World is Green",
18
+ "via": "youtube",
19
+ "viaUrl": "http://www.youtube.com/watch?v=4GIAawSTisE"
20
+ },
21
+ {
22
+ "artist": "Twinsy",
23
+ "caption": "",
24
+ "creationDate": "Wed, 18 Apr 2012 10:14:53 +0000",
25
+ "current": true,
26
+ "endDate": "Wed, 25 Apr 2012 10:14:53 +0000",
27
+ "from": "TatjanaRop",
28
+ "id": "18gv723",
29
+ "jamvatarLarge": "http://static03.thisismyjam.com/i/713ac2530ae805cdd38b6a87215cf7bb_395.jpg",
30
+ "jamvatarMedium": "http://static03.thisismyjam.com/i/713ac2530ae805cdd38b6a87215cf7bb_185.jpg",
31
+ "jamvatarSmall": "http://static01.thisismyjam.com/i/713ac2530ae805cdd38b6a87215cf7bb_80.jpg",
32
+ "likes": "http://api.thisismyjam.com/1/jams/18gv723/likes.json",
33
+ "likesCount": 12,
34
+ "playCount": 69,
35
+ "title": "Water Bombs",
36
+ "via": "hypemachine",
37
+ "viaUrl": "http://hypem.com/item/1j0p2"
38
+ },
39
+ {
40
+ "artist": "The Time And Space Machine",
41
+ "caption": "None more banger.",
42
+ "creationDate": "Tue, 17 Apr 2012 17:16:19 +0000",
43
+ "current": true,
44
+ "endDate": "Tue, 24 Apr 2012 17:16:19 +0000",
45
+ "from": "laurenlaverne",
46
+ "id": "1844zlv",
47
+ "jamvatarLarge": "http://static03.thisismyjam.com/i/ccf36b431fa88b0ce0fb450c0ecd20ad_395.jpg",
48
+ "jamvatarMedium": "http://static04.thisismyjam.com/i/ccf36b431fa88b0ce0fb450c0ecd20ad_185.jpg",
49
+ "jamvatarSmall": "http://static03.thisismyjam.com/i/ccf36b431fa88b0ce0fb450c0ecd20ad_80.jpg",
50
+ "likes": "http://api.thisismyjam.com/1/jams/1844zlv/likes.json",
51
+ "likesCount": 36,
52
+ "playCount": 387,
53
+ "title": "Pill Party in India - Psychemagik Remix",
54
+ "via": "youtube",
55
+ "viaUrl": "http://www.youtube.com/watch?v=kKHPkyRzWc4"
56
+ },
57
+ {
58
+ "artist": "The Black Keys",
59
+ "caption": "",
60
+ "creationDate": "Mon, 16 Apr 2012 21:02:54 +0000",
61
+ "current": true,
62
+ "endDate": "Mon, 23 Apr 2012 21:02:54 +0000",
63
+ "from": "Smithy",
64
+ "id": "17npwzr",
65
+ "jamvatarLarge": "http://static04.thisismyjam.com/i/2af341055810158fbfc0e26dbf463ff2_395.jpg",
66
+ "jamvatarMedium": "http://static02.thisismyjam.com/i/2af341055810158fbfc0e26dbf463ff2_185.jpg",
67
+ "jamvatarSmall": "http://static03.thisismyjam.com/i/2af341055810158fbfc0e26dbf463ff2_80.jpg",
68
+ "likes": "http://api.thisismyjam.com/1/jams/17npwzr/likes.json",
69
+ "likesCount": 37,
70
+ "playCount": 92,
71
+ "title": "Gold on the Ceiling",
72
+ "via": "youtube",
73
+ "viaUrl": "http://www.youtube.com/watch?v=OAdTbE9LAtY"
74
+ },
75
+ {
76
+ "artist": "Fugazi",
77
+ "caption": "",
78
+ "creationDate": "Mon, 16 Apr 2012 22:06:15 +0000",
79
+ "current": true,
80
+ "endDate": "Mon, 23 Apr 2012 22:06:15 +0000",
81
+ "from": "thedalstonhowl",
82
+ "id": "17p219v",
83
+ "jamvatarLarge": "http://static03.thisismyjam.com/i/6535af74ba3e76faa3d60439d782853b_395.jpg",
84
+ "jamvatarMedium": "http://static04.thisismyjam.com/i/6535af74ba3e76faa3d60439d782853b_185.jpg",
85
+ "jamvatarSmall": "http://static02.thisismyjam.com/i/6535af74ba3e76faa3d60439d782853b_80.jpg",
86
+ "likes": "http://api.thisismyjam.com/1/jams/17p219v/likes.json",
87
+ "likesCount": 15,
88
+ "playCount": 41,
89
+ "title": "Bad Mouth",
90
+ "via": "youtube",
91
+ "viaUrl": "http://www.youtube.com/watch?v=dhjxQoO3W1c"
92
+ },
93
+ {
94
+ "artist": "B.W. Stevenson",
95
+ "caption": "The Institute needs an AM radio, and soon.",
96
+ "creationDate": "Tue, 17 Apr 2012 22:53:03 +0000",
97
+ "current": true,
98
+ "endDate": "Tue, 24 Apr 2012 22:53:03 +0000",
99
+ "from": "IFTFOM",
100
+ "id": "18ahqel",
101
+ "jamvatarLarge": "http://static02.thisismyjam.com/i/0af5ee0aebf3ed7ddd44e2a91df7f612_395.jpg",
102
+ "jamvatarMedium": "http://static01.thisismyjam.com/i/0af5ee0aebf3ed7ddd44e2a91df7f612_185.jpg",
103
+ "jamvatarSmall": "http://static01.thisismyjam.com/i/0af5ee0aebf3ed7ddd44e2a91df7f612_80.jpg",
104
+ "likes": "http://api.thisismyjam.com/1/jams/18ahqel/likes.json",
105
+ "likesCount": 23,
106
+ "playCount": 106,
107
+ "title": "My Maria",
108
+ "via": "youtube",
109
+ "viaUrl": "http://www.youtube.com/watch?v=JdBvTvxHy7E"
110
+ },
111
+ {
112
+ "artist": "Hot Chip",
113
+ "caption": "",
114
+ "creationDate": "Tue, 17 Apr 2012 19:49:25 +0000",
115
+ "current": true,
116
+ "endDate": "Tue, 24 Apr 2012 19:49:25 +0000",
117
+ "from": "nobody",
118
+ "id": "1873n2d",
119
+ "jamvatarLarge": "http://static04.thisismyjam.com/i/10716fb322b6e5376421ebd5dd12d7b7_395.jpg",
120
+ "jamvatarMedium": "http://static02.thisismyjam.com/i/10716fb322b6e5376421ebd5dd12d7b7_185.jpg",
121
+ "jamvatarSmall": "http://static03.thisismyjam.com/i/10716fb322b6e5376421ebd5dd12d7b7_80.jpg",
122
+ "likes": "http://api.thisismyjam.com/1/jams/1873n2d/likes.json",
123
+ "likesCount": 12,
124
+ "playCount": 42,
125
+ "title": "Night And Day",
126
+ "via": "hypemachine",
127
+ "viaUrl": "http://hypem.com/item/1khcg"
128
+ },
129
+ {
130
+ "artist": "Tennis",
131
+ "caption": "Second side of the new Tennis double A-side single. Tour/release info: http://bit.ly/HRz7se",
132
+ "creationDate": "Wed, 18 Apr 2012 09:06:16 +0000",
133
+ "current": true,
134
+ "endDate": "Wed, 25 Apr 2012 09:06:16 +0000",
135
+ "from": "ATPFestival",
136
+ "id": "18fxz9m",
137
+ "jamvatarLarge": "http://static02.thisismyjam.com/i/cc51d54696e519fd8b6a7ed1d2ba289a_395.jpg",
138
+ "jamvatarMedium": "http://static02.thisismyjam.com/i/cc51d54696e519fd8b6a7ed1d2ba289a_185.jpg",
139
+ "jamvatarSmall": "http://static03.thisismyjam.com/i/cc51d54696e519fd8b6a7ed1d2ba289a_80.jpg",
140
+ "likes": "http://api.thisismyjam.com/1/jams/18fxz9m/likes.json",
141
+ "likesCount": 23,
142
+ "playCount": 153,
143
+ "title": "Petition",
144
+ "via": "youtube",
145
+ "viaUrl": "http://www.youtube.com/watch?v=VwyddkZsXWs"
146
+ },
147
+ {
148
+ "artist": "The Smiths",
149
+ "caption": "For @loosqueal. Now you've really got it all.",
150
+ "creationDate": "Wed, 18 Apr 2012 00:27:30 +0000",
151
+ "current": true,
152
+ "endDate": "Wed, 25 Apr 2012 00:27:30 +0000",
153
+ "from": "sophiewensel",
154
+ "id": "18bjz6i",
155
+ "jamvatarLarge": "http://static01.thisismyjam.com/i/caab93303ff5f19d867c02bfa0bff834_395.jpg",
156
+ "jamvatarMedium": "http://static01.thisismyjam.com/i/caab93303ff5f19d867c02bfa0bff834_185.jpg",
157
+ "jamvatarSmall": "http://static04.thisismyjam.com/i/caab93303ff5f19d867c02bfa0bff834_80.jpg",
158
+ "likes": "http://api.thisismyjam.com/1/jams/18bjz6i/likes.json",
159
+ "likesCount": 27,
160
+ "playCount": 62,
161
+ "title": "You've Got Everything Now",
162
+ "via": "youtube",
163
+ "viaUrl": "http://www.youtube.com/watch?v=t1gAKAqCkEs"
164
+ },
165
+ {
166
+ "artist": "by Whitey's Lindy Hoppers",
167
+ "caption": "Crikey that's some Lindy Hopping. Crikey again.",
168
+ "creationDate": "Tue, 17 Apr 2012 13:10:55 +0000",
169
+ "current": true,
170
+ "endDate": "Tue, 24 Apr 2012 13:10:55 +0000",
171
+ "from": "hughmcguire",
172
+ "id": "17zkvr5",
173
+ "jamvatarLarge": "http://static03.thisismyjam.com/i/3fb066c69bcfc18335fec9d4c491c698_395.jpg",
174
+ "jamvatarMedium": "http://static04.thisismyjam.com/i/3fb066c69bcfc18335fec9d4c491c698_185.jpg",
175
+ "jamvatarSmall": "http://static01.thisismyjam.com/i/3fb066c69bcfc18335fec9d4c491c698_80.jpg",
176
+ "likes": "http://api.thisismyjam.com/1/jams/17zkvr5/likes.json",
177
+ "likesCount": 17,
178
+ "playCount": 82,
179
+ "title": "Helzapoppin'",
180
+ "via": "youtube",
181
+ "viaUrl": "http://www.youtube.com/watch?v=ahoJReiCaPk"
182
+ },
183
+ {
184
+ "artist": "Bo Diddley",
185
+ "caption": "Phew!!",
186
+ "creationDate": "Tue, 17 Apr 2012 13:07:20 +0000",
187
+ "current": true,
188
+ "endDate": "Tue, 24 Apr 2012 13:07:20 +0000",
189
+ "from": "ken1",
190
+ "id": "17zid9f",
191
+ "jamvatarLarge": "http://static02.thisismyjam.com/i/e648b2fe921c41b84356fe4c4e46a52f_395.jpg",
192
+ "jamvatarMedium": "http://static03.thisismyjam.com/i/e648b2fe921c41b84356fe4c4e46a52f_185.jpg",
193
+ "jamvatarSmall": "http://static04.thisismyjam.com/i/e648b2fe921c41b84356fe4c4e46a52f_80.jpg",
194
+ "likes": "http://api.thisismyjam.com/1/jams/17zid9f/likes.json",
195
+ "likesCount": 16,
196
+ "playCount": 49,
197
+ "title": "Hey Bo Diddley (1965)",
198
+ "via": "youtube",
199
+ "viaUrl": "http://www.youtube.com/watch?v=yeZHB3ozglQ"
200
+ },
201
+ {
202
+ "artist": "The Rolling Stones",
203
+ "caption": "",
204
+ "creationDate": "Tue, 17 Apr 2012 14:23:21 +0000",
205
+ "current": true,
206
+ "endDate": "Tue, 24 Apr 2012 14:23:21 +0000",
207
+ "from": "hravn13",
208
+ "id": "180xwcq",
209
+ "jamvatarLarge": "http://static04.thisismyjam.com/i/9b06b85f66ba059f3070d6ccc8863739_395.jpg",
210
+ "jamvatarMedium": "http://static01.thisismyjam.com/i/9b06b85f66ba059f3070d6ccc8863739_185.jpg",
211
+ "jamvatarSmall": "http://static02.thisismyjam.com/i/9b06b85f66ba059f3070d6ccc8863739_80.jpg",
212
+ "likes": "http://api.thisismyjam.com/1/jams/180xwcq/likes.json",
213
+ "likesCount": 17,
214
+ "playCount": 22,
215
+ "title": "Paint It Black",
216
+ "via": "youtube",
217
+ "viaUrl": "http://www.youtube.com/watch?v=u6d8eKvegLI"
218
+ },
219
+ {
220
+ "artist": "Peter Doherty",
221
+ "caption": "'Pete' Doherty's solo album is a real gem!",
222
+ "creationDate": "Tue, 17 Apr 2012 15:05:17 +0000",
223
+ "current": true,
224
+ "endDate": "Tue, 24 Apr 2012 15:05:17 +0000",
225
+ "from": "Conagh_Murphy",
226
+ "id": "181p6ua",
227
+ "jamvatarLarge": "http://static04.thisismyjam.com/i/64dd61b77c3f015d19ad6d598b47aad1_395.jpg",
228
+ "jamvatarMedium": "http://static03.thisismyjam.com/i/64dd61b77c3f015d19ad6d598b47aad1_185.jpg",
229
+ "jamvatarSmall": "http://static02.thisismyjam.com/i/64dd61b77c3f015d19ad6d598b47aad1_80.jpg",
230
+ "likes": "http://api.thisismyjam.com/1/jams/181p6ua/likes.json",
231
+ "likesCount": 11,
232
+ "playCount": 25,
233
+ "title": "Last Of The English Roses",
234
+ "via": "youtube",
235
+ "viaUrl": "http://www.youtube.com/watch?v=qjIO-AJlFoU"
236
+ },
237
+ {
238
+ "artist": "Coil",
239
+ "caption": "Lost in space.",
240
+ "creationDate": "Tue, 17 Apr 2012 06:24:30 +0000",
241
+ "current": true,
242
+ "endDate": "Tue, 24 Apr 2012 06:24:30 +0000",
243
+ "from": "joemuggs",
244
+ "id": "17u1ejm",
245
+ "jamvatarLarge": "http://static03.thisismyjam.com/i/d9dd3748666f3deca5aadf585e1a69d5_395.jpg",
246
+ "jamvatarMedium": "http://static02.thisismyjam.com/i/d9dd3748666f3deca5aadf585e1a69d5_185.jpg",
247
+ "jamvatarSmall": "http://static01.thisismyjam.com/i/d9dd3748666f3deca5aadf585e1a69d5_80.jpg",
248
+ "likes": "http://api.thisismyjam.com/1/jams/17u1ejm/likes.json",
249
+ "likesCount": 15,
250
+ "playCount": 58,
251
+ "title": "The Mothership & the Fatherland",
252
+ "via": "youtube",
253
+ "viaUrl": "http://www.youtube.com/watch?v=MFHEbGrdYr4"
254
+ },
255
+ {
256
+ "artist": "Mansun",
257
+ "caption": "Finished my DJ set for Latitude Festiva's Longitude event with this last night. A true classic.",
258
+ "creationDate": "Tue, 17 Apr 2012 10:48:45 +0000",
259
+ "current": true,
260
+ "endDate": "Tue, 24 Apr 2012 10:48:45 +0000",
261
+ "from": "seaninsound",
262
+ "id": "17x5mdn",
263
+ "jamvatarLarge": "http://static01.thisismyjam.com/i/a7d4c9611ebc4707e7ea8a3f575fe7a1_395.jpg",
264
+ "jamvatarMedium": "http://static03.thisismyjam.com/i/a7d4c9611ebc4707e7ea8a3f575fe7a1_185.jpg",
265
+ "jamvatarSmall": "http://static02.thisismyjam.com/i/a7d4c9611ebc4707e7ea8a3f575fe7a1_80.jpg",
266
+ "likes": "http://api.thisismyjam.com/1/jams/17x5mdn/likes.json",
267
+ "likesCount": 19,
268
+ "playCount": 97,
269
+ "title": "Six",
270
+ "via": "youtube",
271
+ "viaUrl": "http://www.youtube.com/watch?v=B5tq1fXTxhQ"
272
+ },
273
+ {
274
+ "artist": "The Velvet Underground",
275
+ "caption": "Pick a song that you often feel like.",
276
+ "creationDate": "Tue, 17 Apr 2012 09:05:56 +0000",
277
+ "current": true,
278
+ "endDate": "Tue, 24 Apr 2012 09:05:56 +0000",
279
+ "from": "MoustachePants",
280
+ "id": "17vqzlt",
281
+ "jamvatarLarge": "http://static02.thisismyjam.com/i/c96fbe46125596556186135c9ae60d89_395.jpg",
282
+ "jamvatarMedium": "http://static01.thisismyjam.com/i/c96fbe46125596556186135c9ae60d89_185.jpg",
283
+ "jamvatarSmall": "http://static03.thisismyjam.com/i/c96fbe46125596556186135c9ae60d89_80.jpg",
284
+ "likes": "http://api.thisismyjam.com/1/jams/17vqzlt/likes.json",
285
+ "likesCount": 13,
286
+ "playCount": 20,
287
+ "title": "Candy Says",
288
+ "via": "youtube",
289
+ "viaUrl": "http://www.youtube.com/watch?v=CEVyf6y_-Y4"
290
+ },
291
+ {
292
+ "artist": "Led Zeppelin",
293
+ "caption": "",
294
+ "creationDate": "Tue, 17 Apr 2012 07:42:56 +0000",
295
+ "current": true,
296
+ "endDate": "Tue, 24 Apr 2012 07:42:56 +0000",
297
+ "from": "edokoa",
298
+ "id": "17uoxal",
299
+ "jamvatarLarge": "http://static01.thisismyjam.com/i/d58df6c4b606a008d40d871fb2dba7d9_395.jpg",
300
+ "jamvatarMedium": "http://static02.thisismyjam.com/i/d58df6c4b606a008d40d871fb2dba7d9_185.jpg",
301
+ "jamvatarSmall": "http://static01.thisismyjam.com/i/d58df6c4b606a008d40d871fb2dba7d9_80.jpg",
302
+ "likes": "http://api.thisismyjam.com/1/jams/17uoxal/likes.json",
303
+ "likesCount": 19,
304
+ "playCount": 34,
305
+ "title": "Dazed and Confused",
306
+ "via": "youtube",
307
+ "viaUrl": "http://www.youtube.com/watch?v=b5Xf0N9Juko"
308
+ },
309
+ {
310
+ "artist": "David Bowie",
311
+ "caption": "This is Andy WaRRRhall, take onnnneeeee....",
312
+ "creationDate": "Tue, 17 Apr 2012 01:28:02 +0000",
313
+ "current": true,
314
+ "endDate": "Tue, 24 Apr 2012 01:28:02 +0000",
315
+ "from": "wilwheaton",
316
+ "id": "17rhnkr",
317
+ "jamvatarLarge": "http://static01.thisismyjam.com/i/c645355dfc1fa5782d622397b0093409_395.jpg",
318
+ "jamvatarMedium": "http://static04.thisismyjam.com/i/c645355dfc1fa5782d622397b0093409_185.jpg",
319
+ "jamvatarSmall": "http://static01.thisismyjam.com/i/c645355dfc1fa5782d622397b0093409_80.jpg",
320
+ "likes": "http://api.thisismyjam.com/1/jams/17rhnkr/likes.json",
321
+ "likesCount": 83,
322
+ "playCount": 949,
323
+ "title": "Andy Warhol",
324
+ "via": "youtube",
325
+ "viaUrl": "http://www.youtube.com/watch?v=P4sANPkk3ys"
326
+ },
327
+ {
328
+ "artist": "Barbara George",
329
+ "caption": "In December 1961 this track hit #3 on the charts, her one and only hit, which she wrote herself. (New Orleans)",
330
+ "creationDate": "Tue, 17 Apr 2012 20:07:41 +0000",
331
+ "current": true,
332
+ "endDate": "Tue, 24 Apr 2012 20:07:41 +0000",
333
+ "from": "helloerica",
334
+ "id": "187ijk0",
335
+ "jamvatarLarge": "http://static04.thisismyjam.com/i/7fe6b7203182f324f6394baad590fcdb_395.jpg",
336
+ "jamvatarMedium": "http://static02.thisismyjam.com/i/7fe6b7203182f324f6394baad590fcdb_185.jpg",
337
+ "jamvatarSmall": "http://static01.thisismyjam.com/i/7fe6b7203182f324f6394baad590fcdb_80.jpg",
338
+ "likes": "http://api.thisismyjam.com/1/jams/187ijk0/likes.json",
339
+ "likesCount": 30,
340
+ "playCount": 232,
341
+ "title": "I Know (You Don't Love Me No More)",
342
+ "via": "youtube",
343
+ "viaUrl": "http://www.youtube.com/watch?v=y9EIFmNyptE"
344
+ },
345
+ {
346
+ "artist": "Fleetwood Mac",
347
+ "caption": "Mega Tune!",
348
+ "creationDate": "Wed, 18 Apr 2012 10:03:35 +0000",
349
+ "current": true,
350
+ "endDate": "Wed, 25 Apr 2012 10:03:35 +0000",
351
+ "from": "edclarke",
352
+ "id": "18gmksr",
353
+ "jamvatarLarge": "http://static02.thisismyjam.com/i/55e9ae6c82929e5a3e1d43776d334b0d_395.jpg",
354
+ "jamvatarMedium": "http://static01.thisismyjam.com/i/55e9ae6c82929e5a3e1d43776d334b0d_185.jpg",
355
+ "jamvatarSmall": "http://static02.thisismyjam.com/i/55e9ae6c82929e5a3e1d43776d334b0d_80.jpg",
356
+ "likes": "http://api.thisismyjam.com/1/jams/18gmksr/likes.json",
357
+ "likesCount": 24,
358
+ "playCount": 47,
359
+ "title": "Go Your Own Way",
360
+ "via": "youtube",
361
+ "viaUrl": "http://www.youtube.com/watch?v=6ul-cZyuYq4"
362
+ }
363
+ ]
364
+ }