filesystem.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "uuid":"folder1",
  3. "name":"root",
  4. "type":"folder",
  5. "children":[
  6. {
  7. "uuid":"docs",
  8. "name":"docs",
  9. "type":"folder",
  10. "children":[
  11. {
  12. "uuid":"multimedia",
  13. "name":"multimedia",
  14. "type":"folder",
  15. "children":[
  16. {
  17. "name":"movie.mov",
  18. "uuid":"movie.mov",
  19. "type":"video",
  20. "extra":false
  21. },
  22. {
  23. "name":"icon.ico",
  24. "uuid":"icon.ico",
  25. "type":"image",
  26. "extra":false
  27. },
  28. {
  29. "name":"picture.png",
  30. "uuid":"picture.png",
  31. "type":"image",
  32. "extra":false
  33. }
  34. ]
  35. },
  36. {
  37. "name":"readme.txt",
  38. "uuid":"readme.txt",
  39. "type":"text",
  40. "extra":false
  41. },
  42. {
  43. "name":"slideshow.mov",
  44. "uuid":"slideshow.mov",
  45. "type":"video",
  46. "extra":false
  47. },
  48. {
  49. "name":"slideshow.ppt",
  50. "uuid":"slideshow.ppt",
  51. "type":"powerpoint",
  52. "extra":false
  53. },
  54. {
  55. "name":"slideshow.docx",
  56. "uuid":"slideshow.docx",
  57. "type":"word",
  58. "extra":false
  59. }
  60. ]
  61. },
  62. {
  63. "uuid":"structural",
  64. "name":"structural",
  65. "type":"folder",
  66. "children":[
  67. {
  68. "name":"structure.json",
  69. "uuid":"structure.json",
  70. "type":"code",
  71. "extra":"json"
  72. },
  73. {
  74. "name":"structure.xml",
  75. "uuid":"structure.xml",
  76. "type":"code",
  77. "extra":"xml"
  78. },
  79. {
  80. "name":"structure.csv",
  81. "uuid":"structure.csv",
  82. "type":"code",
  83. "extra":"csv"
  84. }
  85. ]
  86. }
  87. ]
  88. }