Guest User

Untitled

a guest
Jul 19th, 2018
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.46 KB | None | 0 0
  1. {
  2.     "title": "OuterFolder",
  3.     "files": [
  4.         { "title": "FileA.ext" }, // => /OuterFolder/FileA.ext
  5.         { "title": "FileB.ext" }  // => /OuterFolder/FileB.ext
  6.     ],
  7.     "children": [
  8.         {
  9.             "title", "FolderB",
  10.             "files": [
  11.                 { "title": "FileA.ext" }, // => /OuterFolder/InnerFolder/FileA.ext
  12.                 { "title": "FileB.ext" }  // => /OuterFolder/InnerFolder/FileB.ext
  13.             ],
  14.         }
  15.     ]
  16. }
Advertisement
Add Comment
Please, Sign In to add comment