sinicum 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. checksums.yaml +7 -0
  2. data/.cane +19 -0
  3. data/.gitignore +14 -0
  4. data/.rubocop.yml +30 -0
  5. data/.travis.yml +14 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE +24 -0
  8. data/README.md +327 -0
  9. data/Rakefile +37 -0
  10. data/app/assets/javascripts/sinicum/magnolia_client.js.coffee +233 -0
  11. data/app/controllers/sinicum/controller_base.rb +173 -0
  12. data/app/controllers/sinicum/controllers/cache_aware.rb +16 -0
  13. data/app/controllers/sinicum/controllers/global_state_cache.rb +83 -0
  14. data/app/helpers/sinicum/helper_utils.rb +152 -0
  15. data/app/helpers/sinicum/mgnl_helper.rb +145 -0
  16. data/app/helpers/sinicum/mgnl_helper5.rb +7 -0
  17. data/app/helpers/sinicum/mgnl_image_helper.rb +26 -0
  18. data/app/helpers/sinicum/taglib_helper5.rb +166 -0
  19. data/gemfiles/Gemfile-3.2 +6 -0
  20. data/gemfiles/Gemfile-4.0 +6 -0
  21. data/lib/generators/sinicum/install_generator.rb +162 -0
  22. data/lib/generators/sinicum/templates/VersionHandler.java +18 -0
  23. data/lib/generators/sinicum/templates/config/default/log4j-development.xml +203 -0
  24. data/lib/generators/sinicum/templates/config/default/log4j.xml +200 -0
  25. data/lib/generators/sinicum/templates/config/default/magnolia-author.properties +63 -0
  26. data/lib/generators/sinicum/templates/config/default/magnolia-public01.properties +63 -0
  27. data/lib/generators/sinicum/templates/config/default/magnolia.properties +63 -0
  28. data/lib/generators/sinicum/templates/config/repo-conf/jackrabbit-bundle-postgres-search-author.xml +73 -0
  29. data/lib/generators/sinicum/templates/config/repo-conf/jackrabbit-bundle-postgres-search-public01.xml +73 -0
  30. data/lib/generators/sinicum/templates/config/repo-conf/jackrabbit-bundle-postgres-search.xml +70 -0
  31. data/lib/generators/sinicum/templates/magnolia/config.modules.myproject.dialogs.xml +1625 -0
  32. data/lib/generators/sinicum/templates/magnolia/config.modules.myproject.templates.xml +247 -0
  33. data/lib/generators/sinicum/templates/module-config.xml +13 -0
  34. data/lib/generators/sinicum/templates/module-pom.xml +67 -0
  35. data/lib/generators/sinicum/templates/project-pom.xml +104 -0
  36. data/lib/generators/sinicum/templates/rails/_article.html.haml +15 -0
  37. data/lib/generators/sinicum/templates/rails/_content.html.haml +2 -0
  38. data/lib/generators/sinicum/templates/rails/_meta.html.haml +9 -0
  39. data/lib/generators/sinicum/templates/rails/application.html.haml +11 -0
  40. data/lib/generators/sinicum/templates/rails/content_controller.rb +5 -0
  41. data/lib/generators/sinicum/templates/rails/imaging.yml +8 -0
  42. data/lib/generators/sinicum/templates/rails/sinicum_server.yml +15 -0
  43. data/lib/sinicum.rb +53 -0
  44. data/lib/sinicum/content/aggregator.rb +173 -0
  45. data/lib/sinicum/content/website_content_resolver.rb +10 -0
  46. data/lib/sinicum/engine.rb +23 -0
  47. data/lib/sinicum/imaging.rb +29 -0
  48. data/lib/sinicum/imaging/config.rb +133 -0
  49. data/lib/sinicum/imaging/converter.rb +81 -0
  50. data/lib/sinicum/imaging/default_converter.rb +20 -0
  51. data/lib/sinicum/imaging/image_size_converter.rb +52 -0
  52. data/lib/sinicum/imaging/imaging.rb +171 -0
  53. data/lib/sinicum/imaging/imaging_file.rb +115 -0
  54. data/lib/sinicum/imaging/imaging_middleware.rb +56 -0
  55. data/lib/sinicum/imaging/max_size_converter.rb +39 -0
  56. data/lib/sinicum/imaging/resize_crop_converter.rb +35 -0
  57. data/lib/sinicum/jcr/api_client.rb +50 -0
  58. data/lib/sinicum/jcr/api_queries.rb +37 -0
  59. data/lib/sinicum/jcr/cache/global_cache.rb +26 -0
  60. data/lib/sinicum/jcr/dam/document.rb +57 -0
  61. data/lib/sinicum/jcr/dam/image.rb +40 -0
  62. data/lib/sinicum/jcr/jcr_configuration.rb +67 -0
  63. data/lib/sinicum/jcr/mgnl4_compatibility.rb +11 -0
  64. data/lib/sinicum/jcr/node.rb +268 -0
  65. data/lib/sinicum/jcr/node_initializer.rb +16 -0
  66. data/lib/sinicum/jcr/node_queries.rb +101 -0
  67. data/lib/sinicum/jcr/query_sanitizer.rb +24 -0
  68. data/lib/sinicum/jcr/type_translator.rb +38 -0
  69. data/lib/sinicum/jcr/type_translators/component_translator.rb +28 -0
  70. data/lib/sinicum/jcr/type_translators/dam_translator.rb +33 -0
  71. data/lib/sinicum/jcr/type_translators/data_translator.rb +31 -0
  72. data/lib/sinicum/jcr/type_translators/default_translator.rb +13 -0
  73. data/lib/sinicum/jcr/type_translators/translator_base.rb +40 -0
  74. data/lib/sinicum/logger.rb +28 -0
  75. data/lib/sinicum/navigation/default_navigation_element.rb +30 -0
  76. data/lib/sinicum/navigation/navigation_element.rb +39 -0
  77. data/lib/sinicum/navigation/navigation_element_list.rb +33 -0
  78. data/lib/sinicum/navigation/navigation_handler.rb +95 -0
  79. data/lib/sinicum/navigation/navigation_status.rb +27 -0
  80. data/lib/sinicum/templating/area_handler.rb +33 -0
  81. data/lib/sinicum/templating/dialog_resolver.rb +26 -0
  82. data/lib/sinicum/templating/templating_utils.rb +24 -0
  83. data/lib/sinicum/util.rb +12 -0
  84. data/lib/sinicum/version.rb +3 -0
  85. data/script/cibuild +31 -0
  86. data/sinicum.gemspec +29 -0
  87. data/spec/controllers/sinicum/controller_base_spec.rb +53 -0
  88. data/spec/controllers/sinicum/controllers/global_state_cache_spec.rb +35 -0
  89. data/spec/dummy/REVISION +1 -0
  90. data/spec/dummy/Rakefile +7 -0
  91. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  92. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  93. data/spec/dummy/app/views/application/index.html.erb +1 -0
  94. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  95. data/spec/dummy/app/views/layouts/layout_name.html.erb +0 -0
  96. data/spec/dummy/app/views/layouts/my-module/test.html.erb +0 -0
  97. data/spec/dummy/app/views/layouts/my_module/test.html.erb +0 -0
  98. data/spec/dummy/config.ru +4 -0
  99. data/spec/dummy/config/application.rb +45 -0
  100. data/spec/dummy/config/boot.rb +10 -0
  101. data/spec/dummy/config/database.yml +22 -0
  102. data/spec/dummy/config/environment.rb +5 -0
  103. data/spec/dummy/config/environments/development.rb +24 -0
  104. data/spec/dummy/config/environments/production.rb +51 -0
  105. data/spec/dummy/config/environments/test.rb +34 -0
  106. data/spec/dummy/config/imaging.yml +7 -0
  107. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  108. data/spec/dummy/config/initializers/inflections.rb +10 -0
  109. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  110. data/spec/dummy/config/initializers/secret_token.rb +11 -0
  111. data/spec/dummy/config/initializers/session_store.rb +8 -0
  112. data/spec/dummy/config/locales/en.yml +5 -0
  113. data/spec/dummy/config/routes.rb +59 -0
  114. data/spec/dummy/config/sinicum_server.yml +13 -0
  115. data/spec/dummy/public/404.html +26 -0
  116. data/spec/dummy/public/422.html +26 -0
  117. data/spec/dummy/public/500.html +26 -0
  118. data/spec/dummy/public/favicon.ico +0 -0
  119. data/spec/dummy/public/javascripts/application.js +2 -0
  120. data/spec/dummy/public/javascripts/controls.js +965 -0
  121. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  122. data/spec/dummy/public/javascripts/effects.js +1123 -0
  123. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  124. data/spec/dummy/public/javascripts/rails.js +191 -0
  125. data/spec/dummy/public/stylesheets/.gitkeep +0 -0
  126. data/spec/dummy/script/rails +6 -0
  127. data/spec/fixtures/api/cache_global.json +3 -0
  128. data/spec/fixtures/api/content_mgnl5.json +22 -0
  129. data/spec/fixtures/api/default_json.json.erb +47 -0
  130. data/spec/fixtures/api/default_json_mgnl5.json.erb +27 -0
  131. data/spec/fixtures/api/file.json +73 -0
  132. data/spec/fixtures/api/file_mgnl5.json +51 -0
  133. data/spec/fixtures/api/homepage.json +1497 -0
  134. data/spec/fixtures/api/homepage_parent.json +483 -0
  135. data/spec/fixtures/api/image.json +73 -0
  136. data/spec/fixtures/api/image_mgnl5.json +50 -0
  137. data/spec/fixtures/api/navigation_children.json +3107 -0
  138. data/spec/fixtures/api/navigation_parents.json +25 -0
  139. data/spec/fixtures/api/product.json +2084 -0
  140. data/spec/fixtures/api/query_result.json +61 -0
  141. data/spec/fixtures/mock_content.rb +6 -0
  142. data/spec/fixtures/mock_image.gif +0 -0
  143. data/spec/helpers/sinicum/helper_utils_spec.rb +55 -0
  144. data/spec/helpers/sinicum/mgnl_helper_spec.rb +315 -0
  145. data/spec/helpers/sinicum/mgnl_image_helper_spec.rb +103 -0
  146. data/spec/sinicum/content/aggregator_spec.rb +91 -0
  147. data/spec/sinicum/content/website_content_resolver_spec.rb +14 -0
  148. data/spec/sinicum/imaging/config_spec.rb +50 -0
  149. data/spec/sinicum/imaging/converter_spec.rb +41 -0
  150. data/spec/sinicum/imaging/image_size_converter_spec.rb +27 -0
  151. data/spec/sinicum/imaging/imaging.yml +15 -0
  152. data/spec/sinicum/imaging/imaging_file_spec.rb +125 -0
  153. data/spec/sinicum/imaging/imaging_middleware_spec.rb +79 -0
  154. data/spec/sinicum/imaging/max_size_converter_spec.rb +52 -0
  155. data/spec/sinicum/imaging/resize_crop_converter_spec.rb +18 -0
  156. data/spec/sinicum/imaging_spec.rb +13 -0
  157. data/spec/sinicum/jcr/api_client_spec.rb +69 -0
  158. data/spec/sinicum/jcr/cache/global_cache_spec.rb +29 -0
  159. data/spec/sinicum/jcr/dam/document_spec.rb +81 -0
  160. data/spec/sinicum/jcr/dam/image_spec.rb +46 -0
  161. data/spec/sinicum/jcr/jcr_configuration_spec.rb +57 -0
  162. data/spec/sinicum/jcr/mgnl4_compatibility_spec.rb +10 -0
  163. data/spec/sinicum/jcr/node_queries_spec.rb +113 -0
  164. data/spec/sinicum/jcr/node_spec.rb +261 -0
  165. data/spec/sinicum/jcr/query_sanitizer_spec.rb +26 -0
  166. data/spec/sinicum/jcr/type_translator_spec.rb +42 -0
  167. data/spec/sinicum/jcr/type_translators/component_translator_spec.rb +71 -0
  168. data/spec/sinicum/jcr/type_translators/data_translator_spec.rb +38 -0
  169. data/spec/sinicum/jcr/type_translators/default_translator_spec.rb +19 -0
  170. data/spec/sinicum/navigation/default_navigation_element_spec.rb +45 -0
  171. data/spec/sinicum/navigation/navigation_handler_spec.rb +71 -0
  172. data/spec/sinicum/templating/dialog_resolver_spec.rb +13 -0
  173. data/spec/sinicum/util_spec.rb +34 -0
  174. data/spec/spec_helper.rb +42 -0
  175. data/spec/support/default_node_reader.rb +40 -0
  176. metadata +434 -0
@@ -0,0 +1,25 @@
1
+ [ {
2
+ "properties" : {
3
+ "title" : "Microphones, Wireless microphones, in-ear monitoring, earphones, headphones",
4
+ "nav_title" : "Homepage"
5
+ },
6
+ "path" : "/en",
7
+ "depth" : 1,
8
+ "uuid" : "745efc13-e7da-4717-9153-10fb6472ca73"
9
+ }, {
10
+ "properties" : {
11
+ "title" : "Products Overview",
12
+ "nav_title" : "products"
13
+ },
14
+ "path" : "/en/products",
15
+ "depth" : 2,
16
+ "uuid" : "502ea8d3-70d0-400b-8468-affd4ebf38d4"
17
+ }, {
18
+ "properties" : {
19
+ "title" : "Microphones for almost every application",
20
+ "nav_title" : "Microphones"
21
+ },
22
+ "path" : "/en/products/microphones",
23
+ "depth" : 3,
24
+ "uuid" : "22a7f64e-a4c6-4660-8932-8127717c706b"
25
+ } ]
@@ -0,0 +1,2084 @@
1
+ [ {
2
+ "meta" : {
3
+ "path" : "/products/microphones/en/pg/PG27",
4
+ "depth" : 5,
5
+ "name" : "PG27",
6
+ "superTypes" : [ "dataBase", "dataItem", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
7
+ "workspace" : "data",
8
+ "mixinNodeTypes" : [ "mix:lockable" ],
9
+ "jcr:created" : "2009-11-04T00:47:57.904+01:00",
10
+ "jcr:uuid" : "aa71a0f0-8bc5-4836-936c-7bcb7c017fcb",
11
+ "jcr:primaryType" : "microphone"
12
+ },
13
+ "properties" : {
14
+ "name" : "PG27",
15
+ "detailed_name" : "PG27 Side Address Condenser Microphone",
16
+ "custom_description_de" : "Das PG27 ist ein Großmembran-Kondensatormikrofon für Einsteiger. Es gibt eine große Bandbreite an unterschiedlichen Klangquellen detailgetreu wieder",
17
+ "long_description" : "<h2>What is the PG27 best suited to?</h2> <p>The PG27 would be an ideal choice for an amateur/semi-pro musician looking for a versatile mic that can be used for both vocals and instruments in a home recording studio.</p> <h2>What are the characteristics of the PG27?</h2> <p>It has a large diaphragm capsule which provides wide dynamic range for clear highs and strong lows, along with a flat frequency response that allows you to naturally reproduce the sound you are recording. The high SPL handling lets the PG27 withstand the volume associated with raucous sources such as amplifiers and the -20dB switchable attenuator gives this mic even more versatility.&nbsp;</p> <p>&nbsp;</p> <p><strong>The PG27 is also available with a USB connection &ndash; see <a href=\"/products/microphones/pg27usb\">PG27USB</a></strong></p>",
18
+ "sensitivity_dbvpa" : "-41",
19
+ "custom_description" : "The PG27 side-address condenser microphone has with a flat frequency response for natural reproduction in instrument and vocal recording applications",
20
+ "frequency_response_from" : "20",
21
+ "long_description_de" : "<h2>F&uuml;r welche Anwendungen ist das PG27 das richtige Mikrofon?</h2> <p>Das PG27 ist f&uuml;r eine gro&szlig;e Bandbreite an unterschiedlichen Klangquellen geeignet. Darunter z.B.: Klavier, Blasinstrumente, Gesang, akustische Gitarren und Overheads beim Schlagzeug. Um direkt loslegen zu k&ouml;nnen sind Stativadapter und Mikrofontasche gleich dabei.</p> <h2>Wie klingt das PG27?</h2> <p>Das Gro&szlig;membran-Kondensatormikrofon besitzt einen linearen Frequenzgang. Das hei&szlig;t Klangquellen werden sehr naturgetreu und unverf&auml;lscht wiedergegeben. Es bietet den f&uuml;r Gro&szlig;membraner typischen detailreichen Sound mit klaren H&ouml;hen und satten B&auml;sse.</p> <h2>Was kann das PG27 noch?</h2> <p>Die Nierencharakteristik nimmt nur Schall von vorne auf und vermeidet Nebenger&auml;usche von hinten. Damit vermindert es R&uuml;ckkopplungen. F&uuml;r sehr hohe Schallpegel ist eine schaltbare -20 dB D&auml;mpfung integriert.</p> <h2>Wie bekommst man das Mikrofonsignal deines PG27 auf deinen Mac oder PC?</h2> <p>Wer das PG27 nicht nur im Proberaum oder auf der B&uuml;hne verwenden will kann es mit dem X2u XLR-auf-USB-Interface direkt an seinen Computer anschlie&szlig;en. Mit dem <a href=\"/produkte/mikrofone/pg27usb\">PG27USB</a> ist auch eine USB-Variante speziell f&uuml;r Homerecording verf&uuml;gbar.</p>",
22
+ "custom_title_de" : "PG27 Großmembran-Kondensatormikrofon für Einsteiger",
23
+ "demo_1" : "5e30454f-6409-4601-ad43-33903b34280a",
24
+ "demo_2" : "21f4e2f2-b1a3-4a14-bece-fafdc35cc355",
25
+ "weight" : "438",
26
+ "feature_description_de" : "<ul> <li>Gro&szlig;membran-Kondensatormikrofon mit Nierencharakteristik</li> <li>Linearer Frequenzgang f&uuml;r originalgetreue Wiedergabe mit klaren H&ouml;hen und satten B&auml;ssen</li> <li>Geeignet f&uuml;r Instrumenten- und Gesangsabnahmen</li> <li>Schaltbare -20 dB D&auml;mpfung f&uuml;r sehr hohe Schallpegel<br /> &nbsp;</li> </ul>",
27
+ "price_de" : "171,36",
28
+ "product_category" : "Home_PC_recording",
29
+ "url_path_de" : "pg27",
30
+ "image_cols_2" : "fa644889-9d5a-4dfa-8346-2abdba839744",
31
+ "image_cols_1" : "1962f5bf-2af8-4643-9785-ef4923f19e30",
32
+ "url_path" : "pg27",
33
+ "main_image" : "39b1f2b7-b368-4d22-bc46-c00a3fb6a9cb",
34
+ "ad_image" : "2689afd3-1b28-4456-a1b1-edeeb25db68f",
35
+ "price" : "161.00",
36
+ "setcard_description_de" : "Preisgünstiges Großmembran-Kondensatormikrofon für Einsteiger. Mit linearem Frequenzgang geeignet für verschiedenste Klangquellen.",
37
+ "hide_specs_tab" : "false",
38
+ "custom_title" : "PG27 Large Diaphragm Condenser Microphone",
39
+ "ad_manual_link" : "http://www.shuresalespoint.com/Mic_Lab/asia/",
40
+ "product_series" : "PG",
41
+ "in_the_box" : "<ul> <li>Padded Zipper Pouch</li> <li>Stand Adapter</li> </ul> <p>&nbsp;</p>",
42
+ "pro_audio_equipment" : "false",
43
+ "ad_manual_height" : "300",
44
+ "name_de" : "PG27",
45
+ "feature_description" : "<ul> <li>Large diaphragm capsule provides wide dynamic range for clear highs and strong lows</li> <li>Flat, neutral frequency response for natural reproduction of sound sources</li> <li>High SPL handling of acoustic, amplified and vocal sound sources</li> <li>-20dB switchable attenuator for additional SPL versatility</li> <li>Includes a stand adapter and a zippered pouch</li> </ul> <p>&nbsp;</p>",
46
+ "detailed_name_de" : "PG27 Großmembran-Kondensatormikrofon für Einsteiger",
47
+ "setcard_description" : "The PG27 side-address cardioid condenser microphone was designed with a flat frequency response for natural reproduction in instrument and vocal recording applications.",
48
+ "frequency_response_to" : "20",
49
+ "switchable_low_cut" : "no",
50
+ "custom_keywords_de" : "Kondensatormikrofon, Großmembran, Großmembraner",
51
+ "description" : "The PG27 side-address cardioid condenser microphone was designed with a flat frequency response for natural reproduction in instrument and vocal recording applications.",
52
+ "equivalent_selfnoise" : "<p>20 dB (A)</p>",
53
+ "in_the_box_de" : "<ul> <li>1x Gepolsterter Tragebeutel mit Rei&szlig;verschluss</li> <li>1x Stativadapter (A32M)</li> <li>1x 5/8&quot; auf 3/8&quot; Gewindeadapter (Art-Nr.: 31A1856)</li> </ul>",
54
+ "use_videoslider_box" : "false",
55
+ "demo_3" : "40641553-df6b-4569-a77c-51e3ab91f8a7",
56
+ "review_1_de" : "<p><b><br /> </b></p>",
57
+ "frequency_response_curve" : "53283445-1b7d-4c97-b7f5-2fa11a3f7955",
58
+ "itemtype" : "microphone",
59
+ "description_de" : "Das PG27 ist ein preisgünstiges Großmembran-Kondensatormikrofon für Einsteiger. Es eignet sich für eine große Bandbreite an unterschiedlichen Klangquellen und verfügt über eine Nierencharakteristik. Stativadapter und Mikrotasche sind gleich mit dabei.",
60
+ "sound_pressure" : "<ul> <li>Pad Off: 134 dB</li> <li>Pad On: 154 dB</li> </ul>",
61
+ "sensitivity_mvpa" : "8.9",
62
+ "custom_keywords" : "Condenser Mocrophone, Large Diaphragm, Large Diaphragm Condenser Microphone",
63
+ "transducer_type" : "condense"
64
+ },
65
+ "nodes" : {
66
+ "MetaData" : {
67
+ "meta" : {
68
+ "path" : "/products/microphones/en/pg/PG27/MetaData",
69
+ "depth" : 6,
70
+ "name" : "MetaData",
71
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
72
+ "workspace" : "data",
73
+ "mixinNodeTypes" : [ ],
74
+ "jcr:created" : "2009-11-04T00:47:57.904+01:00",
75
+ "jcr:uuid" : "cfd56fe7-3f90-4914-abd8-69a5726622f9",
76
+ "jcr:primaryType" : "mgnl:metaData"
77
+ },
78
+ "properties" : {
79
+ "mgnl:activatorid" : "superuser",
80
+ "mgnl:authorid" : "superuser",
81
+ "mgnl:lastaction" : "2012-09-21T12:26:57.572+08:00",
82
+ "mgnl:creationdate" : "2009-07-09T11:24:15.129+02:00",
83
+ "mgnl:template" : "",
84
+ "mgnl:activated" : true,
85
+ "mgnl:lastmodified" : "2012-09-21T12:24:25.603+08:00"
86
+ },
87
+ "nodes" : { }
88
+ },
89
+ "long_description_files" : {
90
+ "meta" : {
91
+ "path" : "/products/microphones/en/pg/PG27/long_description_files",
92
+ "depth" : 6,
93
+ "name" : "long_description_files",
94
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
95
+ "workspace" : "data",
96
+ "mixinNodeTypes" : [ "mix:lockable" ],
97
+ "jcr:created" : "2009-11-04T00:47:57.905+01:00",
98
+ "jcr:uuid" : "6e93aa67-1a74-4e66-8984-28dc1f9d51af",
99
+ "jcr:primaryType" : "mgnl:contentNode"
100
+ },
101
+ "properties" : { },
102
+ "nodes" : {
103
+ "MetaData" : {
104
+ "meta" : {
105
+ "path" : "/products/microphones/en/pg/PG27/long_description_files/MetaData",
106
+ "depth" : 7,
107
+ "name" : "MetaData",
108
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
109
+ "workspace" : "data",
110
+ "mixinNodeTypes" : [ ],
111
+ "jcr:created" : "2009-11-04T00:47:57.905+01:00",
112
+ "jcr:uuid" : "76a0d448-9f7d-4979-8a9c-7e44cfee0cfe",
113
+ "jcr:primaryType" : "mgnl:metaData"
114
+ },
115
+ "properties" : {
116
+ "mgnl:activatorid" : "superuser",
117
+ "mgnl:creationdate" : "2009-07-09T11:24:15.130+02:00",
118
+ "mgnl:lastaction" : "2012-04-19T20:02:08.437+08:00",
119
+ "mgnl:activated" : true
120
+ },
121
+ "nodes" : { }
122
+ }
123
+ }
124
+ },
125
+ "long_description_de_files" : {
126
+ "meta" : {
127
+ "path" : "/products/microphones/en/pg/PG27/long_description_de_files",
128
+ "depth" : 6,
129
+ "name" : "long_description_de_files",
130
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
131
+ "workspace" : "data",
132
+ "mixinNodeTypes" : [ "mix:lockable" ],
133
+ "jcr:created" : "2009-11-04T00:47:57.906+01:00",
134
+ "jcr:uuid" : "43e9fd60-7128-4a6f-b8ba-f05d9a5de8d8",
135
+ "jcr:primaryType" : "mgnl:contentNode"
136
+ },
137
+ "properties" : { },
138
+ "nodes" : {
139
+ "MetaData" : {
140
+ "meta" : {
141
+ "path" : "/products/microphones/en/pg/PG27/long_description_de_files/MetaData",
142
+ "depth" : 7,
143
+ "name" : "MetaData",
144
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
145
+ "workspace" : "data",
146
+ "mixinNodeTypes" : [ ],
147
+ "jcr:created" : "2009-11-04T00:47:57.906+01:00",
148
+ "jcr:uuid" : "5c87cafe-c196-40e9-a234-5a065a3fe286",
149
+ "jcr:primaryType" : "mgnl:metaData"
150
+ },
151
+ "properties" : {
152
+ "mgnl:activatorid" : "superuser",
153
+ "mgnl:creationdate" : "2009-07-09T11:24:15.131+02:00",
154
+ "mgnl:lastaction" : "2012-04-19T20:02:08.236+08:00",
155
+ "mgnl:activated" : true
156
+ },
157
+ "nodes" : { }
158
+ }
159
+ }
160
+ },
161
+ "feature_description_files" : {
162
+ "meta" : {
163
+ "path" : "/products/microphones/en/pg/PG27/feature_description_files",
164
+ "depth" : 6,
165
+ "name" : "feature_description_files",
166
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
167
+ "workspace" : "data",
168
+ "mixinNodeTypes" : [ "mix:lockable" ],
169
+ "jcr:created" : "2009-11-04T00:47:57.906+01:00",
170
+ "jcr:uuid" : "1dbf15e3-576c-46c0-a1f8-754cc5b9c9d4",
171
+ "jcr:primaryType" : "mgnl:contentNode"
172
+ },
173
+ "properties" : { },
174
+ "nodes" : {
175
+ "MetaData" : {
176
+ "meta" : {
177
+ "path" : "/products/microphones/en/pg/PG27/feature_description_files/MetaData",
178
+ "depth" : 7,
179
+ "name" : "MetaData",
180
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
181
+ "workspace" : "data",
182
+ "mixinNodeTypes" : [ ],
183
+ "jcr:created" : "2009-11-04T00:47:57.907+01:00",
184
+ "jcr:uuid" : "e2072ca6-2a06-4fcd-af01-eda9ba0b4f24",
185
+ "jcr:primaryType" : "mgnl:metaData"
186
+ },
187
+ "properties" : {
188
+ "mgnl:activatorid" : "superuser",
189
+ "mgnl:creationdate" : "2009-07-09T11:24:15.132+02:00",
190
+ "mgnl:lastaction" : "2012-04-19T20:02:07.964+08:00",
191
+ "mgnl:activated" : true
192
+ },
193
+ "nodes" : { }
194
+ }
195
+ }
196
+ },
197
+ "feature_description_de_files" : {
198
+ "meta" : {
199
+ "path" : "/products/microphones/en/pg/PG27/feature_description_de_files",
200
+ "depth" : 6,
201
+ "name" : "feature_description_de_files",
202
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
203
+ "workspace" : "data",
204
+ "mixinNodeTypes" : [ "mix:lockable" ],
205
+ "jcr:created" : "2009-11-04T00:47:57.907+01:00",
206
+ "jcr:uuid" : "73e3a66e-e31b-4264-9af3-ff5277667c86",
207
+ "jcr:primaryType" : "mgnl:contentNode"
208
+ },
209
+ "properties" : { },
210
+ "nodes" : {
211
+ "MetaData" : {
212
+ "meta" : {
213
+ "path" : "/products/microphones/en/pg/PG27/feature_description_de_files/MetaData",
214
+ "depth" : 7,
215
+ "name" : "MetaData",
216
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
217
+ "workspace" : "data",
218
+ "mixinNodeTypes" : [ ],
219
+ "jcr:created" : "2009-11-04T00:47:57.907+01:00",
220
+ "jcr:uuid" : "aef1037e-32a9-4bd5-bfc2-3b1941dab01f",
221
+ "jcr:primaryType" : "mgnl:metaData"
222
+ },
223
+ "properties" : {
224
+ "mgnl:activatorid" : "superuser",
225
+ "mgnl:creationdate" : "2009-07-09T11:24:15.133+02:00",
226
+ "mgnl:lastaction" : "2012-04-19T20:02:07.772+08:00",
227
+ "mgnl:activated" : true
228
+ },
229
+ "nodes" : { }
230
+ }
231
+ }
232
+ },
233
+ "in_the_box_files" : {
234
+ "meta" : {
235
+ "path" : "/products/microphones/en/pg/PG27/in_the_box_files",
236
+ "depth" : 6,
237
+ "name" : "in_the_box_files",
238
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
239
+ "workspace" : "data",
240
+ "mixinNodeTypes" : [ "mix:lockable" ],
241
+ "jcr:created" : "2009-11-04T00:47:57.908+01:00",
242
+ "jcr:uuid" : "866c2262-e14e-4978-a6d4-e532aee8444b",
243
+ "jcr:primaryType" : "mgnl:contentNode"
244
+ },
245
+ "properties" : { },
246
+ "nodes" : {
247
+ "MetaData" : {
248
+ "meta" : {
249
+ "path" : "/products/microphones/en/pg/PG27/in_the_box_files/MetaData",
250
+ "depth" : 7,
251
+ "name" : "MetaData",
252
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
253
+ "workspace" : "data",
254
+ "mixinNodeTypes" : [ ],
255
+ "jcr:created" : "2009-11-04T00:47:57.908+01:00",
256
+ "jcr:uuid" : "491ff625-557f-43ee-86c7-3eb70835b190",
257
+ "jcr:primaryType" : "mgnl:metaData"
258
+ },
259
+ "properties" : {
260
+ "mgnl:activatorid" : "superuser",
261
+ "mgnl:creationdate" : "2009-07-09T11:24:15.134+02:00",
262
+ "mgnl:lastaction" : "2012-04-19T20:02:07.619+08:00",
263
+ "mgnl:activated" : true
264
+ },
265
+ "nodes" : { }
266
+ }
267
+ }
268
+ },
269
+ "in_the_box_de_files" : {
270
+ "meta" : {
271
+ "path" : "/products/microphones/en/pg/PG27/in_the_box_de_files",
272
+ "depth" : 6,
273
+ "name" : "in_the_box_de_files",
274
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
275
+ "workspace" : "data",
276
+ "mixinNodeTypes" : [ "mix:lockable" ],
277
+ "jcr:created" : "2009-11-04T00:47:57.908+01:00",
278
+ "jcr:uuid" : "cfadf5ff-f032-4ae9-ad48-d894ebe67c03",
279
+ "jcr:primaryType" : "mgnl:contentNode"
280
+ },
281
+ "properties" : { },
282
+ "nodes" : {
283
+ "MetaData" : {
284
+ "meta" : {
285
+ "path" : "/products/microphones/en/pg/PG27/in_the_box_de_files/MetaData",
286
+ "depth" : 7,
287
+ "name" : "MetaData",
288
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
289
+ "workspace" : "data",
290
+ "mixinNodeTypes" : [ ],
291
+ "jcr:created" : "2009-11-04T00:47:57.908+01:00",
292
+ "jcr:uuid" : "48e6326a-1298-4aa3-b5c3-30701389fe8e",
293
+ "jcr:primaryType" : "mgnl:metaData"
294
+ },
295
+ "properties" : {
296
+ "mgnl:activatorid" : "superuser",
297
+ "mgnl:creationdate" : "2009-07-09T11:24:15.135+02:00",
298
+ "mgnl:lastaction" : "2012-04-19T20:02:07.355+08:00",
299
+ "mgnl:activated" : true
300
+ },
301
+ "nodes" : { }
302
+ }
303
+ }
304
+ },
305
+ "review_files" : {
306
+ "meta" : {
307
+ "path" : "/products/microphones/en/pg/PG27/review_files",
308
+ "depth" : 6,
309
+ "name" : "review_files",
310
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
311
+ "workspace" : "data",
312
+ "mixinNodeTypes" : [ "mix:lockable" ],
313
+ "jcr:created" : "2009-11-04T00:47:57.909+01:00",
314
+ "jcr:uuid" : "75eef620-a01f-4f4a-8b17-8e3110e96b12",
315
+ "jcr:primaryType" : "mgnl:contentNode"
316
+ },
317
+ "properties" : { },
318
+ "nodes" : {
319
+ "MetaData" : {
320
+ "meta" : {
321
+ "path" : "/products/microphones/en/pg/PG27/review_files/MetaData",
322
+ "depth" : 7,
323
+ "name" : "MetaData",
324
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
325
+ "workspace" : "data",
326
+ "mixinNodeTypes" : [ ],
327
+ "jcr:created" : "2009-11-04T00:47:57.909+01:00",
328
+ "jcr:uuid" : "477b8621-d7a1-4494-8ccb-9404bb7c1a9d",
329
+ "jcr:primaryType" : "mgnl:metaData"
330
+ },
331
+ "properties" : {
332
+ "mgnl:activatorid" : "superuser",
333
+ "mgnl:creationdate" : "2009-07-09T11:24:15.177+02:00",
334
+ "mgnl:lastaction" : "2012-04-19T20:02:07.102+08:00",
335
+ "mgnl:activated" : true
336
+ },
337
+ "nodes" : { }
338
+ }
339
+ }
340
+ },
341
+ "review_de_files" : {
342
+ "meta" : {
343
+ "path" : "/products/microphones/en/pg/PG27/review_de_files",
344
+ "depth" : 6,
345
+ "name" : "review_de_files",
346
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
347
+ "workspace" : "data",
348
+ "mixinNodeTypes" : [ "mix:lockable" ],
349
+ "jcr:created" : "2009-11-04T00:47:57.910+01:00",
350
+ "jcr:uuid" : "9f56eed3-21e2-4d5f-8411-7a6b76c3d2ad",
351
+ "jcr:primaryType" : "mgnl:contentNode"
352
+ },
353
+ "properties" : { },
354
+ "nodes" : {
355
+ "MetaData" : {
356
+ "meta" : {
357
+ "path" : "/products/microphones/en/pg/PG27/review_de_files/MetaData",
358
+ "depth" : 7,
359
+ "name" : "MetaData",
360
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
361
+ "workspace" : "data",
362
+ "mixinNodeTypes" : [ ],
363
+ "jcr:created" : "2009-11-04T00:47:57.910+01:00",
364
+ "jcr:uuid" : "4d62c3ef-2613-49c3-863c-51715570ee7d",
365
+ "jcr:primaryType" : "mgnl:metaData"
366
+ },
367
+ "properties" : {
368
+ "mgnl:activatorid" : "superuser",
369
+ "mgnl:creationdate" : "2009-07-09T11:24:15.177+02:00",
370
+ "mgnl:lastaction" : "2012-04-19T20:02:06.854+08:00",
371
+ "mgnl:activated" : true
372
+ },
373
+ "nodes" : { }
374
+ }
375
+ }
376
+ },
377
+ "equivalent_selfnoise_files" : {
378
+ "meta" : {
379
+ "path" : "/products/microphones/en/pg/PG27/equivalent_selfnoise_files",
380
+ "depth" : 6,
381
+ "name" : "equivalent_selfnoise_files",
382
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
383
+ "workspace" : "data",
384
+ "mixinNodeTypes" : [ "mix:lockable" ],
385
+ "jcr:created" : "2009-11-04T00:47:57.910+01:00",
386
+ "jcr:uuid" : "71b6280a-46d6-44cf-aeb1-89598af74d85",
387
+ "jcr:primaryType" : "mgnl:contentNode"
388
+ },
389
+ "properties" : { },
390
+ "nodes" : {
391
+ "MetaData" : {
392
+ "meta" : {
393
+ "path" : "/products/microphones/en/pg/PG27/equivalent_selfnoise_files/MetaData",
394
+ "depth" : 7,
395
+ "name" : "MetaData",
396
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
397
+ "workspace" : "data",
398
+ "mixinNodeTypes" : [ ],
399
+ "jcr:created" : "2009-11-04T00:47:57.910+01:00",
400
+ "jcr:uuid" : "31afc845-2859-4caa-97c0-29e9ec12ea34",
401
+ "jcr:primaryType" : "mgnl:metaData"
402
+ },
403
+ "properties" : {
404
+ "mgnl:activatorid" : "superuser",
405
+ "mgnl:creationdate" : "2009-10-27T12:22:34.151+01:00",
406
+ "mgnl:lastaction" : "2012-04-19T20:02:06.709+08:00",
407
+ "mgnl:activated" : true
408
+ },
409
+ "nodes" : { }
410
+ }
411
+ }
412
+ },
413
+ "sound_pressure_files" : {
414
+ "meta" : {
415
+ "path" : "/products/microphones/en/pg/PG27/sound_pressure_files",
416
+ "depth" : 6,
417
+ "name" : "sound_pressure_files",
418
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
419
+ "workspace" : "data",
420
+ "mixinNodeTypes" : [ "mix:lockable" ],
421
+ "jcr:created" : "2009-11-04T00:47:57.911+01:00",
422
+ "jcr:uuid" : "e21c01cf-ee29-41d5-b9a2-e592d5b62777",
423
+ "jcr:primaryType" : "mgnl:contentNode"
424
+ },
425
+ "properties" : { },
426
+ "nodes" : {
427
+ "MetaData" : {
428
+ "meta" : {
429
+ "path" : "/products/microphones/en/pg/PG27/sound_pressure_files/MetaData",
430
+ "depth" : 7,
431
+ "name" : "MetaData",
432
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
433
+ "workspace" : "data",
434
+ "mixinNodeTypes" : [ ],
435
+ "jcr:created" : "2009-11-04T00:47:57.911+01:00",
436
+ "jcr:uuid" : "9986c9c6-95fc-449c-9a86-a05d89712914",
437
+ "jcr:primaryType" : "mgnl:metaData"
438
+ },
439
+ "properties" : {
440
+ "mgnl:activatorid" : "superuser",
441
+ "mgnl:creationdate" : "2009-10-27T12:22:34.152+01:00",
442
+ "mgnl:lastaction" : "2012-04-19T20:02:06.505+08:00",
443
+ "mgnl:activated" : true
444
+ },
445
+ "nodes" : { }
446
+ }
447
+ }
448
+ },
449
+ "description_wl_files" : {
450
+ "meta" : {
451
+ "path" : "/products/microphones/en/pg/PG27/description_wl_files",
452
+ "depth" : 6,
453
+ "name" : "description_wl_files",
454
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
455
+ "workspace" : "data",
456
+ "mixinNodeTypes" : [ "mix:lockable" ],
457
+ "jcr:created" : "2009-11-04T00:47:57.912+01:00",
458
+ "jcr:uuid" : "28eeb49b-c08f-43f4-a167-23969623dc02",
459
+ "jcr:primaryType" : "mgnl:contentNode"
460
+ },
461
+ "properties" : { },
462
+ "nodes" : {
463
+ "MetaData" : {
464
+ "meta" : {
465
+ "path" : "/products/microphones/en/pg/PG27/description_wl_files/MetaData",
466
+ "depth" : 7,
467
+ "name" : "MetaData",
468
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
469
+ "workspace" : "data",
470
+ "mixinNodeTypes" : [ ],
471
+ "jcr:created" : "2009-11-04T00:47:57.912+01:00",
472
+ "jcr:uuid" : "4038f370-ecb3-41bb-afe8-ea2547a88633",
473
+ "jcr:primaryType" : "mgnl:metaData"
474
+ },
475
+ "properties" : {
476
+ "mgnl:activatorid" : "superuser",
477
+ "mgnl:creationdate" : "2009-10-28T18:47:36.492+01:00",
478
+ "mgnl:lastaction" : "2012-04-19T20:02:06.095+08:00",
479
+ "mgnl:activated" : true
480
+ },
481
+ "nodes" : { }
482
+ }
483
+ }
484
+ },
485
+ "description_de_wl_files" : {
486
+ "meta" : {
487
+ "path" : "/products/microphones/en/pg/PG27/description_de_wl_files",
488
+ "depth" : 6,
489
+ "name" : "description_de_wl_files",
490
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
491
+ "workspace" : "data",
492
+ "mixinNodeTypes" : [ "mix:lockable" ],
493
+ "jcr:created" : "2009-11-04T00:47:57.912+01:00",
494
+ "jcr:uuid" : "6a2a3d5c-a3ff-4efe-8e67-f3a888cd6314",
495
+ "jcr:primaryType" : "mgnl:contentNode"
496
+ },
497
+ "properties" : { },
498
+ "nodes" : {
499
+ "MetaData" : {
500
+ "meta" : {
501
+ "path" : "/products/microphones/en/pg/PG27/description_de_wl_files/MetaData",
502
+ "depth" : 7,
503
+ "name" : "MetaData",
504
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
505
+ "workspace" : "data",
506
+ "mixinNodeTypes" : [ ],
507
+ "jcr:created" : "2009-11-04T00:47:57.912+01:00",
508
+ "jcr:uuid" : "2bd2cd4d-7463-4200-8b2a-1733393f24f0",
509
+ "jcr:primaryType" : "mgnl:metaData"
510
+ },
511
+ "properties" : {
512
+ "mgnl:activatorid" : "superuser",
513
+ "mgnl:creationdate" : "2009-10-28T18:47:36.493+01:00",
514
+ "mgnl:lastaction" : "2012-04-19T20:02:05.850+08:00",
515
+ "mgnl:activated" : true
516
+ },
517
+ "nodes" : { }
518
+ }
519
+ }
520
+ },
521
+ "background_wl_files" : {
522
+ "meta" : {
523
+ "path" : "/products/microphones/en/pg/PG27/background_wl_files",
524
+ "depth" : 6,
525
+ "name" : "background_wl_files",
526
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
527
+ "workspace" : "data",
528
+ "mixinNodeTypes" : [ "mix:lockable" ],
529
+ "jcr:created" : "2009-11-04T00:47:57.913+01:00",
530
+ "jcr:uuid" : "d3c069d8-677c-416a-826e-90ef1749ab89",
531
+ "jcr:primaryType" : "mgnl:contentNode"
532
+ },
533
+ "properties" : { },
534
+ "nodes" : {
535
+ "MetaData" : {
536
+ "meta" : {
537
+ "path" : "/products/microphones/en/pg/PG27/background_wl_files/MetaData",
538
+ "depth" : 7,
539
+ "name" : "MetaData",
540
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
541
+ "workspace" : "data",
542
+ "mixinNodeTypes" : [ ],
543
+ "jcr:created" : "2009-11-04T00:47:57.913+01:00",
544
+ "jcr:uuid" : "e26645ca-0495-4353-b3ea-0696421ba31f",
545
+ "jcr:primaryType" : "mgnl:metaData"
546
+ },
547
+ "properties" : {
548
+ "mgnl:activatorid" : "superuser",
549
+ "mgnl:creationdate" : "2009-10-28T18:47:36.493+01:00",
550
+ "mgnl:lastaction" : "2012-04-19T20:02:05.598+08:00",
551
+ "mgnl:activated" : true
552
+ },
553
+ "nodes" : { }
554
+ }
555
+ }
556
+ },
557
+ "background_de_wl_files" : {
558
+ "meta" : {
559
+ "path" : "/products/microphones/en/pg/PG27/background_de_wl_files",
560
+ "depth" : 6,
561
+ "name" : "background_de_wl_files",
562
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
563
+ "workspace" : "data",
564
+ "mixinNodeTypes" : [ "mix:lockable" ],
565
+ "jcr:created" : "2009-11-04T00:47:57.914+01:00",
566
+ "jcr:uuid" : "878b4aca-7ff0-427e-8c53-60cc8a0e2690",
567
+ "jcr:primaryType" : "mgnl:contentNode"
568
+ },
569
+ "properties" : { },
570
+ "nodes" : {
571
+ "MetaData" : {
572
+ "meta" : {
573
+ "path" : "/products/microphones/en/pg/PG27/background_de_wl_files/MetaData",
574
+ "depth" : 7,
575
+ "name" : "MetaData",
576
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
577
+ "workspace" : "data",
578
+ "mixinNodeTypes" : [ ],
579
+ "jcr:created" : "2009-11-04T00:47:57.914+01:00",
580
+ "jcr:uuid" : "66e23f7a-4fc2-4436-8fb0-fa7d6dad022d",
581
+ "jcr:primaryType" : "mgnl:metaData"
582
+ },
583
+ "properties" : {
584
+ "mgnl:activatorid" : "superuser",
585
+ "mgnl:creationdate" : "2009-10-28T18:47:36.494+01:00",
586
+ "mgnl:lastaction" : "2012-04-19T20:02:05.326+08:00",
587
+ "mgnl:activated" : true
588
+ },
589
+ "nodes" : { }
590
+ }
591
+ }
592
+ },
593
+ "description_wl_de_files" : {
594
+ "meta" : {
595
+ "path" : "/products/microphones/en/pg/PG27/description_wl_de_files",
596
+ "depth" : 6,
597
+ "name" : "description_wl_de_files",
598
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
599
+ "workspace" : "data",
600
+ "mixinNodeTypes" : [ "mix:lockable" ],
601
+ "jcr:created" : "2009-12-01T14:59:51.566+01:00",
602
+ "jcr:uuid" : "6563cb27-9aff-4589-a5c8-14d2ee1becf1",
603
+ "jcr:primaryType" : "mgnl:contentNode"
604
+ },
605
+ "properties" : { },
606
+ "nodes" : {
607
+ "MetaData" : {
608
+ "meta" : {
609
+ "path" : "/products/microphones/en/pg/PG27/description_wl_de_files/MetaData",
610
+ "depth" : 7,
611
+ "name" : "MetaData",
612
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
613
+ "workspace" : "data",
614
+ "mixinNodeTypes" : [ ],
615
+ "jcr:created" : "2009-12-01T14:59:51.566+01:00",
616
+ "jcr:uuid" : "b1b26b27-deba-4e92-bc93-4f344faf6c5e",
617
+ "jcr:primaryType" : "mgnl:metaData"
618
+ },
619
+ "properties" : {
620
+ "mgnl:activatorid" : "superuser",
621
+ "mgnl:creationdate" : "2009-12-01T14:59:51.566+01:00",
622
+ "mgnl:lastaction" : "2012-04-19T20:02:04.989+08:00",
623
+ "mgnl:activated" : true
624
+ },
625
+ "nodes" : { }
626
+ }
627
+ }
628
+ },
629
+ "background_wl_de_files" : {
630
+ "meta" : {
631
+ "path" : "/products/microphones/en/pg/PG27/background_wl_de_files",
632
+ "depth" : 6,
633
+ "name" : "background_wl_de_files",
634
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
635
+ "workspace" : "data",
636
+ "mixinNodeTypes" : [ "mix:lockable" ],
637
+ "jcr:created" : "2009-12-01T14:59:51.567+01:00",
638
+ "jcr:uuid" : "a467e305-6ae2-4977-b731-e451ad0711a3",
639
+ "jcr:primaryType" : "mgnl:contentNode"
640
+ },
641
+ "properties" : { },
642
+ "nodes" : {
643
+ "MetaData" : {
644
+ "meta" : {
645
+ "path" : "/products/microphones/en/pg/PG27/background_wl_de_files/MetaData",
646
+ "depth" : 7,
647
+ "name" : "MetaData",
648
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
649
+ "workspace" : "data",
650
+ "mixinNodeTypes" : [ ],
651
+ "jcr:created" : "2009-12-01T14:59:51.567+01:00",
652
+ "jcr:uuid" : "47f3df7e-0010-4c90-9b01-123701a79e06",
653
+ "jcr:primaryType" : "mgnl:metaData"
654
+ },
655
+ "properties" : {
656
+ "mgnl:activatorid" : "superuser",
657
+ "mgnl:creationdate" : "2009-12-01T14:59:51.567+01:00",
658
+ "mgnl:lastaction" : "2012-04-19T20:02:04.680+08:00",
659
+ "mgnl:activated" : true
660
+ },
661
+ "nodes" : { }
662
+ }
663
+ }
664
+ },
665
+ "optional_accessoires_de" : {
666
+ "meta" : {
667
+ "path" : "/products/microphones/en/pg/PG27/optional_accessoires_de",
668
+ "depth" : 6,
669
+ "name" : "optional_accessoires_de",
670
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
671
+ "workspace" : "data",
672
+ "mixinNodeTypes" : [ "mix:lockable" ],
673
+ "jcr:created" : "2010-02-04T15:04:01.183+01:00",
674
+ "jcr:uuid" : "a4554885-c50e-4982-91c1-53f993594237",
675
+ "jcr:primaryType" : "dataItemNode"
676
+ },
677
+ "properties" : { },
678
+ "nodes" : {
679
+ "732df76e-f20a-4b39-9" : {
680
+ "meta" : {
681
+ "path" : "/products/microphones/en/pg/PG27/optional_accessoires_de/732df76e-f20a-4b39-9",
682
+ "depth" : 7,
683
+ "name" : "732df76e-f20a-4b39-9",
684
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
685
+ "workspace" : "data",
686
+ "mixinNodeTypes" : [ "mix:lockable" ],
687
+ "jcr:created" : "2010-02-04T15:04:01.183+01:00",
688
+ "jcr:uuid" : "f5d6cd01-2200-474e-8f61-af512fb1e941",
689
+ "jcr:primaryType" : "dataItemNode"
690
+ },
691
+ "properties" : {
692
+ "optional_accessoires_de" : "732df76e-f20a-4b39-95a2-0f9e2ad42bc3"
693
+ },
694
+ "nodes" : { }
695
+ },
696
+ "884bc0cd-7fe8-41ac-8" : {
697
+ "meta" : {
698
+ "path" : "/products/microphones/en/pg/PG27/optional_accessoires_de/884bc0cd-7fe8-41ac-8",
699
+ "depth" : 7,
700
+ "name" : "884bc0cd-7fe8-41ac-8",
701
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
702
+ "workspace" : "data",
703
+ "mixinNodeTypes" : [ "mix:lockable" ],
704
+ "jcr:created" : "2010-02-04T15:04:01.184+01:00",
705
+ "jcr:uuid" : "9259976f-cc84-4f17-a6a3-abcc17aefaa9",
706
+ "jcr:primaryType" : "dataItemNode"
707
+ },
708
+ "properties" : {
709
+ "optional_accessoires_de" : "884bc0cd-7fe8-41ac-8e72-ab2d0ebdfc20"
710
+ },
711
+ "nodes" : { }
712
+ },
713
+ "7fe1fec6-8c1e-438e-a" : {
714
+ "meta" : {
715
+ "path" : "/products/microphones/en/pg/PG27/optional_accessoires_de/7fe1fec6-8c1e-438e-a",
716
+ "depth" : 7,
717
+ "name" : "7fe1fec6-8c1e-438e-a",
718
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
719
+ "workspace" : "data",
720
+ "mixinNodeTypes" : [ "mix:lockable" ],
721
+ "jcr:created" : "2010-02-04T15:04:01.184+01:00",
722
+ "jcr:uuid" : "91413c04-fc98-4477-9559-ddd5e67f80d3",
723
+ "jcr:primaryType" : "dataItemNode"
724
+ },
725
+ "properties" : {
726
+ "optional_accessoires_de" : "7fe1fec6-8c1e-438e-a266-14050e0efb55"
727
+ },
728
+ "nodes" : { }
729
+ }
730
+ }
731
+ },
732
+ "review_1_files" : {
733
+ "meta" : {
734
+ "path" : "/products/microphones/en/pg/PG27/review_1_files",
735
+ "depth" : 6,
736
+ "name" : "review_1_files",
737
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
738
+ "workspace" : "data",
739
+ "mixinNodeTypes" : [ "mix:lockable" ],
740
+ "jcr:created" : "2010-03-11T19:03:09.809+01:00",
741
+ "jcr:uuid" : "1e2026f0-a50d-44b9-8cae-95c6ce6bd0ad",
742
+ "jcr:primaryType" : "mgnl:contentNode"
743
+ },
744
+ "properties" : { },
745
+ "nodes" : {
746
+ "MetaData" : {
747
+ "meta" : {
748
+ "path" : "/products/microphones/en/pg/PG27/review_1_files/MetaData",
749
+ "depth" : 7,
750
+ "name" : "MetaData",
751
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
752
+ "workspace" : "data",
753
+ "mixinNodeTypes" : [ ],
754
+ "jcr:created" : "2010-03-11T19:03:09.809+01:00",
755
+ "jcr:uuid" : "9847cb95-8c4e-4afb-9cf4-6e7dae5f3acf",
756
+ "jcr:primaryType" : "mgnl:metaData"
757
+ },
758
+ "properties" : {
759
+ "mgnl:activatorid" : "superuser",
760
+ "mgnl:creationdate" : "2010-03-11T19:03:09.809+01:00",
761
+ "mgnl:lastaction" : "2012-04-19T20:02:04.431+08:00",
762
+ "mgnl:activated" : true
763
+ },
764
+ "nodes" : { }
765
+ }
766
+ }
767
+ },
768
+ "review_1_de_files" : {
769
+ "meta" : {
770
+ "path" : "/products/microphones/en/pg/PG27/review_1_de_files",
771
+ "depth" : 6,
772
+ "name" : "review_1_de_files",
773
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
774
+ "workspace" : "data",
775
+ "mixinNodeTypes" : [ "mix:lockable" ],
776
+ "jcr:created" : "2010-03-11T19:03:09.810+01:00",
777
+ "jcr:uuid" : "dcad8017-483c-48ab-8c1c-a5ca7477c5f0",
778
+ "jcr:primaryType" : "mgnl:contentNode"
779
+ },
780
+ "properties" : { },
781
+ "nodes" : {
782
+ "MetaData" : {
783
+ "meta" : {
784
+ "path" : "/products/microphones/en/pg/PG27/review_1_de_files/MetaData",
785
+ "depth" : 7,
786
+ "name" : "MetaData",
787
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
788
+ "workspace" : "data",
789
+ "mixinNodeTypes" : [ ],
790
+ "jcr:created" : "2010-03-11T19:03:09.810+01:00",
791
+ "jcr:uuid" : "ba02f7e4-163b-4d91-bfa0-68bb2d043414",
792
+ "jcr:primaryType" : "mgnl:metaData"
793
+ },
794
+ "properties" : {
795
+ "mgnl:activatorid" : "superuser",
796
+ "mgnl:creationdate" : "2010-03-11T19:03:09.810+01:00",
797
+ "mgnl:lastaction" : "2012-04-19T20:02:04.129+08:00",
798
+ "mgnl:activated" : true
799
+ },
800
+ "nodes" : { }
801
+ }
802
+ }
803
+ },
804
+ "review_2_files" : {
805
+ "meta" : {
806
+ "path" : "/products/microphones/en/pg/PG27/review_2_files",
807
+ "depth" : 6,
808
+ "name" : "review_2_files",
809
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
810
+ "workspace" : "data",
811
+ "mixinNodeTypes" : [ "mix:lockable" ],
812
+ "jcr:created" : "2010-03-11T19:03:09.810+01:00",
813
+ "jcr:uuid" : "7c136015-3da5-461e-8099-809744758dff",
814
+ "jcr:primaryType" : "mgnl:contentNode"
815
+ },
816
+ "properties" : { },
817
+ "nodes" : {
818
+ "MetaData" : {
819
+ "meta" : {
820
+ "path" : "/products/microphones/en/pg/PG27/review_2_files/MetaData",
821
+ "depth" : 7,
822
+ "name" : "MetaData",
823
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
824
+ "workspace" : "data",
825
+ "mixinNodeTypes" : [ ],
826
+ "jcr:created" : "2010-03-11T19:03:09.811+01:00",
827
+ "jcr:uuid" : "6f5ffabf-27a2-41f8-81ff-fa9a054df3b7",
828
+ "jcr:primaryType" : "mgnl:metaData"
829
+ },
830
+ "properties" : {
831
+ "mgnl:activatorid" : "superuser",
832
+ "mgnl:creationdate" : "2010-03-11T19:03:09.811+01:00",
833
+ "mgnl:lastaction" : "2012-04-19T20:02:03.868+08:00",
834
+ "mgnl:activated" : true
835
+ },
836
+ "nodes" : { }
837
+ }
838
+ }
839
+ },
840
+ "review_2_de_files" : {
841
+ "meta" : {
842
+ "path" : "/products/microphones/en/pg/PG27/review_2_de_files",
843
+ "depth" : 6,
844
+ "name" : "review_2_de_files",
845
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
846
+ "workspace" : "data",
847
+ "mixinNodeTypes" : [ "mix:lockable" ],
848
+ "jcr:created" : "2010-03-11T19:03:09.811+01:00",
849
+ "jcr:uuid" : "5dfbabab-f572-4ccc-9589-e0d4887d9c2a",
850
+ "jcr:primaryType" : "mgnl:contentNode"
851
+ },
852
+ "properties" : { },
853
+ "nodes" : {
854
+ "MetaData" : {
855
+ "meta" : {
856
+ "path" : "/products/microphones/en/pg/PG27/review_2_de_files/MetaData",
857
+ "depth" : 7,
858
+ "name" : "MetaData",
859
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
860
+ "workspace" : "data",
861
+ "mixinNodeTypes" : [ ],
862
+ "jcr:created" : "2010-03-11T19:03:09.811+01:00",
863
+ "jcr:uuid" : "28b15e42-b9a9-4272-9395-92c5e59cb00b",
864
+ "jcr:primaryType" : "mgnl:metaData"
865
+ },
866
+ "properties" : {
867
+ "mgnl:activatorid" : "superuser",
868
+ "mgnl:creationdate" : "2010-03-11T19:03:09.811+01:00",
869
+ "mgnl:lastaction" : "2012-04-19T20:02:03.519+08:00",
870
+ "mgnl:activated" : true
871
+ },
872
+ "nodes" : { }
873
+ }
874
+ }
875
+ },
876
+ "review_3_files" : {
877
+ "meta" : {
878
+ "path" : "/products/microphones/en/pg/PG27/review_3_files",
879
+ "depth" : 6,
880
+ "name" : "review_3_files",
881
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
882
+ "workspace" : "data",
883
+ "mixinNodeTypes" : [ "mix:lockable" ],
884
+ "jcr:created" : "2010-03-11T19:03:09.812+01:00",
885
+ "jcr:uuid" : "0ea0bc6d-9e05-4379-8428-fa12ed94be25",
886
+ "jcr:primaryType" : "mgnl:contentNode"
887
+ },
888
+ "properties" : { },
889
+ "nodes" : {
890
+ "MetaData" : {
891
+ "meta" : {
892
+ "path" : "/products/microphones/en/pg/PG27/review_3_files/MetaData",
893
+ "depth" : 7,
894
+ "name" : "MetaData",
895
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
896
+ "workspace" : "data",
897
+ "mixinNodeTypes" : [ ],
898
+ "jcr:created" : "2010-03-11T19:03:09.812+01:00",
899
+ "jcr:uuid" : "ff35323b-4118-408c-a55d-189daadf11e5",
900
+ "jcr:primaryType" : "mgnl:metaData"
901
+ },
902
+ "properties" : {
903
+ "mgnl:activatorid" : "superuser",
904
+ "mgnl:creationdate" : "2010-03-11T19:03:09.812+01:00",
905
+ "mgnl:lastaction" : "2012-04-19T20:02:02.166+08:00",
906
+ "mgnl:activated" : true
907
+ },
908
+ "nodes" : { }
909
+ }
910
+ }
911
+ },
912
+ "review_3_de_files" : {
913
+ "meta" : {
914
+ "path" : "/products/microphones/en/pg/PG27/review_3_de_files",
915
+ "depth" : 6,
916
+ "name" : "review_3_de_files",
917
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
918
+ "workspace" : "data",
919
+ "mixinNodeTypes" : [ "mix:lockable" ],
920
+ "jcr:created" : "2010-03-11T19:03:09.812+01:00",
921
+ "jcr:uuid" : "ee98c2ed-b077-40a4-bbc0-b63b7ecadb7a",
922
+ "jcr:primaryType" : "mgnl:contentNode"
923
+ },
924
+ "properties" : { },
925
+ "nodes" : {
926
+ "MetaData" : {
927
+ "meta" : {
928
+ "path" : "/products/microphones/en/pg/PG27/review_3_de_files/MetaData",
929
+ "depth" : 7,
930
+ "name" : "MetaData",
931
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
932
+ "workspace" : "data",
933
+ "mixinNodeTypes" : [ ],
934
+ "jcr:created" : "2010-03-11T19:03:09.812+01:00",
935
+ "jcr:uuid" : "74ae8ceb-6d6e-44a1-bd4e-368dcf2d4d55",
936
+ "jcr:primaryType" : "mgnl:metaData"
937
+ },
938
+ "properties" : {
939
+ "mgnl:activatorid" : "superuser",
940
+ "mgnl:creationdate" : "2010-03-11T19:03:09.813+01:00",
941
+ "mgnl:lastaction" : "2012-04-19T20:02:01.848+08:00",
942
+ "mgnl:activated" : true
943
+ },
944
+ "nodes" : { }
945
+ }
946
+ }
947
+ },
948
+ "review_4_files" : {
949
+ "meta" : {
950
+ "path" : "/products/microphones/en/pg/PG27/review_4_files",
951
+ "depth" : 6,
952
+ "name" : "review_4_files",
953
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
954
+ "workspace" : "data",
955
+ "mixinNodeTypes" : [ "mix:lockable" ],
956
+ "jcr:created" : "2010-03-11T19:03:09.813+01:00",
957
+ "jcr:uuid" : "94c5a671-2d09-4dab-aaec-b255fee0a296",
958
+ "jcr:primaryType" : "mgnl:contentNode"
959
+ },
960
+ "properties" : { },
961
+ "nodes" : {
962
+ "MetaData" : {
963
+ "meta" : {
964
+ "path" : "/products/microphones/en/pg/PG27/review_4_files/MetaData",
965
+ "depth" : 7,
966
+ "name" : "MetaData",
967
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
968
+ "workspace" : "data",
969
+ "mixinNodeTypes" : [ ],
970
+ "jcr:created" : "2010-03-11T19:03:09.813+01:00",
971
+ "jcr:uuid" : "d6f90317-f653-4fde-ba18-98d409e197d9",
972
+ "jcr:primaryType" : "mgnl:metaData"
973
+ },
974
+ "properties" : {
975
+ "mgnl:activatorid" : "superuser",
976
+ "mgnl:creationdate" : "2010-03-11T19:03:09.834+01:00",
977
+ "mgnl:lastaction" : "2012-04-19T20:02:01.551+08:00",
978
+ "mgnl:activated" : true
979
+ },
980
+ "nodes" : { }
981
+ }
982
+ }
983
+ },
984
+ "review_4_de_files" : {
985
+ "meta" : {
986
+ "path" : "/products/microphones/en/pg/PG27/review_4_de_files",
987
+ "depth" : 6,
988
+ "name" : "review_4_de_files",
989
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
990
+ "workspace" : "data",
991
+ "mixinNodeTypes" : [ "mix:lockable" ],
992
+ "jcr:created" : "2010-03-11T19:03:09.835+01:00",
993
+ "jcr:uuid" : "2f5b89ee-2e3d-41ba-81ee-40700c578750",
994
+ "jcr:primaryType" : "mgnl:contentNode"
995
+ },
996
+ "properties" : { },
997
+ "nodes" : {
998
+ "MetaData" : {
999
+ "meta" : {
1000
+ "path" : "/products/microphones/en/pg/PG27/review_4_de_files/MetaData",
1001
+ "depth" : 7,
1002
+ "name" : "MetaData",
1003
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1004
+ "workspace" : "data",
1005
+ "mixinNodeTypes" : [ ],
1006
+ "jcr:created" : "2010-03-11T19:03:09.835+01:00",
1007
+ "jcr:uuid" : "811a20c1-5b94-4242-95f4-d6c04911c81b",
1008
+ "jcr:primaryType" : "mgnl:metaData"
1009
+ },
1010
+ "properties" : {
1011
+ "mgnl:activatorid" : "superuser",
1012
+ "mgnl:creationdate" : "2010-03-11T19:03:09.835+01:00",
1013
+ "mgnl:lastaction" : "2012-04-19T20:02:01.239+08:00",
1014
+ "mgnl:activated" : true
1015
+ },
1016
+ "nodes" : { }
1017
+ }
1018
+ }
1019
+ },
1020
+ "review_5_files" : {
1021
+ "meta" : {
1022
+ "path" : "/products/microphones/en/pg/PG27/review_5_files",
1023
+ "depth" : 6,
1024
+ "name" : "review_5_files",
1025
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1026
+ "workspace" : "data",
1027
+ "mixinNodeTypes" : [ "mix:lockable" ],
1028
+ "jcr:created" : "2010-03-11T19:03:09.836+01:00",
1029
+ "jcr:uuid" : "07fbc67a-f6b3-416c-af2f-d583eb0b2458",
1030
+ "jcr:primaryType" : "mgnl:contentNode"
1031
+ },
1032
+ "properties" : { },
1033
+ "nodes" : {
1034
+ "MetaData" : {
1035
+ "meta" : {
1036
+ "path" : "/products/microphones/en/pg/PG27/review_5_files/MetaData",
1037
+ "depth" : 7,
1038
+ "name" : "MetaData",
1039
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1040
+ "workspace" : "data",
1041
+ "mixinNodeTypes" : [ ],
1042
+ "jcr:created" : "2010-03-11T19:03:09.836+01:00",
1043
+ "jcr:uuid" : "c0a0d8f5-158e-4a4a-8a55-b7b64a132cd4",
1044
+ "jcr:primaryType" : "mgnl:metaData"
1045
+ },
1046
+ "properties" : {
1047
+ "mgnl:activatorid" : "superuser",
1048
+ "mgnl:creationdate" : "2010-03-11T19:03:09.837+01:00",
1049
+ "mgnl:lastaction" : "2012-04-19T20:02:01.025+08:00",
1050
+ "mgnl:activated" : true
1051
+ },
1052
+ "nodes" : { }
1053
+ }
1054
+ }
1055
+ },
1056
+ "review_5_de_files" : {
1057
+ "meta" : {
1058
+ "path" : "/products/microphones/en/pg/PG27/review_5_de_files",
1059
+ "depth" : 6,
1060
+ "name" : "review_5_de_files",
1061
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1062
+ "workspace" : "data",
1063
+ "mixinNodeTypes" : [ "mix:lockable" ],
1064
+ "jcr:created" : "2010-03-11T19:03:09.837+01:00",
1065
+ "jcr:uuid" : "bbd76332-5bfe-4378-a6b0-abb5f39a2d01",
1066
+ "jcr:primaryType" : "mgnl:contentNode"
1067
+ },
1068
+ "properties" : { },
1069
+ "nodes" : {
1070
+ "MetaData" : {
1071
+ "meta" : {
1072
+ "path" : "/products/microphones/en/pg/PG27/review_5_de_files/MetaData",
1073
+ "depth" : 7,
1074
+ "name" : "MetaData",
1075
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1076
+ "workspace" : "data",
1077
+ "mixinNodeTypes" : [ ],
1078
+ "jcr:created" : "2010-03-11T19:03:09.850+01:00",
1079
+ "jcr:uuid" : "7e9b5164-3056-4956-a228-d35ec63fa850",
1080
+ "jcr:primaryType" : "mgnl:metaData"
1081
+ },
1082
+ "properties" : {
1083
+ "mgnl:activatorid" : "superuser",
1084
+ "mgnl:creationdate" : "2010-03-11T19:03:09.850+01:00",
1085
+ "mgnl:lastaction" : "2012-04-19T20:02:00.554+08:00",
1086
+ "mgnl:activated" : true
1087
+ },
1088
+ "nodes" : { }
1089
+ }
1090
+ }
1091
+ },
1092
+ "videos_de" : {
1093
+ "meta" : {
1094
+ "path" : "/products/microphones/en/pg/PG27/videos_de",
1095
+ "depth" : 6,
1096
+ "name" : "videos_de",
1097
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1098
+ "workspace" : "data",
1099
+ "mixinNodeTypes" : [ "mix:lockable" ],
1100
+ "jcr:created" : "2010-07-30T09:42:07.717+02:00",
1101
+ "jcr:uuid" : "9f86744e-4dab-4f45-a9e3-d3dce94df266",
1102
+ "jcr:primaryType" : "dataItemNode"
1103
+ },
1104
+ "properties" : { },
1105
+ "nodes" : {
1106
+ "5394fa0e-777a-4075-b" : {
1107
+ "meta" : {
1108
+ "path" : "/products/microphones/en/pg/PG27/videos_de/5394fa0e-777a-4075-b",
1109
+ "depth" : 7,
1110
+ "name" : "5394fa0e-777a-4075-b",
1111
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1112
+ "workspace" : "data",
1113
+ "mixinNodeTypes" : [ "mix:lockable" ],
1114
+ "jcr:created" : "2010-07-30T09:42:07.717+02:00",
1115
+ "jcr:uuid" : "1ec0d765-6626-4586-bf78-b3a752300cbb",
1116
+ "jcr:primaryType" : "dataItemNode"
1117
+ },
1118
+ "properties" : {
1119
+ "videos_de" : "5394fa0e-777a-4075-b1a1-f360710abefe"
1120
+ },
1121
+ "nodes" : { }
1122
+ },
1123
+ "f52d82d8-70f8-4567-9" : {
1124
+ "meta" : {
1125
+ "path" : "/products/microphones/en/pg/PG27/videos_de/f52d82d8-70f8-4567-9",
1126
+ "depth" : 7,
1127
+ "name" : "f52d82d8-70f8-4567-9",
1128
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1129
+ "workspace" : "data",
1130
+ "mixinNodeTypes" : [ "mix:lockable" ],
1131
+ "jcr:created" : "2010-07-30T09:42:07.718+02:00",
1132
+ "jcr:uuid" : "4e337e23-544b-414c-835b-bbd32fce665f",
1133
+ "jcr:primaryType" : "dataItemNode"
1134
+ },
1135
+ "properties" : {
1136
+ "videos_de" : "f52d82d8-70f8-4567-9525-069407878be2"
1137
+ },
1138
+ "nodes" : { }
1139
+ }
1140
+ }
1141
+ },
1142
+ "user_guide_de" : {
1143
+ "meta" : {
1144
+ "path" : "/products/microphones/en/pg/PG27/user_guide_de",
1145
+ "depth" : 6,
1146
+ "name" : "user_guide_de",
1147
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1148
+ "workspace" : "data",
1149
+ "mixinNodeTypes" : [ "mix:lockable" ],
1150
+ "jcr:created" : "2010-07-30T09:42:07.720+02:00",
1151
+ "jcr:uuid" : "58b1a141-d177-4404-b86c-368c203b073a",
1152
+ "jcr:primaryType" : "dataItemNode"
1153
+ },
1154
+ "properties" : { },
1155
+ "nodes" : {
1156
+ "ef2345e6-b616-42ac-9" : {
1157
+ "meta" : {
1158
+ "path" : "/products/microphones/en/pg/PG27/user_guide_de/ef2345e6-b616-42ac-9",
1159
+ "depth" : 7,
1160
+ "name" : "ef2345e6-b616-42ac-9",
1161
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1162
+ "workspace" : "data",
1163
+ "mixinNodeTypes" : [ "mix:lockable" ],
1164
+ "jcr:created" : "2010-07-30T09:42:07.721+02:00",
1165
+ "jcr:uuid" : "6fe7d0fc-b597-4430-a3b1-d39c714cb9c3",
1166
+ "jcr:primaryType" : "dataItemNode"
1167
+ },
1168
+ "properties" : {
1169
+ "user_guide_de" : "ef2345e6-b616-42ac-9f5a-2e911982c0ee"
1170
+ },
1171
+ "nodes" : { }
1172
+ }
1173
+ }
1174
+ },
1175
+ "how_to_de" : {
1176
+ "meta" : {
1177
+ "path" : "/products/microphones/en/pg/PG27/how_to_de",
1178
+ "depth" : 6,
1179
+ "name" : "how_to_de",
1180
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1181
+ "workspace" : "data",
1182
+ "mixinNodeTypes" : [ "mix:lockable" ],
1183
+ "jcr:created" : "2010-07-30T09:42:07.724+02:00",
1184
+ "jcr:uuid" : "7efd421f-d07d-458d-aed8-a1eef42699b2",
1185
+ "jcr:primaryType" : "dataItemNode"
1186
+ },
1187
+ "properties" : { },
1188
+ "nodes" : {
1189
+ "c3e6c7d5-844a-499a-8" : {
1190
+ "meta" : {
1191
+ "path" : "/products/microphones/en/pg/PG27/how_to_de/c3e6c7d5-844a-499a-8",
1192
+ "depth" : 7,
1193
+ "name" : "c3e6c7d5-844a-499a-8",
1194
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1195
+ "workspace" : "data",
1196
+ "mixinNodeTypes" : [ "mix:lockable" ],
1197
+ "jcr:created" : "2010-07-30T09:42:07.725+02:00",
1198
+ "jcr:uuid" : "68ec9879-eb0a-4519-9854-17837b4c7e49",
1199
+ "jcr:primaryType" : "dataItemNode"
1200
+ },
1201
+ "properties" : {
1202
+ "how_to_de" : "c3e6c7d5-844a-499a-80bf-5b753c8598e5"
1203
+ },
1204
+ "nodes" : { }
1205
+ },
1206
+ "5eb29e09-bd34-4711-9" : {
1207
+ "meta" : {
1208
+ "path" : "/products/microphones/en/pg/PG27/how_to_de/5eb29e09-bd34-4711-9",
1209
+ "depth" : 7,
1210
+ "name" : "5eb29e09-bd34-4711-9",
1211
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1212
+ "workspace" : "data",
1213
+ "mixinNodeTypes" : [ "mix:lockable" ],
1214
+ "jcr:created" : "2010-07-30T09:42:07.725+02:00",
1215
+ "jcr:uuid" : "b8798b3d-b8a7-42a5-aecd-7f50b887f930",
1216
+ "jcr:primaryType" : "dataItemNode"
1217
+ },
1218
+ "properties" : {
1219
+ "how_to_de" : "5eb29e09-bd34-4711-9b06-cc61c33f3c21"
1220
+ },
1221
+ "nodes" : { }
1222
+ },
1223
+ "4febd8fb-0856-4154-9" : {
1224
+ "meta" : {
1225
+ "path" : "/products/microphones/en/pg/PG27/how_to_de/4febd8fb-0856-4154-9",
1226
+ "depth" : 7,
1227
+ "name" : "4febd8fb-0856-4154-9",
1228
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1229
+ "workspace" : "data",
1230
+ "mixinNodeTypes" : [ "mix:lockable" ],
1231
+ "jcr:created" : "2010-07-30T09:42:07.726+02:00",
1232
+ "jcr:uuid" : "719802f8-d158-4bc5-8436-d7f10bcd7ab2",
1233
+ "jcr:primaryType" : "dataItemNode"
1234
+ },
1235
+ "properties" : {
1236
+ "how_to_de" : "4febd8fb-0856-4154-950b-400a01b96642"
1237
+ },
1238
+ "nodes" : { }
1239
+ }
1240
+ }
1241
+ },
1242
+ "testimonials_artists_de" : {
1243
+ "meta" : {
1244
+ "path" : "/products/microphones/en/pg/PG27/testimonials_artists_de",
1245
+ "depth" : 6,
1246
+ "name" : "testimonials_artists_de",
1247
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1248
+ "workspace" : "data",
1249
+ "mixinNodeTypes" : [ "mix:lockable" ],
1250
+ "jcr:created" : "2010-07-30T09:42:07.733+02:00",
1251
+ "jcr:uuid" : "df4bfaf4-e9fa-46c1-bb21-fb413036f4d5",
1252
+ "jcr:primaryType" : "dataItemNode"
1253
+ },
1254
+ "properties" : { },
1255
+ "nodes" : {
1256
+ "de86ea1d-34cb-4fd8-9" : {
1257
+ "meta" : {
1258
+ "path" : "/products/microphones/en/pg/PG27/testimonials_artists_de/de86ea1d-34cb-4fd8-9",
1259
+ "depth" : 7,
1260
+ "name" : "de86ea1d-34cb-4fd8-9",
1261
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1262
+ "workspace" : "data",
1263
+ "mixinNodeTypes" : [ "mix:lockable" ],
1264
+ "jcr:created" : "2010-07-30T09:42:07.733+02:00",
1265
+ "jcr:uuid" : "33c1375e-2c06-49fc-a07e-cd1bf59d9b7f",
1266
+ "jcr:primaryType" : "dataItemNode"
1267
+ },
1268
+ "properties" : {
1269
+ "testimonials_artists_de" : "de86ea1d-34cb-4fd8-906f-e1852bc2e520"
1270
+ },
1271
+ "nodes" : { }
1272
+ }
1273
+ }
1274
+ },
1275
+ "image_additionals" : {
1276
+ "meta" : {
1277
+ "path" : "/products/microphones/en/pg/PG27/image_additionals",
1278
+ "depth" : 6,
1279
+ "name" : "image_additionals",
1280
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1281
+ "workspace" : "data",
1282
+ "mixinNodeTypes" : [ "mix:lockable" ],
1283
+ "jcr:created" : "2012-09-21T12:24:25.536+08:00",
1284
+ "jcr:uuid" : "8bb8ce46-57b7-455d-a9f5-4ca62b6bff93",
1285
+ "jcr:primaryType" : "dataItemNode"
1286
+ },
1287
+ "properties" : { },
1288
+ "nodes" : {
1289
+ "4de773e4-7aaf-44c6-9" : {
1290
+ "meta" : {
1291
+ "path" : "/products/microphones/en/pg/PG27/image_additionals/4de773e4-7aaf-44c6-9",
1292
+ "depth" : 7,
1293
+ "name" : "4de773e4-7aaf-44c6-9",
1294
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1295
+ "workspace" : "data",
1296
+ "mixinNodeTypes" : [ "mix:lockable" ],
1297
+ "jcr:created" : "2012-09-21T12:24:25.536+08:00",
1298
+ "jcr:uuid" : "9e8ab63c-1274-445f-8cc3-0ab4e06fd299",
1299
+ "jcr:primaryType" : "dataItemNode"
1300
+ },
1301
+ "properties" : {
1302
+ "image_additionals" : "4de773e4-7aaf-44c6-9560-cc1731babaf9"
1303
+ },
1304
+ "nodes" : { }
1305
+ },
1306
+ "140bd516-e8b7-4dca-9" : {
1307
+ "meta" : {
1308
+ "path" : "/products/microphones/en/pg/PG27/image_additionals/140bd516-e8b7-4dca-9",
1309
+ "depth" : 7,
1310
+ "name" : "140bd516-e8b7-4dca-9",
1311
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1312
+ "workspace" : "data",
1313
+ "mixinNodeTypes" : [ "mix:lockable" ],
1314
+ "jcr:created" : "2012-09-21T12:24:25.537+08:00",
1315
+ "jcr:uuid" : "1cdc688d-2745-44a1-bbe0-8992ad8faf3b",
1316
+ "jcr:primaryType" : "dataItemNode"
1317
+ },
1318
+ "properties" : {
1319
+ "image_additionals" : "140bd516-e8b7-4dca-9857-673650b150a6"
1320
+ },
1321
+ "nodes" : { }
1322
+ }
1323
+ }
1324
+ },
1325
+ "associated_products" : {
1326
+ "meta" : {
1327
+ "path" : "/products/microphones/en/pg/PG27/associated_products",
1328
+ "depth" : 6,
1329
+ "name" : "associated_products",
1330
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1331
+ "workspace" : "data",
1332
+ "mixinNodeTypes" : [ "mix:lockable" ],
1333
+ "jcr:created" : "2012-09-21T12:24:25.539+08:00",
1334
+ "jcr:uuid" : "db86f3be-18ac-4568-8429-87e9b8cf67a6",
1335
+ "jcr:primaryType" : "dataItemNode"
1336
+ },
1337
+ "properties" : { },
1338
+ "nodes" : {
1339
+ "559bd396-4002-41ad-8" : {
1340
+ "meta" : {
1341
+ "path" : "/products/microphones/en/pg/PG27/associated_products/559bd396-4002-41ad-8",
1342
+ "depth" : 7,
1343
+ "name" : "559bd396-4002-41ad-8",
1344
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1345
+ "workspace" : "data",
1346
+ "mixinNodeTypes" : [ "mix:lockable" ],
1347
+ "jcr:created" : "2012-09-21T12:24:25.539+08:00",
1348
+ "jcr:uuid" : "320eafb4-623b-4126-9118-d867b896bc63",
1349
+ "jcr:primaryType" : "dataItemNode"
1350
+ },
1351
+ "properties" : {
1352
+ "associated_products" : "559bd396-4002-41ad-8445-9cc4faa910e3"
1353
+ },
1354
+ "nodes" : { }
1355
+ },
1356
+ "201a7876-328a-4596-8" : {
1357
+ "meta" : {
1358
+ "path" : "/products/microphones/en/pg/PG27/associated_products/201a7876-328a-4596-8",
1359
+ "depth" : 7,
1360
+ "name" : "201a7876-328a-4596-8",
1361
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1362
+ "workspace" : "data",
1363
+ "mixinNodeTypes" : [ "mix:lockable" ],
1364
+ "jcr:created" : "2012-09-21T12:24:25.540+08:00",
1365
+ "jcr:uuid" : "97b7bdda-6e47-4b31-a64a-e8d7a4de9b6f",
1366
+ "jcr:primaryType" : "dataItemNode"
1367
+ },
1368
+ "properties" : {
1369
+ "associated_products" : "201a7876-328a-4596-8ff2-985be2175831"
1370
+ },
1371
+ "nodes" : { }
1372
+ },
1373
+ "62462167-d21e-4c10-9" : {
1374
+ "meta" : {
1375
+ "path" : "/products/microphones/en/pg/PG27/associated_products/62462167-d21e-4c10-9",
1376
+ "depth" : 7,
1377
+ "name" : "62462167-d21e-4c10-9",
1378
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1379
+ "workspace" : "data",
1380
+ "mixinNodeTypes" : [ "mix:lockable" ],
1381
+ "jcr:created" : "2012-09-21T12:24:25.540+08:00",
1382
+ "jcr:uuid" : "a5e8d2f8-8dde-4a7c-8d29-7a69c22bc328",
1383
+ "jcr:primaryType" : "dataItemNode"
1384
+ },
1385
+ "properties" : {
1386
+ "associated_products" : "62462167-d21e-4c10-9839-4fa68d2642cd"
1387
+ },
1388
+ "nodes" : { }
1389
+ }
1390
+ }
1391
+ },
1392
+ "optional_accessoires" : {
1393
+ "meta" : {
1394
+ "path" : "/products/microphones/en/pg/PG27/optional_accessoires",
1395
+ "depth" : 6,
1396
+ "name" : "optional_accessoires",
1397
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1398
+ "workspace" : "data",
1399
+ "mixinNodeTypes" : [ "mix:lockable" ],
1400
+ "jcr:created" : "2012-09-21T12:24:25.542+08:00",
1401
+ "jcr:uuid" : "9e138dce-ff6e-42c7-9245-988705c35be4",
1402
+ "jcr:primaryType" : "dataItemNode"
1403
+ },
1404
+ "properties" : { },
1405
+ "nodes" : {
1406
+ "732df76e-f20a-4b39-9" : {
1407
+ "meta" : {
1408
+ "path" : "/products/microphones/en/pg/PG27/optional_accessoires/732df76e-f20a-4b39-9",
1409
+ "depth" : 7,
1410
+ "name" : "732df76e-f20a-4b39-9",
1411
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1412
+ "workspace" : "data",
1413
+ "mixinNodeTypes" : [ "mix:lockable" ],
1414
+ "jcr:created" : "2012-09-21T12:24:25.542+08:00",
1415
+ "jcr:uuid" : "26106f7c-934f-4704-a601-910c8ca3dc3c",
1416
+ "jcr:primaryType" : "dataItemNode"
1417
+ },
1418
+ "properties" : {
1419
+ "optional_accessoires" : "732df76e-f20a-4b39-95a2-0f9e2ad42bc3"
1420
+ },
1421
+ "nodes" : { }
1422
+ },
1423
+ "884bc0cd-7fe8-41ac-8" : {
1424
+ "meta" : {
1425
+ "path" : "/products/microphones/en/pg/PG27/optional_accessoires/884bc0cd-7fe8-41ac-8",
1426
+ "depth" : 7,
1427
+ "name" : "884bc0cd-7fe8-41ac-8",
1428
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1429
+ "workspace" : "data",
1430
+ "mixinNodeTypes" : [ "mix:lockable" ],
1431
+ "jcr:created" : "2012-09-21T12:24:25.543+08:00",
1432
+ "jcr:uuid" : "38daa54c-fe10-43e7-869f-4a50ac6f4f91",
1433
+ "jcr:primaryType" : "dataItemNode"
1434
+ },
1435
+ "properties" : {
1436
+ "optional_accessoires" : "884bc0cd-7fe8-41ac-8e72-ab2d0ebdfc20"
1437
+ },
1438
+ "nodes" : { }
1439
+ },
1440
+ "7fe1fec6-8c1e-438e-a" : {
1441
+ "meta" : {
1442
+ "path" : "/products/microphones/en/pg/PG27/optional_accessoires/7fe1fec6-8c1e-438e-a",
1443
+ "depth" : 7,
1444
+ "name" : "7fe1fec6-8c1e-438e-a",
1445
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1446
+ "workspace" : "data",
1447
+ "mixinNodeTypes" : [ "mix:lockable" ],
1448
+ "jcr:created" : "2012-09-21T12:24:25.544+08:00",
1449
+ "jcr:uuid" : "f75b8387-0be2-4b8f-98a7-274b10e8c572",
1450
+ "jcr:primaryType" : "dataItemNode"
1451
+ },
1452
+ "properties" : {
1453
+ "optional_accessoires" : "7fe1fec6-8c1e-438e-a266-14050e0efb55"
1454
+ },
1455
+ "nodes" : { }
1456
+ }
1457
+ }
1458
+ },
1459
+ "primary_application" : {
1460
+ "meta" : {
1461
+ "path" : "/products/microphones/en/pg/PG27/primary_application",
1462
+ "depth" : 6,
1463
+ "name" : "primary_application",
1464
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1465
+ "workspace" : "data",
1466
+ "mixinNodeTypes" : [ "mix:lockable" ],
1467
+ "jcr:created" : "2012-09-21T12:24:25.546+08:00",
1468
+ "jcr:uuid" : "e37825b2-9cb4-4663-8edf-8924d9952e41",
1469
+ "jcr:primaryType" : "dataItemNode"
1470
+ },
1471
+ "properties" : { },
1472
+ "nodes" : {
1473
+ "470e27ab-5daf-4620-b" : {
1474
+ "meta" : {
1475
+ "path" : "/products/microphones/en/pg/PG27/primary_application/470e27ab-5daf-4620-b",
1476
+ "depth" : 7,
1477
+ "name" : "470e27ab-5daf-4620-b",
1478
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1479
+ "workspace" : "data",
1480
+ "mixinNodeTypes" : [ "mix:lockable" ],
1481
+ "jcr:created" : "2012-09-21T12:24:25.546+08:00",
1482
+ "jcr:uuid" : "f976eea7-4c07-4858-ba6a-7594fa489cbb",
1483
+ "jcr:primaryType" : "dataItemNode"
1484
+ },
1485
+ "properties" : {
1486
+ "primary_application" : "470e27ab-5daf-4620-bf19-2f839f1cea69"
1487
+ },
1488
+ "nodes" : { }
1489
+ },
1490
+ "48251924-ec67-4262-b" : {
1491
+ "meta" : {
1492
+ "path" : "/products/microphones/en/pg/PG27/primary_application/48251924-ec67-4262-b",
1493
+ "depth" : 7,
1494
+ "name" : "48251924-ec67-4262-b",
1495
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1496
+ "workspace" : "data",
1497
+ "mixinNodeTypes" : [ "mix:lockable" ],
1498
+ "jcr:created" : "2012-09-21T12:24:25.547+08:00",
1499
+ "jcr:uuid" : "14e701c4-8a1b-450f-a074-6dfa9ce3321b",
1500
+ "jcr:primaryType" : "dataItemNode"
1501
+ },
1502
+ "properties" : {
1503
+ "primary_application" : "48251924-ec67-4262-be9b-a741015f0e7a"
1504
+ },
1505
+ "nodes" : { }
1506
+ },
1507
+ "fbf31317-b899-408c-b" : {
1508
+ "meta" : {
1509
+ "path" : "/products/microphones/en/pg/PG27/primary_application/fbf31317-b899-408c-b",
1510
+ "depth" : 7,
1511
+ "name" : "fbf31317-b899-408c-b",
1512
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1513
+ "workspace" : "data",
1514
+ "mixinNodeTypes" : [ "mix:lockable" ],
1515
+ "jcr:created" : "2012-09-21T12:24:25.547+08:00",
1516
+ "jcr:uuid" : "1bbe1e71-da3f-4b19-9367-7b007d3f312d",
1517
+ "jcr:primaryType" : "dataItemNode"
1518
+ },
1519
+ "properties" : {
1520
+ "primary_application" : "fbf31317-b899-408c-b47c-b1a978cc74cb"
1521
+ },
1522
+ "nodes" : { }
1523
+ },
1524
+ "74e95ec8-1fcf-486b-8" : {
1525
+ "meta" : {
1526
+ "path" : "/products/microphones/en/pg/PG27/primary_application/74e95ec8-1fcf-486b-8",
1527
+ "depth" : 7,
1528
+ "name" : "74e95ec8-1fcf-486b-8",
1529
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1530
+ "workspace" : "data",
1531
+ "mixinNodeTypes" : [ "mix:lockable" ],
1532
+ "jcr:created" : "2012-09-21T12:24:25.548+08:00",
1533
+ "jcr:uuid" : "4aeb8ba0-5f24-48c2-8e8a-03cec5d363cb",
1534
+ "jcr:primaryType" : "dataItemNode"
1535
+ },
1536
+ "properties" : {
1537
+ "primary_application" : "74e95ec8-1fcf-486b-84d0-93750c826a6f"
1538
+ },
1539
+ "nodes" : { }
1540
+ }
1541
+ }
1542
+ },
1543
+ "secondary_application" : {
1544
+ "meta" : {
1545
+ "path" : "/products/microphones/en/pg/PG27/secondary_application",
1546
+ "depth" : 6,
1547
+ "name" : "secondary_application",
1548
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1549
+ "workspace" : "data",
1550
+ "mixinNodeTypes" : [ "mix:lockable" ],
1551
+ "jcr:created" : "2012-09-21T12:24:25.550+08:00",
1552
+ "jcr:uuid" : "f280ed01-1e01-42bb-93c5-2ea311b70605",
1553
+ "jcr:primaryType" : "dataItemNode"
1554
+ },
1555
+ "properties" : { },
1556
+ "nodes" : {
1557
+ "169004d9-afc9-4685-8" : {
1558
+ "meta" : {
1559
+ "path" : "/products/microphones/en/pg/PG27/secondary_application/169004d9-afc9-4685-8",
1560
+ "depth" : 7,
1561
+ "name" : "169004d9-afc9-4685-8",
1562
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1563
+ "workspace" : "data",
1564
+ "mixinNodeTypes" : [ "mix:lockable" ],
1565
+ "jcr:created" : "2012-09-21T12:24:25.550+08:00",
1566
+ "jcr:uuid" : "7f9d9282-f698-42d6-8360-19ea85e0e1d4",
1567
+ "jcr:primaryType" : "dataItemNode"
1568
+ },
1569
+ "properties" : {
1570
+ "secondary_application" : "169004d9-afc9-4685-876f-d905bb521cff"
1571
+ },
1572
+ "nodes" : { }
1573
+ },
1574
+ "189212fb-2c14-46e3-9" : {
1575
+ "meta" : {
1576
+ "path" : "/products/microphones/en/pg/PG27/secondary_application/189212fb-2c14-46e3-9",
1577
+ "depth" : 7,
1578
+ "name" : "189212fb-2c14-46e3-9",
1579
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1580
+ "workspace" : "data",
1581
+ "mixinNodeTypes" : [ "mix:lockable" ],
1582
+ "jcr:created" : "2012-09-21T12:24:25.551+08:00",
1583
+ "jcr:uuid" : "29a8b828-8956-49d2-a3af-ad622340c986",
1584
+ "jcr:primaryType" : "dataItemNode"
1585
+ },
1586
+ "properties" : {
1587
+ "secondary_application" : "189212fb-2c14-46e3-97b1-1bb2bc707777"
1588
+ },
1589
+ "nodes" : { }
1590
+ },
1591
+ "48a5c740-4e8b-4055-b" : {
1592
+ "meta" : {
1593
+ "path" : "/products/microphones/en/pg/PG27/secondary_application/48a5c740-4e8b-4055-b",
1594
+ "depth" : 7,
1595
+ "name" : "48a5c740-4e8b-4055-b",
1596
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1597
+ "workspace" : "data",
1598
+ "mixinNodeTypes" : [ "mix:lockable" ],
1599
+ "jcr:created" : "2012-09-21T12:24:25.551+08:00",
1600
+ "jcr:uuid" : "8fdb0def-7267-40b5-8efb-15597fcbc0e6",
1601
+ "jcr:primaryType" : "dataItemNode"
1602
+ },
1603
+ "properties" : {
1604
+ "secondary_application" : "48a5c740-4e8b-4055-b7a4-50bc156238ee"
1605
+ },
1606
+ "nodes" : { }
1607
+ }
1608
+ }
1609
+ },
1610
+ "microphone_environments" : {
1611
+ "meta" : {
1612
+ "path" : "/products/microphones/en/pg/PG27/microphone_environments",
1613
+ "depth" : 6,
1614
+ "name" : "microphone_environments",
1615
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1616
+ "workspace" : "data",
1617
+ "mixinNodeTypes" : [ "mix:lockable" ],
1618
+ "jcr:created" : "2012-09-21T12:24:25.552+08:00",
1619
+ "jcr:uuid" : "c0ff43c1-f0ab-4daa-96c2-4a4a4b70b4a7",
1620
+ "jcr:primaryType" : "dataItemNode"
1621
+ },
1622
+ "properties" : { },
1623
+ "nodes" : {
1624
+ "fd50bfde-8e70-4632-9" : {
1625
+ "meta" : {
1626
+ "path" : "/products/microphones/en/pg/PG27/microphone_environments/fd50bfde-8e70-4632-9",
1627
+ "depth" : 7,
1628
+ "name" : "fd50bfde-8e70-4632-9",
1629
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1630
+ "workspace" : "data",
1631
+ "mixinNodeTypes" : [ "mix:lockable" ],
1632
+ "jcr:created" : "2012-09-21T12:24:25.553+08:00",
1633
+ "jcr:uuid" : "d69b284c-951b-4b9f-bbec-7681b92bf810",
1634
+ "jcr:primaryType" : "dataItemNode"
1635
+ },
1636
+ "properties" : {
1637
+ "microphone_environments" : "fd50bfde-8e70-4632-9ce0-e767949686fb"
1638
+ },
1639
+ "nodes" : { }
1640
+ },
1641
+ "60d491df-e6cb-42c3-a" : {
1642
+ "meta" : {
1643
+ "path" : "/products/microphones/en/pg/PG27/microphone_environments/60d491df-e6cb-42c3-a",
1644
+ "depth" : 7,
1645
+ "name" : "60d491df-e6cb-42c3-a",
1646
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1647
+ "workspace" : "data",
1648
+ "mixinNodeTypes" : [ "mix:lockable" ],
1649
+ "jcr:created" : "2012-09-21T12:24:25.553+08:00",
1650
+ "jcr:uuid" : "3f7ce880-3123-43f8-8c53-1a2c5a4c2638",
1651
+ "jcr:primaryType" : "dataItemNode"
1652
+ },
1653
+ "properties" : {
1654
+ "microphone_environments" : "60d491df-e6cb-42c3-a1b0-de51e5c3c93a"
1655
+ },
1656
+ "nodes" : { }
1657
+ }
1658
+ }
1659
+ },
1660
+ "microphone_sounds" : {
1661
+ "meta" : {
1662
+ "path" : "/products/microphones/en/pg/PG27/microphone_sounds",
1663
+ "depth" : 6,
1664
+ "name" : "microphone_sounds",
1665
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1666
+ "workspace" : "data",
1667
+ "mixinNodeTypes" : [ "mix:lockable" ],
1668
+ "jcr:created" : "2012-09-21T12:24:25.554+08:00",
1669
+ "jcr:uuid" : "d62b7570-2703-402a-9e42-46efb03455c8",
1670
+ "jcr:primaryType" : "dataItemNode"
1671
+ },
1672
+ "properties" : { },
1673
+ "nodes" : {
1674
+ "666ef687-a6d7-4403-b" : {
1675
+ "meta" : {
1676
+ "path" : "/products/microphones/en/pg/PG27/microphone_sounds/666ef687-a6d7-4403-b",
1677
+ "depth" : 7,
1678
+ "name" : "666ef687-a6d7-4403-b",
1679
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1680
+ "workspace" : "data",
1681
+ "mixinNodeTypes" : [ "mix:lockable" ],
1682
+ "jcr:created" : "2012-09-21T12:24:25.554+08:00",
1683
+ "jcr:uuid" : "aa188705-112c-4302-bb93-501c1b7582b3",
1684
+ "jcr:primaryType" : "dataItemNode"
1685
+ },
1686
+ "properties" : {
1687
+ "microphone_sounds" : "666ef687-a6d7-4403-bfdd-ced759c91237"
1688
+ },
1689
+ "nodes" : { }
1690
+ }
1691
+ }
1692
+ },
1693
+ "polar_pattern" : {
1694
+ "meta" : {
1695
+ "path" : "/products/microphones/en/pg/PG27/polar_pattern",
1696
+ "depth" : 6,
1697
+ "name" : "polar_pattern",
1698
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1699
+ "workspace" : "data",
1700
+ "mixinNodeTypes" : [ "mix:lockable" ],
1701
+ "jcr:created" : "2012-09-21T12:24:25.556+08:00",
1702
+ "jcr:uuid" : "13842264-9a6a-4987-a085-549376a95a5e",
1703
+ "jcr:primaryType" : "mgnl:contentNode"
1704
+ },
1705
+ "properties" : {
1706
+ "0" : "cardioid"
1707
+ },
1708
+ "nodes" : {
1709
+ "MetaData" : {
1710
+ "meta" : {
1711
+ "path" : "/products/microphones/en/pg/PG27/polar_pattern/MetaData",
1712
+ "depth" : 7,
1713
+ "name" : "MetaData",
1714
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1715
+ "workspace" : "data",
1716
+ "mixinNodeTypes" : [ ],
1717
+ "jcr:created" : "2012-09-21T12:24:25.556+08:00",
1718
+ "jcr:uuid" : "00342cd0-fe65-47d1-9de6-b29d210f5b30",
1719
+ "jcr:primaryType" : "mgnl:metaData"
1720
+ },
1721
+ "properties" : {
1722
+ "mgnl:creationdate" : "2012-09-21T12:24:25.556+08:00"
1723
+ },
1724
+ "nodes" : { }
1725
+ }
1726
+ }
1727
+ },
1728
+ "adaptors" : {
1729
+ "meta" : {
1730
+ "path" : "/products/microphones/en/pg/PG27/adaptors",
1731
+ "depth" : 6,
1732
+ "name" : "adaptors",
1733
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1734
+ "workspace" : "data",
1735
+ "mixinNodeTypes" : [ "mix:lockable" ],
1736
+ "jcr:created" : "2012-09-21T12:24:25.559+08:00",
1737
+ "jcr:uuid" : "31b8f66c-6d48-4cfb-a04d-2707de45f3b9",
1738
+ "jcr:primaryType" : "mgnl:contentNode"
1739
+ },
1740
+ "properties" : {
1741
+ "0" : "XLR"
1742
+ },
1743
+ "nodes" : {
1744
+ "MetaData" : {
1745
+ "meta" : {
1746
+ "path" : "/products/microphones/en/pg/PG27/adaptors/MetaData",
1747
+ "depth" : 7,
1748
+ "name" : "MetaData",
1749
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1750
+ "workspace" : "data",
1751
+ "mixinNodeTypes" : [ ],
1752
+ "jcr:created" : "2012-09-21T12:24:25.559+08:00",
1753
+ "jcr:uuid" : "deb2b875-e1c6-46e9-a59d-1eb4ea261a9a",
1754
+ "jcr:primaryType" : "mgnl:metaData"
1755
+ },
1756
+ "properties" : {
1757
+ "mgnl:creationdate" : "2012-09-21T12:24:25.559+08:00"
1758
+ },
1759
+ "nodes" : { }
1760
+ }
1761
+ }
1762
+ },
1763
+ "attenuator" : {
1764
+ "meta" : {
1765
+ "path" : "/products/microphones/en/pg/PG27/attenuator",
1766
+ "depth" : 6,
1767
+ "name" : "attenuator",
1768
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1769
+ "workspace" : "data",
1770
+ "mixinNodeTypes" : [ "mix:lockable" ],
1771
+ "jcr:created" : "2012-09-21T12:24:25.560+08:00",
1772
+ "jcr:uuid" : "b04c537f-4a3d-47fb-9f0a-46daf55e725a",
1773
+ "jcr:primaryType" : "mgnl:contentNode"
1774
+ },
1775
+ "properties" : {
1776
+ "0" : "true"
1777
+ },
1778
+ "nodes" : {
1779
+ "MetaData" : {
1780
+ "meta" : {
1781
+ "path" : "/products/microphones/en/pg/PG27/attenuator/MetaData",
1782
+ "depth" : 7,
1783
+ "name" : "MetaData",
1784
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1785
+ "workspace" : "data",
1786
+ "mixinNodeTypes" : [ ],
1787
+ "jcr:created" : "2012-09-21T12:24:25.560+08:00",
1788
+ "jcr:uuid" : "3a1b08d2-8a9a-4671-97e8-5030257b3dbb",
1789
+ "jcr:primaryType" : "mgnl:metaData"
1790
+ },
1791
+ "properties" : {
1792
+ "mgnl:creationdate" : "2012-09-21T12:24:25.560+08:00"
1793
+ },
1794
+ "nodes" : { }
1795
+ }
1796
+ }
1797
+ },
1798
+ "sound_demos" : {
1799
+ "meta" : {
1800
+ "path" : "/products/microphones/en/pg/PG27/sound_demos",
1801
+ "depth" : 6,
1802
+ "name" : "sound_demos",
1803
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1804
+ "workspace" : "data",
1805
+ "mixinNodeTypes" : [ "mix:lockable" ],
1806
+ "jcr:created" : "2012-09-21T12:24:25.562+08:00",
1807
+ "jcr:uuid" : "e952bf6a-c56c-4ec5-8d39-95e3fffd7ee6",
1808
+ "jcr:primaryType" : "dataItemNode"
1809
+ },
1810
+ "properties" : { },
1811
+ "nodes" : {
1812
+ "5e30454f-6409-4601-a" : {
1813
+ "meta" : {
1814
+ "path" : "/products/microphones/en/pg/PG27/sound_demos/5e30454f-6409-4601-a",
1815
+ "depth" : 7,
1816
+ "name" : "5e30454f-6409-4601-a",
1817
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1818
+ "workspace" : "data",
1819
+ "mixinNodeTypes" : [ "mix:lockable" ],
1820
+ "jcr:created" : "2012-09-21T12:24:25.562+08:00",
1821
+ "jcr:uuid" : "5544bd38-cdc8-499b-888e-d2a7a78632e9",
1822
+ "jcr:primaryType" : "dataItemNode"
1823
+ },
1824
+ "properties" : {
1825
+ "sound_demos" : "5e30454f-6409-4601-ad43-33903b34280a"
1826
+ },
1827
+ "nodes" : { }
1828
+ },
1829
+ "21f4e2f2-b1a3-4a14-b" : {
1830
+ "meta" : {
1831
+ "path" : "/products/microphones/en/pg/PG27/sound_demos/21f4e2f2-b1a3-4a14-b",
1832
+ "depth" : 7,
1833
+ "name" : "21f4e2f2-b1a3-4a14-b",
1834
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1835
+ "workspace" : "data",
1836
+ "mixinNodeTypes" : [ "mix:lockable" ],
1837
+ "jcr:created" : "2012-09-21T12:24:25.563+08:00",
1838
+ "jcr:uuid" : "a82fd665-3ce3-4569-8c95-06ab4bfa7c09",
1839
+ "jcr:primaryType" : "dataItemNode"
1840
+ },
1841
+ "properties" : {
1842
+ "sound_demos" : "21f4e2f2-b1a3-4a14-bece-fafdc35cc355"
1843
+ },
1844
+ "nodes" : { }
1845
+ },
1846
+ "40641553-df6b-4569-a" : {
1847
+ "meta" : {
1848
+ "path" : "/products/microphones/en/pg/PG27/sound_demos/40641553-df6b-4569-a",
1849
+ "depth" : 7,
1850
+ "name" : "40641553-df6b-4569-a",
1851
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1852
+ "workspace" : "data",
1853
+ "mixinNodeTypes" : [ "mix:lockable" ],
1854
+ "jcr:created" : "2012-09-21T12:24:25.563+08:00",
1855
+ "jcr:uuid" : "418a3803-70f3-4a96-8f20-3b5a0fc9c700",
1856
+ "jcr:primaryType" : "dataItemNode"
1857
+ },
1858
+ "properties" : {
1859
+ "sound_demos" : "40641553-df6b-4569-a77c-51e3ab91f8a7"
1860
+ },
1861
+ "nodes" : { }
1862
+ },
1863
+ "c0989a52-9a39-4ca6-a" : {
1864
+ "meta" : {
1865
+ "path" : "/products/microphones/en/pg/PG27/sound_demos/c0989a52-9a39-4ca6-a",
1866
+ "depth" : 7,
1867
+ "name" : "c0989a52-9a39-4ca6-a",
1868
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1869
+ "workspace" : "data",
1870
+ "mixinNodeTypes" : [ "mix:lockable" ],
1871
+ "jcr:created" : "2012-09-21T12:24:25.564+08:00",
1872
+ "jcr:uuid" : "222fd3de-952c-43e3-93f3-62f793da8022",
1873
+ "jcr:primaryType" : "dataItemNode"
1874
+ },
1875
+ "properties" : {
1876
+ "sound_demos" : "c0989a52-9a39-4ca6-a7f5-2994170b6ae1"
1877
+ },
1878
+ "nodes" : { }
1879
+ },
1880
+ "6bd12e9d-a9f9-4030-b" : {
1881
+ "meta" : {
1882
+ "path" : "/products/microphones/en/pg/PG27/sound_demos/6bd12e9d-a9f9-4030-b",
1883
+ "depth" : 7,
1884
+ "name" : "6bd12e9d-a9f9-4030-b",
1885
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1886
+ "workspace" : "data",
1887
+ "mixinNodeTypes" : [ "mix:lockable" ],
1888
+ "jcr:created" : "2012-09-21T12:24:25.564+08:00",
1889
+ "jcr:uuid" : "8421a8e6-5b8f-45ef-8f3c-edd251d6328b",
1890
+ "jcr:primaryType" : "dataItemNode"
1891
+ },
1892
+ "properties" : {
1893
+ "sound_demos" : "6bd12e9d-a9f9-4030-bda6-d4a0b75a9bd4"
1894
+ },
1895
+ "nodes" : { }
1896
+ },
1897
+ "ab9392fc-f33b-4dad-a" : {
1898
+ "meta" : {
1899
+ "path" : "/products/microphones/en/pg/PG27/sound_demos/ab9392fc-f33b-4dad-a",
1900
+ "depth" : 7,
1901
+ "name" : "ab9392fc-f33b-4dad-a",
1902
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1903
+ "workspace" : "data",
1904
+ "mixinNodeTypes" : [ "mix:lockable" ],
1905
+ "jcr:created" : "2012-09-21T12:24:25.565+08:00",
1906
+ "jcr:uuid" : "1de512d1-db57-4948-b691-d2409e67deb0",
1907
+ "jcr:primaryType" : "dataItemNode"
1908
+ },
1909
+ "properties" : {
1910
+ "sound_demos" : "ab9392fc-f33b-4dad-a632-d739170f32d9"
1911
+ },
1912
+ "nodes" : { }
1913
+ },
1914
+ "8ff079e7-e156-4230-b" : {
1915
+ "meta" : {
1916
+ "path" : "/products/microphones/en/pg/PG27/sound_demos/8ff079e7-e156-4230-b",
1917
+ "depth" : 7,
1918
+ "name" : "8ff079e7-e156-4230-b",
1919
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1920
+ "workspace" : "data",
1921
+ "mixinNodeTypes" : [ "mix:lockable" ],
1922
+ "jcr:created" : "2012-09-21T12:24:25.566+08:00",
1923
+ "jcr:uuid" : "a3f5977f-2a8f-4973-af49-37c57c803454",
1924
+ "jcr:primaryType" : "dataItemNode"
1925
+ },
1926
+ "properties" : {
1927
+ "sound_demos" : "8ff079e7-e156-4230-b5c5-1e903bad9210"
1928
+ },
1929
+ "nodes" : { }
1930
+ }
1931
+ }
1932
+ },
1933
+ "videos" : {
1934
+ "meta" : {
1935
+ "path" : "/products/microphones/en/pg/PG27/videos",
1936
+ "depth" : 6,
1937
+ "name" : "videos",
1938
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1939
+ "workspace" : "data",
1940
+ "mixinNodeTypes" : [ "mix:lockable" ],
1941
+ "jcr:created" : "2012-09-21T12:24:25.567+08:00",
1942
+ "jcr:uuid" : "e2c7cdc0-ae59-4619-8a59-4f226be1cd5e",
1943
+ "jcr:primaryType" : "dataItemNode"
1944
+ },
1945
+ "properties" : { },
1946
+ "nodes" : {
1947
+ "3c9f1700-e0aa-4533-a" : {
1948
+ "meta" : {
1949
+ "path" : "/products/microphones/en/pg/PG27/videos/3c9f1700-e0aa-4533-a",
1950
+ "depth" : 7,
1951
+ "name" : "3c9f1700-e0aa-4533-a",
1952
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1953
+ "workspace" : "data",
1954
+ "mixinNodeTypes" : [ "mix:lockable" ],
1955
+ "jcr:created" : "2012-09-21T12:24:25.567+08:00",
1956
+ "jcr:uuid" : "f02553fb-c99a-4b34-b1fd-944ad6dfee75",
1957
+ "jcr:primaryType" : "dataItemNode"
1958
+ },
1959
+ "properties" : {
1960
+ "videos" : "3c9f1700-e0aa-4533-ae2d-893457e5147f"
1961
+ },
1962
+ "nodes" : { }
1963
+ },
1964
+ "7054c086-5ce7-4729-9" : {
1965
+ "meta" : {
1966
+ "path" : "/products/microphones/en/pg/PG27/videos/7054c086-5ce7-4729-9",
1967
+ "depth" : 7,
1968
+ "name" : "7054c086-5ce7-4729-9",
1969
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1970
+ "workspace" : "data",
1971
+ "mixinNodeTypes" : [ "mix:lockable" ],
1972
+ "jcr:created" : "2012-09-21T12:24:25.568+08:00",
1973
+ "jcr:uuid" : "f3fe12ad-3846-4074-97e9-f7dd22ab2019",
1974
+ "jcr:primaryType" : "dataItemNode"
1975
+ },
1976
+ "properties" : {
1977
+ "videos" : "7054c086-5ce7-4729-953f-2acb775ab7e6"
1978
+ },
1979
+ "nodes" : { }
1980
+ }
1981
+ }
1982
+ },
1983
+ "user_guide" : {
1984
+ "meta" : {
1985
+ "path" : "/products/microphones/en/pg/PG27/user_guide",
1986
+ "depth" : 6,
1987
+ "name" : "user_guide",
1988
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
1989
+ "workspace" : "data",
1990
+ "mixinNodeTypes" : [ "mix:lockable" ],
1991
+ "jcr:created" : "2012-09-21T12:24:25.569+08:00",
1992
+ "jcr:uuid" : "6b5388e3-5bcd-4add-8f62-8736de54273a",
1993
+ "jcr:primaryType" : "dataItemNode"
1994
+ },
1995
+ "properties" : { },
1996
+ "nodes" : {
1997
+ "ef2345e6-b616-42ac-9" : {
1998
+ "meta" : {
1999
+ "path" : "/products/microphones/en/pg/PG27/user_guide/ef2345e6-b616-42ac-9",
2000
+ "depth" : 7,
2001
+ "name" : "ef2345e6-b616-42ac-9",
2002
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
2003
+ "workspace" : "data",
2004
+ "mixinNodeTypes" : [ "mix:lockable" ],
2005
+ "jcr:created" : "2012-09-21T12:24:25.569+08:00",
2006
+ "jcr:uuid" : "5dfa84e0-e820-48df-8b43-257fa05232a2",
2007
+ "jcr:primaryType" : "dataItemNode"
2008
+ },
2009
+ "properties" : {
2010
+ "user_guide" : "ef2345e6-b616-42ac-9f5a-2e911982c0ee"
2011
+ },
2012
+ "nodes" : { }
2013
+ }
2014
+ }
2015
+ },
2016
+ "how_to" : {
2017
+ "meta" : {
2018
+ "path" : "/products/microphones/en/pg/PG27/how_to",
2019
+ "depth" : 6,
2020
+ "name" : "how_to",
2021
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
2022
+ "workspace" : "data",
2023
+ "mixinNodeTypes" : [ "mix:lockable" ],
2024
+ "jcr:created" : "2012-09-21T12:24:25.570+08:00",
2025
+ "jcr:uuid" : "8f4ae566-7b35-4921-8633-94972657b9ee",
2026
+ "jcr:primaryType" : "dataItemNode"
2027
+ },
2028
+ "properties" : { },
2029
+ "nodes" : {
2030
+ "ac6cda60-2b72-48dd-a" : {
2031
+ "meta" : {
2032
+ "path" : "/products/microphones/en/pg/PG27/how_to/ac6cda60-2b72-48dd-a",
2033
+ "depth" : 7,
2034
+ "name" : "ac6cda60-2b72-48dd-a",
2035
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
2036
+ "workspace" : "data",
2037
+ "mixinNodeTypes" : [ "mix:lockable" ],
2038
+ "jcr:created" : "2012-09-21T12:24:25.571+08:00",
2039
+ "jcr:uuid" : "f2c634f8-95d2-4b24-a5f9-ab0312011a26",
2040
+ "jcr:primaryType" : "dataItemNode"
2041
+ },
2042
+ "properties" : {
2043
+ "how_to" : "ac6cda60-2b72-48dd-ab48-b13d17f61fb1"
2044
+ },
2045
+ "nodes" : { }
2046
+ },
2047
+ "e9e958ab-c4f8-47bb-8" : {
2048
+ "meta" : {
2049
+ "path" : "/products/microphones/en/pg/PG27/how_to/e9e958ab-c4f8-47bb-8",
2050
+ "depth" : 7,
2051
+ "name" : "e9e958ab-c4f8-47bb-8",
2052
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
2053
+ "workspace" : "data",
2054
+ "mixinNodeTypes" : [ "mix:lockable" ],
2055
+ "jcr:created" : "2012-09-21T12:24:25.571+08:00",
2056
+ "jcr:uuid" : "9ea1a115-b0a4-4038-b043-68c5fd2b8b94",
2057
+ "jcr:primaryType" : "dataItemNode"
2058
+ },
2059
+ "properties" : {
2060
+ "how_to" : "e9e958ab-c4f8-47bb-8b23-10c5d8325779"
2061
+ },
2062
+ "nodes" : { }
2063
+ },
2064
+ "1a15425f-3e3f-4c72-a" : {
2065
+ "meta" : {
2066
+ "path" : "/products/microphones/en/pg/PG27/how_to/1a15425f-3e3f-4c72-a",
2067
+ "depth" : 7,
2068
+ "name" : "1a15425f-3e3f-4c72-a",
2069
+ "superTypes" : [ "dataBase", "dataItemBase", "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
2070
+ "workspace" : "data",
2071
+ "mixinNodeTypes" : [ "mix:lockable" ],
2072
+ "jcr:created" : "2012-09-21T12:24:25.572+08:00",
2073
+ "jcr:uuid" : "9cc19ab5-3398-4c70-a780-54e760964790",
2074
+ "jcr:primaryType" : "dataItemNode"
2075
+ },
2076
+ "properties" : {
2077
+ "how_to" : "1a15425f-3e3f-4c72-a1b2-83c9f6c684ba"
2078
+ },
2079
+ "nodes" : { }
2080
+ }
2081
+ }
2082
+ }
2083
+ }
2084
+ } ]