Advertisement
Ham62

XML vs JSON

Jul 4th, 2019
462
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <subsonic-response xmlns="http://subsonic.org/restapi" status="ok" version="1.14.0">
  3. <randomSongs>
  4. <song id="3540" parent="3512" isDir="false" title="Medusa" album="Spreading The Disease" artist="Anthrax" track="8" year="1985" genre="Thrash Metal" coverArt="3512" size="11497193" contentType="audio/mpeg" suffix="mp3" duration="284" bitRate="320" path="A/Anthrax/Spreading The Disease (1985)/08 - Medusa.mp3" playCount="17" created="2013-09-06T08:44:54.907Z" albumId="199" artistId="14" type="music"/>
  5. <song id="7119" parent="7102" isDir="false" title="A Girl I Knew" album="Steppenwolf" artist="Steppenwolf" track="9" year="1968" genre="Hard Rock" coverArt="7102" size="6541536" contentType="audio/mpeg" suffix="mp3" duration="162" bitRate="320" path="S/Steppenwolf/Steppenwolf (1968)/09. A Girl I Knew.mp3" playCount="0" created="2014-05-14T06:34:45.186Z" albumId="309" artistId="220" type="music"/>
  6. </randomSongs>
  7. </subsonic-response>
  8.  
  9.  
  10. {
  11. "subsonic-response" : {
  12. "status" : "ok",
  13. "version" : "1.14.0",
  14. "randomSongs" : {
  15. "song" : [ {
  16. "id" : "4659",
  17. "parent" : "4653",
  18. "isDir" : false,
  19. "title" : "The Persecuted Won't Forget",
  20. "album" : "The Formation Of Damnation",
  21. "artist" : "Testament",
  22. "track" : 6,
  23. "year" : 2008,
  24. "genre" : "Metal",
  25. "coverArt" : "4653",
  26. "size" : 61929233,
  27. "contentType" : "audio/flac",
  28. "suffix" : "flac",
  29. "transcodedContentType" : "audio/mpeg",
  30. "transcodedSuffix" : "mp3",
  31. "duration" : 349,
  32. "bitRate" : 1414,
  33. "path" : "T/Testament/The Formation Of Damnation (2008) JAP Edition/06 Testament - The Persecuted Won't Forget.flac",
  34. "playCount" : 0,
  35. "created" : "2018-02-12T04:57:42.302Z",
  36. "albumId" : "166",
  37. "artistId" : "153",
  38. "type" : "music"
  39. }, {
  40. "id" : "7166",
  41. "parent" : "7164",
  42. "isDir" : false,
  43. "title" : "Hank Is Dead",
  44. "album" : "Murder The Mountains",
  45. "artist" : "Red Fang",
  46. "track" : 3,
  47. "year" : 2011,
  48. "genre" : "Hard Rock / Stoner Metal",
  49. "coverArt" : "7164",
  50. "size" : 6500462,
  51. "contentType" : "audio/mpeg",
  52. "suffix" : "mp3",
  53. "duration" : 156,
  54. "bitRate" : 320,
  55. "path" : "R/Red Fang/Murder The Mountains (2011)/03. Hank Is Dead.mp3",
  56. "playCount" : 0,
  57. "created" : "2014-07-22T00:11:26.993Z",
  58. "albumId" : "294",
  59. "artistId" : "211",
  60. "type" : "music"
  61. } ]
  62. }
  63. }
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement