gooddata-edge 0.6.27.edge

Sign up to get free protection for your applications and to get access to all the features.
Files changed (364) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.gitignore +36 -0
  4. data/.rspec +3 -0
  5. data/.rubocop.yml +89 -0
  6. data/.yardopts +22 -0
  7. data/CHANGELOG.md +196 -0
  8. data/CLI.md +439 -0
  9. data/DEPENDENCIES.md +817 -0
  10. data/Gemfile +4 -0
  11. data/Guardfile +5 -0
  12. data/LICENSE +22 -0
  13. data/LICENSE.rb +5 -0
  14. data/README.md +75 -0
  15. data/Rakefile +179 -0
  16. data/TODO.md +32 -0
  17. data/authors.sh +4 -0
  18. data/bin/gooddata +7 -0
  19. data/dependency_decisions.yml +104 -0
  20. data/gooddata +9 -0
  21. data/gooddata.gemspec +63 -0
  22. data/lib/gooddata.rb +31 -0
  23. data/lib/gooddata/app/app.rb +16 -0
  24. data/lib/gooddata/bricks/base_downloader.rb +86 -0
  25. data/lib/gooddata/bricks/brick.rb +38 -0
  26. data/lib/gooddata/bricks/bricks.rb +15 -0
  27. data/lib/gooddata/bricks/middleware/aws_middleware.rb +29 -0
  28. data/lib/gooddata/bricks/middleware/base_middleware.rb +56 -0
  29. data/lib/gooddata/bricks/middleware/bench_middleware.rb +24 -0
  30. data/lib/gooddata/bricks/middleware/bulk_salesforce_middleware.rb +37 -0
  31. data/lib/gooddata/bricks/middleware/decode_params_middleware.rb +20 -0
  32. data/lib/gooddata/bricks/middleware/fs_download_middleware.rb +48 -0
  33. data/lib/gooddata/bricks/middleware/fs_upload_middleware.rb +36 -0
  34. data/lib/gooddata/bricks/middleware/gooddata_middleware.rb +39 -0
  35. data/lib/gooddata/bricks/middleware/logger_middleware.rb +29 -0
  36. data/lib/gooddata/bricks/middleware/middleware.rb +12 -0
  37. data/lib/gooddata/bricks/middleware/restforce_middleware.rb +61 -0
  38. data/lib/gooddata/bricks/middleware/stdout_middleware.rb +23 -0
  39. data/lib/gooddata/bricks/middleware/twitter_middleware.rb +29 -0
  40. data/lib/gooddata/bricks/middleware/undot_params_middleware.rb +37 -0
  41. data/lib/gooddata/bricks/pipeline.rb +32 -0
  42. data/lib/gooddata/bricks/utils.rb +18 -0
  43. data/lib/gooddata/cli/cli.rb +27 -0
  44. data/lib/gooddata/cli/commands/auth_cmd.rb +29 -0
  45. data/lib/gooddata/cli/commands/domain_cmd.rb +28 -0
  46. data/lib/gooddata/cli/commands/project_cmd.rb +45 -0
  47. data/lib/gooddata/cli/hooks.rb +57 -0
  48. data/lib/gooddata/cli/shared.rb +61 -0
  49. data/lib/gooddata/cli/terminal.rb +20 -0
  50. data/lib/gooddata/client.rb +67 -0
  51. data/lib/gooddata/commands/api.rb +64 -0
  52. data/lib/gooddata/commands/auth.rb +107 -0
  53. data/lib/gooddata/commands/base.rb +12 -0
  54. data/lib/gooddata/commands/commands.rb +12 -0
  55. data/lib/gooddata/commands/datasets.rb +148 -0
  56. data/lib/gooddata/commands/datawarehouse.rb +20 -0
  57. data/lib/gooddata/commands/domain.rb +40 -0
  58. data/lib/gooddata/commands/process.rb +67 -0
  59. data/lib/gooddata/commands/project.rb +175 -0
  60. data/lib/gooddata/commands/projects.rb +20 -0
  61. data/lib/gooddata/commands/role.rb +36 -0
  62. data/lib/gooddata/commands/runners.rb +47 -0
  63. data/lib/gooddata/commands/scaffold.rb +69 -0
  64. data/lib/gooddata/commands/user.rb +39 -0
  65. data/lib/gooddata/connection.rb +127 -0
  66. data/lib/gooddata/core/core.rb +12 -0
  67. data/lib/gooddata/core/logging.rb +105 -0
  68. data/lib/gooddata/core/nil_logger.rb +23 -0
  69. data/lib/gooddata/core/project.rb +74 -0
  70. data/lib/gooddata/core/rest.rb +149 -0
  71. data/lib/gooddata/core/user.rb +20 -0
  72. data/lib/gooddata/data/data.rb +12 -0
  73. data/lib/gooddata/data/guesser.rb +122 -0
  74. data/lib/gooddata/exceptions/attr_element_not_found.rb +16 -0
  75. data/lib/gooddata/exceptions/command_failed.rb +11 -0
  76. data/lib/gooddata/exceptions/exceptions.rb +12 -0
  77. data/lib/gooddata/exceptions/execution_limit_exceeded.rb +13 -0
  78. data/lib/gooddata/exceptions/filter_maqlization.rb +16 -0
  79. data/lib/gooddata/exceptions/malformed_user.rb +15 -0
  80. data/lib/gooddata/exceptions/no_project_error.rb +15 -0
  81. data/lib/gooddata/exceptions/object_migration.rb +32 -0
  82. data/lib/gooddata/exceptions/project_not_found.rb +13 -0
  83. data/lib/gooddata/exceptions/segment_not_empty.rb +18 -0
  84. data/lib/gooddata/exceptions/uncomputable_report.rb +13 -0
  85. data/lib/gooddata/exceptions/user_in_different_domain.rb +15 -0
  86. data/lib/gooddata/exceptions/validation_error.rb +16 -0
  87. data/lib/gooddata/extensions/big_decimal.rb +17 -0
  88. data/lib/gooddata/extensions/enumerable.rb +39 -0
  89. data/lib/gooddata/extensions/extensions.rb +10 -0
  90. data/lib/gooddata/extensions/false.rb +15 -0
  91. data/lib/gooddata/extensions/hash.rb +38 -0
  92. data/lib/gooddata/extensions/nil.rb +15 -0
  93. data/lib/gooddata/extensions/numeric.rb +15 -0
  94. data/lib/gooddata/extensions/object.rb +27 -0
  95. data/lib/gooddata/extensions/symbol.rb +15 -0
  96. data/lib/gooddata/extensions/true.rb +15 -0
  97. data/lib/gooddata/extract.rb +21 -0
  98. data/lib/gooddata/goodzilla/goodzilla.rb +159 -0
  99. data/lib/gooddata/helpers/auth_helpers.rb +75 -0
  100. data/lib/gooddata/helpers/csv_helper.rb +61 -0
  101. data/lib/gooddata/helpers/data_helper.rb +116 -0
  102. data/lib/gooddata/helpers/global_helpers.rb +331 -0
  103. data/lib/gooddata/helpers/global_helpers_params.rb +172 -0
  104. data/lib/gooddata/helpers/helpers.rb +10 -0
  105. data/lib/gooddata/mixins/author.rb +26 -0
  106. data/lib/gooddata/mixins/content_getter.rb +15 -0
  107. data/lib/gooddata/mixins/content_property_reader.rb +17 -0
  108. data/lib/gooddata/mixins/content_property_writer.rb +17 -0
  109. data/lib/gooddata/mixins/contributor.rb +20 -0
  110. data/lib/gooddata/mixins/data_getter.rb +15 -0
  111. data/lib/gooddata/mixins/data_property_reader.rb +19 -0
  112. data/lib/gooddata/mixins/data_property_writer.rb +19 -0
  113. data/lib/gooddata/mixins/inspector.rb +53 -0
  114. data/lib/gooddata/mixins/is_attribute.rb +17 -0
  115. data/lib/gooddata/mixins/is_dimension.rb +17 -0
  116. data/lib/gooddata/mixins/is_fact.rb +17 -0
  117. data/lib/gooddata/mixins/is_label.rb +19 -0
  118. data/lib/gooddata/mixins/links.rb +15 -0
  119. data/lib/gooddata/mixins/md_finders.rb +77 -0
  120. data/lib/gooddata/mixins/md_grantees.rb +42 -0
  121. data/lib/gooddata/mixins/md_id_to_uri.rb +34 -0
  122. data/lib/gooddata/mixins/md_json.rb +15 -0
  123. data/lib/gooddata/mixins/md_lock.rb +87 -0
  124. data/lib/gooddata/mixins/md_object_id.rb +15 -0
  125. data/lib/gooddata/mixins/md_object_indexer.rb +64 -0
  126. data/lib/gooddata/mixins/md_object_query.rb +128 -0
  127. data/lib/gooddata/mixins/md_relations.rb +43 -0
  128. data/lib/gooddata/mixins/meta_getter.rb +17 -0
  129. data/lib/gooddata/mixins/meta_property_reader.rb +19 -0
  130. data/lib/gooddata/mixins/meta_property_writer.rb +19 -0
  131. data/lib/gooddata/mixins/mixins.rb +19 -0
  132. data/lib/gooddata/mixins/not_attribute.rb +17 -0
  133. data/lib/gooddata/mixins/not_exportable.rb +15 -0
  134. data/lib/gooddata/mixins/not_fact.rb +17 -0
  135. data/lib/gooddata/mixins/not_group.rb +17 -0
  136. data/lib/gooddata/mixins/not_label.rb +19 -0
  137. data/lib/gooddata/mixins/not_metric.rb +19 -0
  138. data/lib/gooddata/mixins/obj_id.rb +15 -0
  139. data/lib/gooddata/mixins/rest_getters.rb +17 -0
  140. data/lib/gooddata/mixins/rest_resource.rb +47 -0
  141. data/lib/gooddata/mixins/root_key_getter.rb +15 -0
  142. data/lib/gooddata/mixins/root_key_setter.rb +15 -0
  143. data/lib/gooddata/mixins/timestamps.rb +19 -0
  144. data/lib/gooddata/mixins/to_json.rb +11 -0
  145. data/lib/gooddata/mixins/uri_getter.rb +9 -0
  146. data/lib/gooddata/models/blueprint/anchor_field.rb +64 -0
  147. data/lib/gooddata/models/blueprint/attribute_field.rb +29 -0
  148. data/lib/gooddata/models/blueprint/blueprint.rb +11 -0
  149. data/lib/gooddata/models/blueprint/blueprint_field.rb +70 -0
  150. data/lib/gooddata/models/blueprint/dashboard_builder.rb +30 -0
  151. data/lib/gooddata/models/blueprint/dataset_blueprint.rb +449 -0
  152. data/lib/gooddata/models/blueprint/date_dimension.rb +14 -0
  153. data/lib/gooddata/models/blueprint/fact_field.rb +20 -0
  154. data/lib/gooddata/models/blueprint/label_field.rb +43 -0
  155. data/lib/gooddata/models/blueprint/project_blueprint.rb +746 -0
  156. data/lib/gooddata/models/blueprint/project_builder.rb +83 -0
  157. data/lib/gooddata/models/blueprint/reference_field.rb +43 -0
  158. data/lib/gooddata/models/blueprint/schema_blueprint.rb +160 -0
  159. data/lib/gooddata/models/blueprint/schema_builder.rb +89 -0
  160. data/lib/gooddata/models/blueprint/to_manifest.rb +181 -0
  161. data/lib/gooddata/models/blueprint/to_wire.rb +154 -0
  162. data/lib/gooddata/models/client.rb +182 -0
  163. data/lib/gooddata/models/client_synchronization_result.rb +31 -0
  164. data/lib/gooddata/models/client_synchronization_result_details.rb +41 -0
  165. data/lib/gooddata/models/datawarehouse.rb +92 -0
  166. data/lib/gooddata/models/domain.rb +479 -0
  167. data/lib/gooddata/models/execution.rb +115 -0
  168. data/lib/gooddata/models/execution_detail.rb +81 -0
  169. data/lib/gooddata/models/from_wire.rb +160 -0
  170. data/lib/gooddata/models/invitation.rb +75 -0
  171. data/lib/gooddata/models/links.rb +50 -0
  172. data/lib/gooddata/models/membership.rb +441 -0
  173. data/lib/gooddata/models/metadata.rb +272 -0
  174. data/lib/gooddata/models/metadata/attribute.rb +134 -0
  175. data/lib/gooddata/models/metadata/dashboard.rb +108 -0
  176. data/lib/gooddata/models/metadata/dashboard/dashboard_item.rb +76 -0
  177. data/lib/gooddata/models/metadata/dashboard/filter_apply_item.rb +37 -0
  178. data/lib/gooddata/models/metadata/dashboard/filter_item.rb +64 -0
  179. data/lib/gooddata/models/metadata/dashboard/geo_chart_item.rb +56 -0
  180. data/lib/gooddata/models/metadata/dashboard/headline_item.rb +56 -0
  181. data/lib/gooddata/models/metadata/dashboard/iframe_item.rb +46 -0
  182. data/lib/gooddata/models/metadata/dashboard/report_item.rb +92 -0
  183. data/lib/gooddata/models/metadata/dashboard/text_item.rb +55 -0
  184. data/lib/gooddata/models/metadata/dashboard_tab.rb +141 -0
  185. data/lib/gooddata/models/metadata/dataset.rb +64 -0
  186. data/lib/gooddata/models/metadata/dimension.rb +54 -0
  187. data/lib/gooddata/models/metadata/fact.rb +44 -0
  188. data/lib/gooddata/models/metadata/label.rb +128 -0
  189. data/lib/gooddata/models/metadata/metadata.rb +12 -0
  190. data/lib/gooddata/models/metadata/metric.rb +198 -0
  191. data/lib/gooddata/models/metadata/report.rb +247 -0
  192. data/lib/gooddata/models/metadata/report_definition.rb +264 -0
  193. data/lib/gooddata/models/metadata/scheduled_mail.rb +274 -0
  194. data/lib/gooddata/models/metadata/scheduled_mail/dashboard_attachment.rb +62 -0
  195. data/lib/gooddata/models/metadata/scheduled_mail/report_attachment.rb +64 -0
  196. data/lib/gooddata/models/metadata/variable.rb +91 -0
  197. data/lib/gooddata/models/model.rb +282 -0
  198. data/lib/gooddata/models/models.rb +12 -0
  199. data/lib/gooddata/models/module_constants.rb +31 -0
  200. data/lib/gooddata/models/process.rb +316 -0
  201. data/lib/gooddata/models/profile.rb +426 -0
  202. data/lib/gooddata/models/project.rb +1514 -0
  203. data/lib/gooddata/models/project_creator.rb +126 -0
  204. data/lib/gooddata/models/project_metadata.rb +67 -0
  205. data/lib/gooddata/models/project_role.rb +79 -0
  206. data/lib/gooddata/models/report_data_result.rb +266 -0
  207. data/lib/gooddata/models/schedule.rb +518 -0
  208. data/lib/gooddata/models/segment.rb +201 -0
  209. data/lib/gooddata/models/tab_builder.rb +27 -0
  210. data/lib/gooddata/models/user_filters/mandatory_user_filter.rb +76 -0
  211. data/lib/gooddata/models/user_filters/user_filter.rb +100 -0
  212. data/lib/gooddata/models/user_filters/user_filter_builder.rb +512 -0
  213. data/lib/gooddata/models/user_filters/user_filters.rb +13 -0
  214. data/lib/gooddata/models/user_filters/variable_user_filter.rb +31 -0
  215. data/lib/gooddata/models/user_group.rb +241 -0
  216. data/lib/gooddata/rest/README.md +37 -0
  217. data/lib/gooddata/rest/client.rb +389 -0
  218. data/lib/gooddata/rest/connection.rb +765 -0
  219. data/lib/gooddata/rest/object.rb +69 -0
  220. data/lib/gooddata/rest/object_factory.rb +76 -0
  221. data/lib/gooddata/rest/resource.rb +27 -0
  222. data/lib/gooddata/rest/rest.rb +24 -0
  223. data/lib/gooddata/version.rb +23 -0
  224. data/lib/templates/bricks/brick.rb.erb +7 -0
  225. data/lib/templates/bricks/main.rb.erb +5 -0
  226. data/lib/templates/project/Goodfile.erb +4 -0
  227. data/lib/templates/project/data/commits.csv +4 -0
  228. data/lib/templates/project/data/devs.csv +4 -0
  229. data/lib/templates/project/data/repos.csv +3 -0
  230. data/lib/templates/project/model/model.rb.erb +20 -0
  231. data/spec/bricks/bricks_spec.rb +112 -0
  232. data/spec/bricks/default-config.json +8 -0
  233. data/spec/data/.gooddata +4 -0
  234. data/spec/data/blueprints/additional_dataset_module.json +32 -0
  235. data/spec/data/blueprints/big_blueprint_not_pruned.json +2079 -0
  236. data/spec/data/blueprints/invalid_blueprint.json +103 -0
  237. data/spec/data/blueprints/m_n_model.json +104 -0
  238. data/spec/data/blueprints/model_module.json +25 -0
  239. data/spec/data/blueprints/test_blueprint.json +38 -0
  240. data/spec/data/blueprints/test_project_model_spec.json +106 -0
  241. data/spec/data/cc/data/source/commits.csv +4 -0
  242. data/spec/data/cc/data/source/devs.csv +4 -0
  243. data/spec/data/cc/data/source/repos.csv +3 -0
  244. data/spec/data/cc/devel.prm +0 -0
  245. data/spec/data/cc/graph/graph.grf +11 -0
  246. data/spec/data/cc/workspace.prm +19 -0
  247. data/spec/data/column_based_permissions.csv +7 -0
  248. data/spec/data/column_based_permissions2.csv +6 -0
  249. data/spec/data/gd_gse_data_blueprint.json +1371 -0
  250. data/spec/data/gd_gse_data_manifest.json +1424 -0
  251. data/spec/data/gd_gse_data_model.json +1772 -0
  252. data/spec/data/gooddata_version_process/gooddata_version.rb +9 -0
  253. data/spec/data/gooddata_version_process/gooddata_version.zip +0 -0
  254. data/spec/data/hello_world_process/hello_world.rb +9 -0
  255. data/spec/data/hello_world_process/hello_world.zip +0 -0
  256. data/spec/data/line_based_permissions.csv +3 -0
  257. data/spec/data/manifests/test_blueprint.json +32 -0
  258. data/spec/data/manifests/test_project.json +107 -0
  259. data/spec/data/reports/left_attr_report.json +108 -0
  260. data/spec/data/reports/metric_only_one_line.json +83 -0
  261. data/spec/data/reports/report_1.json +197 -0
  262. data/spec/data/reports/top_attr_report.json +108 -0
  263. data/spec/data/ruby_params_process/ruby_params.rb +9 -0
  264. data/spec/data/ruby_process/deep_files/deep_stuff.txt +1 -0
  265. data/spec/data/ruby_process/process.rb +8 -0
  266. data/spec/data/ruby_process/stuff.txt +1 -0
  267. data/spec/data/superfluous_titles_view.json +81 -0
  268. data/spec/data/test-ci-data.csv +2 -0
  269. data/spec/data/users.csv +12 -0
  270. data/spec/data/wire_models/model_view.json +1775 -0
  271. data/spec/data/wire_models/nu_model.json +3046 -0
  272. data/spec/data/wire_models/test_blueprint.json +63 -0
  273. data/spec/data/wire_test_project.json +150 -0
  274. data/spec/environment/default.rb +41 -0
  275. data/spec/environment/develop.rb +31 -0
  276. data/spec/environment/environment.rb +18 -0
  277. data/spec/environment/hotfix.rb +21 -0
  278. data/spec/environment/production.rb +35 -0
  279. data/spec/environment/release.rb +21 -0
  280. data/spec/environment/staging.rb +30 -0
  281. data/spec/environment/staging_3.rb +36 -0
  282. data/spec/helpers/blueprint_helper.rb +26 -0
  283. data/spec/helpers/cli_helper.rb +36 -0
  284. data/spec/helpers/connection_helper.rb +41 -0
  285. data/spec/helpers/crypto_helper.rb +17 -0
  286. data/spec/helpers/csv_helper.rb +18 -0
  287. data/spec/helpers/process_helper.rb +33 -0
  288. data/spec/helpers/project_helper.rb +59 -0
  289. data/spec/helpers/schedule_helper.rb +31 -0
  290. data/spec/helpers/spec_helper.rb +15 -0
  291. data/spec/integration/blueprint_updates_spec.rb +101 -0
  292. data/spec/integration/blueprint_with_grain_spec.rb +72 -0
  293. data/spec/integration/clients_spec.rb +134 -0
  294. data/spec/integration/command_datawarehouse_spec.rb +39 -0
  295. data/spec/integration/command_projects_spec.rb +32 -0
  296. data/spec/integration/create_from_template_spec.rb +22 -0
  297. data/spec/integration/create_project_spec.rb +24 -0
  298. data/spec/integration/date_dim_switch_spec.rb +142 -0
  299. data/spec/integration/deprecated_load_spec.rb +58 -0
  300. data/spec/integration/full_process_schedule_spec.rb +298 -0
  301. data/spec/integration/full_project_spec.rb +569 -0
  302. data/spec/integration/over_to_user_filters_spec.rb +94 -0
  303. data/spec/integration/partial_md_export_import_spec.rb +42 -0
  304. data/spec/integration/project_spec.rb +264 -0
  305. data/spec/integration/rest_spec.rb +213 -0
  306. data/spec/integration/schedule_spec.rb +626 -0
  307. data/spec/integration/segments_spec.rb +141 -0
  308. data/spec/integration/user_filters_spec.rb +290 -0
  309. data/spec/integration/user_group_spec.rb +127 -0
  310. data/spec/integration/variables_spec.rb +188 -0
  311. data/spec/logging_in_logging_out_spec.rb +93 -0
  312. data/spec/spec_helper.rb +95 -0
  313. data/spec/unit/bricks/bricks_spec.rb +35 -0
  314. data/spec/unit/bricks/middleware/aws_middelware_spec.rb +51 -0
  315. data/spec/unit/bricks/middleware/bench_middleware_spec.rb +15 -0
  316. data/spec/unit/bricks/middleware/bulk_salesforce_middleware_spec.rb +15 -0
  317. data/spec/unit/bricks/middleware/gooddata_middleware_spec.rb +15 -0
  318. data/spec/unit/bricks/middleware/logger_middleware_spec.rb +15 -0
  319. data/spec/unit/bricks/middleware/restforce_middleware_spec.rb +15 -0
  320. data/spec/unit/bricks/middleware/stdout_middleware_spec.rb +15 -0
  321. data/spec/unit/bricks/middleware/twitter_middleware_spec.rb +15 -0
  322. data/spec/unit/cli/cli_spec.rb +17 -0
  323. data/spec/unit/cli/commands/cmd_auth_spec.rb +17 -0
  324. data/spec/unit/commands/command_projects_spec.rb +22 -0
  325. data/spec/unit/core/connection_spec.rb +57 -0
  326. data/spec/unit/core/logging_spec.rb +133 -0
  327. data/spec/unit/core/nil_logger_spec.rb +13 -0
  328. data/spec/unit/core/project_spec.rb +54 -0
  329. data/spec/unit/extensions/hash_spec.rb +23 -0
  330. data/spec/unit/godzilla/goodzilla_spec.rb +78 -0
  331. data/spec/unit/helpers/csv_helper_spec.rb +22 -0
  332. data/spec/unit/helpers/data_helper_spec.rb +61 -0
  333. data/spec/unit/helpers/global_helpers_spec.rb +111 -0
  334. data/spec/unit/helpers_spec.rb +86 -0
  335. data/spec/unit/models/blueprint/attributes_spec.rb +29 -0
  336. data/spec/unit/models/blueprint/dataset_spec.rb +121 -0
  337. data/spec/unit/models/blueprint/labels_spec.rb +44 -0
  338. data/spec/unit/models/blueprint/project_blueprint_spec.rb +648 -0
  339. data/spec/unit/models/blueprint/reference_spec.rb +29 -0
  340. data/spec/unit/models/blueprint/schema_builder_spec.rb +38 -0
  341. data/spec/unit/models/blueprint/to_wire_spec.rb +174 -0
  342. data/spec/unit/models/domain_spec.rb +144 -0
  343. data/spec/unit/models/execution_spec.rb +108 -0
  344. data/spec/unit/models/from_wire_spec.rb +296 -0
  345. data/spec/unit/models/invitation_spec.rb +17 -0
  346. data/spec/unit/models/membership_spec.rb +132 -0
  347. data/spec/unit/models/metadata_spec.rb +104 -0
  348. data/spec/unit/models/metric_spec.rb +117 -0
  349. data/spec/unit/models/model_spec.rb +82 -0
  350. data/spec/unit/models/params_spec.rb +118 -0
  351. data/spec/unit/models/profile_spec.rb +215 -0
  352. data/spec/unit/models/project_creator_spec.rb +127 -0
  353. data/spec/unit/models/project_role_spec.rb +94 -0
  354. data/spec/unit/models/project_spec.rb +162 -0
  355. data/spec/unit/models/report_result_data_spec.rb +199 -0
  356. data/spec/unit/models/schedule_spec.rb +418 -0
  357. data/spec/unit/models/to_manifest_spec.rb +63 -0
  358. data/spec/unit/models/unit_project_spec.rb +125 -0
  359. data/spec/unit/models/user_filters_spec.rb +95 -0
  360. data/spec/unit/models/variable_spec.rb +265 -0
  361. data/spec/unit/rest/polling_spec.rb +89 -0
  362. data/spec/unit/rest/resource_spec.rb +10 -0
  363. data/yard-server.sh +3 -0
  364. metadata +1125 -0
@@ -0,0 +1,1424 @@
1
+ [{
2
+ "dataSetSLIManifest": {
3
+ "parts": [{
4
+ "referenceKey": 1,
5
+ "populates": ["label.stage_history.currentstatus"],
6
+ "mode": "FULL",
7
+ "columnName": "currentstatus"
8
+ }, {
9
+ "populates": ["fact.stage_history.stage_velocity"],
10
+ "mode": "FULL",
11
+ "columnName": "stage_velocity"
12
+ }, {
13
+ "populates": ["fact.stage_history.stage_duration"],
14
+ "mode": "FULL",
15
+ "columnName": "stage_duration"
16
+ }, {
17
+ "populates": ["label.account.id"],
18
+ "mode": "FULL",
19
+ "columnName": "account",
20
+ "referenceKey": 1
21
+ }, {
22
+ "populates": ["label.product.id"],
23
+ "mode": "FULL",
24
+ "columnName": "product",
25
+ "referenceKey": 1
26
+ }, {
27
+ "populates": ["label.stage.id"],
28
+ "mode": "FULL",
29
+ "columnName": "stage",
30
+ "referenceKey": 1
31
+ }, {
32
+ "populates": ["label.opp_owner.id"],
33
+ "mode": "FULL",
34
+ "columnName": "opp_owner",
35
+ "referenceKey": 1
36
+ }, {
37
+ "populates": ["label.opportunity.id"],
38
+ "mode": "FULL",
39
+ "columnName": "opportunity",
40
+ "referenceKey": 1
41
+ }, {
42
+ "populates": ["label.bookingtype.booking_type_id"],
43
+ "mode": "FULL",
44
+ "columnName": "bookingtype",
45
+ "referenceKey": 1
46
+ }, {
47
+ "populates": ["oppclose.date.mdyy"],
48
+ "mode": "FULL",
49
+ "constraints": {
50
+ "date": "MM/dd/yyyy"
51
+ },
52
+ "columnName": "oppclose",
53
+ "referenceKey": 1
54
+ }, {
55
+ "populates": ["oppcreated.date.mdyy"],
56
+ "mode": "FULL",
57
+ "constraints": {
58
+ "date": "MM/dd/yyyy"
59
+ },
60
+ "columnName": "oppcreated",
61
+ "referenceKey": 1
62
+ }],
63
+ "dataSet": "dataset.stage_history",
64
+ "file": "data.csv",
65
+ "csvParams": {
66
+ "quoteChar": "\"",
67
+ "escapeChar": "\"",
68
+ "separatorChar": ",",
69
+ "endOfLine": "\n"
70
+ }
71
+ }
72
+ }, {
73
+ "dataSetSLIManifest": {
74
+ "parts": [{
75
+ "referenceKey": 1,
76
+ "populates": ["label.opp_snapshot.accountstagesnapshot"],
77
+ "mode": "FULL",
78
+ "columnName": "accountstagesnapshot"
79
+ }, {
80
+ "populates": ["fact.opp_snapshot.amount"],
81
+ "mode": "FULL",
82
+ "columnName": "amount"
83
+ }, {
84
+ "populates": ["fact.opp_snapshot.probability"],
85
+ "mode": "FULL",
86
+ "columnName": "probability"
87
+ }, {
88
+ "populates": ["fact.opp_snapshot.mrr"],
89
+ "mode": "FULL",
90
+ "columnName": "mrr"
91
+ }, {
92
+ "populates": ["fact.opp_snapshot.distributedmrr"],
93
+ "mode": "FULL",
94
+ "columnName": "distributedmrr"
95
+ }, {
96
+ "populates": ["label.sdrowner.sdrowner"],
97
+ "mode": "FULL",
98
+ "columnName": "sdrowner",
99
+ "referenceKey": 1
100
+ }, {
101
+ "populates": ["label.leadsourceoriginal.leadsourceoriginal"],
102
+ "mode": "FULL",
103
+ "columnName": "leadsourceoriginal",
104
+ "referenceKey": 1
105
+ }, {
106
+ "populates": ["label.account.id"],
107
+ "mode": "FULL",
108
+ "columnName": "account",
109
+ "referenceKey": 1
110
+ }, {
111
+ "populates": ["label.amounttype.amounttype"],
112
+ "mode": "FULL",
113
+ "columnName": "amounttype",
114
+ "referenceKey": 1
115
+ }, {
116
+ "populates": ["label.product.id"],
117
+ "mode": "FULL",
118
+ "columnName": "product",
119
+ "referenceKey": 1
120
+ }, {
121
+ "populates": ["label.sourcingorigin.techsourcingtype"],
122
+ "mode": "FULL",
123
+ "columnName": "sourcingorigin",
124
+ "referenceKey": 1
125
+ }, {
126
+ "populates": ["label.leadsource.leadsource"],
127
+ "mode": "FULL",
128
+ "columnName": "leadsource",
129
+ "referenceKey": 1
130
+ }, {
131
+ "populates": ["label.productline.productline"],
132
+ "mode": "FULL",
133
+ "columnName": "productline",
134
+ "referenceKey": 1
135
+ }, {
136
+ "populates": ["label.stage.id"],
137
+ "mode": "FULL",
138
+ "columnName": "stage",
139
+ "referenceKey": 1
140
+ }, {
141
+ "populates": ["label.opp_owner.id"],
142
+ "mode": "FULL",
143
+ "columnName": "opp_owner",
144
+ "referenceKey": 1
145
+ }, {
146
+ "populates": ["label.opportunity.id"],
147
+ "mode": "FULL",
148
+ "columnName": "opportunity",
149
+ "referenceKey": 1
150
+ }, {
151
+ "populates": ["label.bookingtype.booking_type_id"],
152
+ "mode": "FULL",
153
+ "columnName": "bookingtype",
154
+ "referenceKey": 1
155
+ }, {
156
+ "populates": ["label.forecast.id"],
157
+ "mode": "FULL",
158
+ "columnName": "forecast",
159
+ "referenceKey": 1
160
+ }, {
161
+ "populates": ["leadcreate.date.mdyy"],
162
+ "mode": "FULL",
163
+ "constraints": {
164
+ "date": "MM/dd/yyyy"
165
+ },
166
+ "columnName": "leadcreate",
167
+ "referenceKey": 1
168
+ }, {
169
+ "populates": ["snapshot.date.mdyy"],
170
+ "mode": "FULL",
171
+ "constraints": {
172
+ "date": "MM/dd/yyyy"
173
+ },
174
+ "columnName": "snapshot",
175
+ "referenceKey": 1
176
+ }, {
177
+ "populates": ["oppclose.date.mdyy"],
178
+ "mode": "FULL",
179
+ "constraints": {
180
+ "date": "MM/dd/yyyy"
181
+ },
182
+ "columnName": "oppclose",
183
+ "referenceKey": 1
184
+ }, {
185
+ "populates": ["oppcreated.date.mdyy"],
186
+ "mode": "FULL",
187
+ "constraints": {
188
+ "date": "MM/dd/yyyy"
189
+ },
190
+ "columnName": "oppcreated",
191
+ "referenceKey": 1
192
+ }, {
193
+ "populates": ["stage1plus.date.mdyy"],
194
+ "mode": "FULL",
195
+ "constraints": {
196
+ "date": "MM/dd/yyyy"
197
+ },
198
+ "columnName": "stage1plus",
199
+ "referenceKey": 1
200
+ }, {
201
+ "populates": ["mqldate.date.mdyy"],
202
+ "mode": "FULL",
203
+ "constraints": {
204
+ "date": "MM/dd/yyyy"
205
+ },
206
+ "columnName": "mqldate",
207
+ "referenceKey": 1
208
+ }, {
209
+ "populates": ["effectivecontractstart.date.mdyy"],
210
+ "mode": "FULL",
211
+ "constraints": {
212
+ "date": "MM/dd/yyyy"
213
+ },
214
+ "columnName": "effectivecontractstart",
215
+ "referenceKey": 1
216
+ }, {
217
+ "populates": ["effectivecontractend.date.mdyy"],
218
+ "mode": "FULL",
219
+ "constraints": {
220
+ "date": "MM/dd/yyyy"
221
+ },
222
+ "columnName": "effectivecontractend",
223
+ "referenceKey": 1
224
+ }],
225
+ "dataSet": "dataset.opp_snapshot",
226
+ "file": "data.csv",
227
+ "csvParams": {
228
+ "quoteChar": "\"",
229
+ "escapeChar": "\"",
230
+ "separatorChar": ",",
231
+ "endOfLine": "\n"
232
+ }
233
+ }
234
+ }, {
235
+ "dataSetSLIManifest": {
236
+ "parts": [{
237
+ "referenceKey": 1,
238
+ "populates": ["label.opp_changes.interval_changes"],
239
+ "mode": "FULL",
240
+ "columnName": "interval_changes"
241
+ }, {
242
+ "referenceKey": 1,
243
+ "populates": ["label.opp_changes.previous_stage"],
244
+ "mode": "FULL",
245
+ "columnName": "previous_stage"
246
+ }, {
247
+ "populates": ["fact.opp_changes.amount_changed"],
248
+ "mode": "FULL",
249
+ "columnName": "amount_changed"
250
+ }, {
251
+ "populates": ["fact.opp_changes.amount_changed_current_q"],
252
+ "mode": "FULL",
253
+ "columnName": "amount_changed_current_q"
254
+ }, {
255
+ "populates": ["fact.opp_changes.previous_amount"],
256
+ "mode": "FULL",
257
+ "columnName": "previous_amount"
258
+ }, {
259
+ "populates": ["fact.opp_changes.new_amount"],
260
+ "mode": "FULL",
261
+ "columnName": "new_amount"
262
+ }, {
263
+ "populates": ["fact.opp_changes.amount_changed_potential"],
264
+ "mode": "FULL",
265
+ "columnName": "amount_changed_potential"
266
+ }, {
267
+ "populates": ["fact.opp_changes.amount_changed_current_q_potential"],
268
+ "mode": "FULL",
269
+ "columnName": "amount_changed_current_q_potential"
270
+ }, {
271
+ "populates": ["label.account.id"],
272
+ "mode": "FULL",
273
+ "columnName": "account",
274
+ "referenceKey": 1
275
+ }, {
276
+ "populates": ["label.amounttype.amounttype"],
277
+ "mode": "FULL",
278
+ "columnName": "amounttype",
279
+ "referenceKey": 1
280
+ }, {
281
+ "populates": ["label.product.id"],
282
+ "mode": "FULL",
283
+ "columnName": "product",
284
+ "referenceKey": 1
285
+ }, {
286
+ "populates": ["label.productline.productline"],
287
+ "mode": "FULL",
288
+ "columnName": "productline",
289
+ "referenceKey": 1
290
+ }, {
291
+ "populates": ["label.stage.id"],
292
+ "mode": "FULL",
293
+ "columnName": "stage",
294
+ "referenceKey": 1
295
+ }, {
296
+ "populates": ["label.opp_owner.id"],
297
+ "mode": "FULL",
298
+ "columnName": "opp_owner",
299
+ "referenceKey": 1
300
+ }, {
301
+ "populates": ["label.opportunity.id"],
302
+ "mode": "FULL",
303
+ "columnName": "opportunity",
304
+ "referenceKey": 1
305
+ }, {
306
+ "populates": ["label.bookingtype.booking_type_id"],
307
+ "mode": "FULL",
308
+ "columnName": "bookingtype",
309
+ "referenceKey": 1
310
+ }, {
311
+ "populates": ["oppclose.date.mdyy"],
312
+ "mode": "FULL",
313
+ "constraints": {
314
+ "date": "MM/dd/yyyy"
315
+ },
316
+ "columnName": "oppclose",
317
+ "referenceKey": 1
318
+ }, {
319
+ "populates": ["previous_close_date.date.mdyy"],
320
+ "mode": "FULL",
321
+ "constraints": {
322
+ "date": "MM/dd/yyyy"
323
+ },
324
+ "columnName": "previous_close_date",
325
+ "referenceKey": 1
326
+ }],
327
+ "dataSet": "dataset.opp_changes",
328
+ "file": "data.csv",
329
+ "csvParams": {
330
+ "quoteChar": "\"",
331
+ "escapeChar": "\"",
332
+ "separatorChar": ",",
333
+ "endOfLine": "\n"
334
+ }
335
+ }
336
+ }, {
337
+ "dataSetSLIManifest": {
338
+ "parts": [{
339
+ "referenceKey": 1,
340
+ "populates": ["label.opportunityanalysis.techoppanalysis"],
341
+ "mode": "FULL",
342
+ "columnName": "techoppanalysis"
343
+ }, {
344
+ "referenceKey": 1,
345
+ "populates": ["label.opportunityanalysis.month"],
346
+ "mode": "FULL",
347
+ "columnName": "month"
348
+ }, {
349
+ "populates": ["label.opportunityanalysis.month.monthsortingnew"],
350
+ "mode": "FULL",
351
+ "columnName": "monthsortingnew"
352
+ }, {
353
+ "referenceKey": 1,
354
+ "populates": ["label.opportunityanalysis.cohorttype"],
355
+ "mode": "FULL",
356
+ "columnName": "cohorttype"
357
+ }, {
358
+ "populates": ["fact.opportunityanalysis.buckets_to_display"],
359
+ "mode": "FULL",
360
+ "columnName": "buckets_to_display"
361
+ }, {
362
+ "populates": ["fact.opportunityanalysis.month_fact"],
363
+ "mode": "FULL",
364
+ "columnName": "month_fact"
365
+ }, {
366
+ "populates": ["label.opp_records.factsof"],
367
+ "mode": "FULL",
368
+ "columnName": "opp_records",
369
+ "referenceKey": 1
370
+ }, {
371
+ "populates": ["label.consolidatedmarketingstatus.consolidatedmarketingstatus"],
372
+ "mode": "FULL",
373
+ "columnName": "consolidatedmarketingstatus",
374
+ "referenceKey": 1
375
+ }],
376
+ "dataSet": "dataset.opportunityanalysis",
377
+ "file": "data.csv",
378
+ "csvParams": {
379
+ "quoteChar": "\"",
380
+ "escapeChar": "\"",
381
+ "separatorChar": ",",
382
+ "endOfLine": "\n"
383
+ }
384
+ }
385
+ }, {
386
+ "dataSetSLIManifest": {
387
+ "parts": [{
388
+ "referenceKey": 1,
389
+ "populates": ["label.goals.quotatype"],
390
+ "mode": "FULL",
391
+ "columnName": "quotatype"
392
+ }, {
393
+ "populates": ["fact.goals.amount"],
394
+ "mode": "FULL",
395
+ "columnName": "amount"
396
+ }, {
397
+ "populates": ["label.sdrowner.sdrowner"],
398
+ "mode": "FULL",
399
+ "columnName": "sdrowner",
400
+ "referenceKey": 1
401
+ }, {
402
+ "populates": ["label.amounttype.amounttype"],
403
+ "mode": "FULL",
404
+ "columnName": "amounttype",
405
+ "referenceKey": 1
406
+ }, {
407
+ "populates": ["label.product.id"],
408
+ "mode": "FULL",
409
+ "columnName": "product",
410
+ "referenceKey": 1
411
+ }, {
412
+ "populates": ["label.sourcingorigin.techsourcingtype"],
413
+ "mode": "FULL",
414
+ "columnName": "sourcingorigin",
415
+ "referenceKey": 1
416
+ }, {
417
+ "populates": ["label.activity_owner.id"],
418
+ "mode": "FULL",
419
+ "columnName": "activity_owner",
420
+ "referenceKey": 1
421
+ }, {
422
+ "populates": ["label.opp_owner.id"],
423
+ "mode": "FULL",
424
+ "columnName": "opp_owner",
425
+ "referenceKey": 1
426
+ }, {
427
+ "populates": ["label.bookingtype.booking_type_id"],
428
+ "mode": "FULL",
429
+ "columnName": "bookingtype",
430
+ "referenceKey": 1
431
+ }, {
432
+ "populates": ["activity.date.mdyy"],
433
+ "mode": "FULL",
434
+ "constraints": {
435
+ "date": "MM/dd/yyyy"
436
+ },
437
+ "columnName": "activity",
438
+ "referenceKey": 1
439
+ }, {
440
+ "populates": ["oppclose.date.mdyy"],
441
+ "mode": "FULL",
442
+ "constraints": {
443
+ "date": "MM/dd/yyyy"
444
+ },
445
+ "columnName": "oppclose",
446
+ "referenceKey": 1
447
+ }, {
448
+ "populates": ["oppcreated.date.mdyy"],
449
+ "mode": "FULL",
450
+ "constraints": {
451
+ "date": "MM/dd/yyyy"
452
+ },
453
+ "columnName": "oppcreated",
454
+ "referenceKey": 1
455
+ }, {
456
+ "populates": ["stage1plus.date.mdyy"],
457
+ "mode": "FULL",
458
+ "constraints": {
459
+ "date": "MM/dd/yyyy"
460
+ },
461
+ "columnName": "stage1plus",
462
+ "referenceKey": 1
463
+ }, {
464
+ "populates": ["mqldate.date.mdyy"],
465
+ "mode": "FULL",
466
+ "constraints": {
467
+ "date": "MM/dd/yyyy"
468
+ },
469
+ "columnName": "mqldate",
470
+ "referenceKey": 1
471
+ }, {
472
+ "populates": ["s2o.date.mdyy"],
473
+ "mode": "FULL",
474
+ "constraints": {
475
+ "date": "MM/dd/yyyy"
476
+ },
477
+ "columnName": "s2o",
478
+ "referenceKey": 1
479
+ }],
480
+ "dataSet": "dataset.goals",
481
+ "file": "data.csv",
482
+ "csvParams": {
483
+ "quoteChar": "\"",
484
+ "escapeChar": "\"",
485
+ "separatorChar": ",",
486
+ "endOfLine": "\n"
487
+ }
488
+ }
489
+ }, {
490
+ "dataSetSLIManifest": {
491
+ "parts": [{
492
+ "populates": ["timeline.date.mdyy"],
493
+ "mode": "FULL",
494
+ "constraints": {
495
+ "date": "MM/dd/yyyy"
496
+ },
497
+ "columnName": "timeline",
498
+ "referenceKey": 1
499
+ }],
500
+ "dataSet": "dataset.timeline",
501
+ "file": "data.csv",
502
+ "csvParams": {
503
+ "quoteChar": "\"",
504
+ "escapeChar": "\"",
505
+ "separatorChar": ",",
506
+ "endOfLine": "\n"
507
+ }
508
+ }
509
+ }, {
510
+ "dataSetSLIManifest": {
511
+ "parts": [{
512
+ "populates": ["label.account.id"],
513
+ "mode": "FULL",
514
+ "columnName": "account",
515
+ "referenceKey": 1
516
+ }, {
517
+ "populates": ["label.product.id"],
518
+ "mode": "FULL",
519
+ "columnName": "product",
520
+ "referenceKey": 1
521
+ }, {
522
+ "populates": ["label.activity_owner.id"],
523
+ "mode": "FULL",
524
+ "columnName": "activity_owner",
525
+ "referenceKey": 1
526
+ }, {
527
+ "populates": ["label.stage.id"],
528
+ "mode": "FULL",
529
+ "columnName": "stage",
530
+ "referenceKey": 1
531
+ }, {
532
+ "populates": ["label.opp_owner.id"],
533
+ "mode": "FULL",
534
+ "columnName": "opp_owner",
535
+ "referenceKey": 1
536
+ }, {
537
+ "populates": ["label.activity.id"],
538
+ "mode": "FULL",
539
+ "columnName": "activity",
540
+ "referenceKey": 1
541
+ }, {
542
+ "populates": ["label.opportunity.id"],
543
+ "mode": "FULL",
544
+ "columnName": "opportunity",
545
+ "referenceKey": 1
546
+ }, {
547
+ "populates": ["label.bookingtype.booking_type_id"],
548
+ "mode": "FULL",
549
+ "columnName": "bookingtype",
550
+ "referenceKey": 1
551
+ }, {
552
+ "populates": ["activity.date.mdyy"],
553
+ "mode": "FULL",
554
+ "constraints": {
555
+ "date": "MM/dd/yyyy"
556
+ },
557
+ "columnName": "activity",
558
+ "referenceKey": 1
559
+ }, {
560
+ "populates": ["oppclose.date.mdyy"],
561
+ "mode": "FULL",
562
+ "constraints": {
563
+ "date": "MM/dd/yyyy"
564
+ },
565
+ "columnName": "oppclose",
566
+ "referenceKey": 1
567
+ }, {
568
+ "populates": ["oppcreated.date.mdyy"],
569
+ "mode": "FULL",
570
+ "constraints": {
571
+ "date": "MM/dd/yyyy"
572
+ },
573
+ "columnName": "oppcreated",
574
+ "referenceKey": 1
575
+ }],
576
+ "dataSet": "dataset.activity_monitoring",
577
+ "file": "data.csv",
578
+ "csvParams": {
579
+ "quoteChar": "\"",
580
+ "escapeChar": "\"",
581
+ "separatorChar": ",",
582
+ "endOfLine": "\n"
583
+ }
584
+ }
585
+ }, {
586
+ "dataSetSLIManifest": {
587
+ "parts": [{
588
+ "referenceKey": 1,
589
+ "populates": ["label.opp_records.factsof"],
590
+ "mode": "FULL",
591
+ "columnName": "factsof"
592
+ }, {
593
+ "populates": ["label.opp_records.factsof.opp_records_conctn_point"],
594
+ "mode": "FULL",
595
+ "columnName": "opp_records_conctn_point"
596
+ }, {
597
+ "populates": ["fact.opp_records.amount"],
598
+ "mode": "FULL",
599
+ "columnName": "amount"
600
+ }, {
601
+ "populates": ["fact.opp_records.probability"],
602
+ "mode": "FULL",
603
+ "columnName": "probability"
604
+ }, {
605
+ "populates": ["fact.opp_records.mrr"],
606
+ "mode": "FULL",
607
+ "columnName": "mrr"
608
+ }, {
609
+ "populates": ["fact.opp_records.distributed_mrr"],
610
+ "mode": "FULL",
611
+ "columnName": "distributed_mrr"
612
+ }, {
613
+ "populates": ["fact.opp_records.freemonths"],
614
+ "mode": "FULL",
615
+ "columnName": "freemonths"
616
+ }, {
617
+ "populates": ["fact.opp_records.upsellcmrr"],
618
+ "mode": "FULL",
619
+ "columnName": "upsellcmrr"
620
+ }, {
621
+ "populates": ["fact.opp_records.downsellcmrr"],
622
+ "mode": "FULL",
623
+ "columnName": "downsellcmrr"
624
+ }, {
625
+ "populates": ["fact.opp_records.upliftcmrr"],
626
+ "mode": "FULL",
627
+ "columnName": "upliftcmrr"
628
+ }, {
629
+ "populates": ["fact.opp_records.churncmrr"],
630
+ "mode": "FULL",
631
+ "columnName": "churncmrr"
632
+ }, {
633
+ "populates": ["label.sdrowner.sdrowner"],
634
+ "mode": "FULL",
635
+ "columnName": "sdrowner",
636
+ "referenceKey": 1
637
+ }, {
638
+ "populates": ["label.leadsourceoriginal.leadsourceoriginal"],
639
+ "mode": "FULL",
640
+ "columnName": "leadsourceoriginal",
641
+ "referenceKey": 1
642
+ }, {
643
+ "populates": ["label.account.id"],
644
+ "mode": "FULL",
645
+ "columnName": "account",
646
+ "referenceKey": 1
647
+ }, {
648
+ "populates": ["label.amounttype.amounttype"],
649
+ "mode": "FULL",
650
+ "columnName": "amounttype",
651
+ "referenceKey": 1
652
+ }, {
653
+ "populates": ["label.product.id"],
654
+ "mode": "FULL",
655
+ "columnName": "product",
656
+ "referenceKey": 1
657
+ }, {
658
+ "populates": ["label.renewalstatus.renewalstatus"],
659
+ "mode": "FULL",
660
+ "columnName": "renewalstatus",
661
+ "referenceKey": 1
662
+ }, {
663
+ "populates": ["label.sourcingorigin.techsourcingtype"],
664
+ "mode": "FULL",
665
+ "columnName": "sourcingorigin",
666
+ "referenceKey": 1
667
+ }, {
668
+ "populates": ["label.sdrperformancestatus.sdrperformancestatus"],
669
+ "mode": "FULL",
670
+ "columnName": "sdrperformancestatus",
671
+ "referenceKey": 1
672
+ }, {
673
+ "populates": ["label.leadsource.leadsource"],
674
+ "mode": "FULL",
675
+ "columnName": "leadsource",
676
+ "referenceKey": 1
677
+ }, {
678
+ "populates": ["label.winlossreason.winlossreason"],
679
+ "mode": "FULL",
680
+ "columnName": "winlossreason",
681
+ "referenceKey": 1
682
+ }, {
683
+ "populates": ["label.productline.productline"],
684
+ "mode": "FULL",
685
+ "columnName": "productline",
686
+ "referenceKey": 1
687
+ }, {
688
+ "populates": ["label.leadchannel.leadchannel"],
689
+ "mode": "FULL",
690
+ "columnName": "leadchannel",
691
+ "referenceKey": 1
692
+ }, {
693
+ "populates": ["label.stage.id"],
694
+ "mode": "FULL",
695
+ "columnName": "stage",
696
+ "referenceKey": 1
697
+ }, {
698
+ "populates": ["label.opp_owner.id"],
699
+ "mode": "FULL",
700
+ "columnName": "opp_owner",
701
+ "referenceKey": 1
702
+ }, {
703
+ "populates": ["label.opportunity.id"],
704
+ "mode": "FULL",
705
+ "columnName": "opportunity",
706
+ "referenceKey": 1
707
+ }, {
708
+ "populates": ["label.bookingtype.booking_type_id"],
709
+ "mode": "FULL",
710
+ "columnName": "bookingtype",
711
+ "referenceKey": 1
712
+ }, {
713
+ "populates": ["label.forecast.id"],
714
+ "mode": "FULL",
715
+ "columnName": "forecast",
716
+ "referenceKey": 1
717
+ }, {
718
+ "populates": ["leadcreate.date.mdyy"],
719
+ "mode": "FULL",
720
+ "constraints": {
721
+ "date": "MM/dd/yyyy"
722
+ },
723
+ "columnName": "leadcreate",
724
+ "referenceKey": 1
725
+ }, {
726
+ "populates": ["oppclose.date.mdyy"],
727
+ "mode": "FULL",
728
+ "constraints": {
729
+ "date": "MM/dd/yyyy"
730
+ },
731
+ "columnName": "oppclose",
732
+ "referenceKey": 1
733
+ }, {
734
+ "populates": ["oppcreated.date.mdyy"],
735
+ "mode": "FULL",
736
+ "constraints": {
737
+ "date": "MM/dd/yyyy"
738
+ },
739
+ "columnName": "oppcreated",
740
+ "referenceKey": 1
741
+ }, {
742
+ "populates": ["stage1plus.date.mdyy"],
743
+ "mode": "FULL",
744
+ "constraints": {
745
+ "date": "MM/dd/yyyy"
746
+ },
747
+ "columnName": "stage1plus",
748
+ "referenceKey": 1
749
+ }, {
750
+ "populates": ["firstcontactdate.date.mdyy"],
751
+ "mode": "FULL",
752
+ "constraints": {
753
+ "date": "MM/dd/yyyy"
754
+ },
755
+ "columnName": "firstcontactdate",
756
+ "referenceKey": 1
757
+ }, {
758
+ "populates": ["mqldate.date.mdyy"],
759
+ "mode": "FULL",
760
+ "constraints": {
761
+ "date": "MM/dd/yyyy"
762
+ },
763
+ "columnName": "mqldate",
764
+ "referenceKey": 1
765
+ }, {
766
+ "populates": ["s2o.date.mdyy"],
767
+ "mode": "FULL",
768
+ "constraints": {
769
+ "date": "MM/dd/yyyy"
770
+ },
771
+ "columnName": "s2o",
772
+ "referenceKey": 1
773
+ }, {
774
+ "populates": ["firstmeeting.date.mdyy"],
775
+ "mode": "FULL",
776
+ "constraints": {
777
+ "date": "MM/dd/yyyy"
778
+ },
779
+ "columnName": "firstmeeting",
780
+ "referenceKey": 1
781
+ }, {
782
+ "populates": ["effectivecontractstart.date.mdyy"],
783
+ "mode": "FULL",
784
+ "constraints": {
785
+ "date": "MM/dd/yyyy"
786
+ },
787
+ "columnName": "effectivecontractstart",
788
+ "referenceKey": 1
789
+ }, {
790
+ "populates": ["laststage0plus.date.mdyy"],
791
+ "mode": "FULL",
792
+ "constraints": {
793
+ "date": "MM/dd/yyyy"
794
+ },
795
+ "columnName": "laststage0plus",
796
+ "referenceKey": 1
797
+ }, {
798
+ "populates": ["effectivecontractend.date.mdyy"],
799
+ "mode": "FULL",
800
+ "constraints": {
801
+ "date": "MM/dd/yyyy"
802
+ },
803
+ "columnName": "effectivecontractend",
804
+ "referenceKey": 1
805
+ }],
806
+ "dataSet": "dataset.opp_records",
807
+ "file": "data.csv",
808
+ "csvParams": {
809
+ "quoteChar": "\"",
810
+ "escapeChar": "\"",
811
+ "separatorChar": ",",
812
+ "endOfLine": "\n"
813
+ }
814
+ }
815
+ }, {
816
+ "dataSetSLIManifest": {
817
+ "parts": [{
818
+ "referenceKey": 1,
819
+ "populates": ["label.sdrowner.sdrowner"],
820
+ "mode": "FULL",
821
+ "columnName": "sdrowner"
822
+ }, {
823
+ "populates": ["label.sdrowner.sdrowner.sdrownername"],
824
+ "mode": "FULL",
825
+ "columnName": "sdrownername"
826
+ }, {
827
+ "referenceKey": 1,
828
+ "populates": ["label.sdrowner.sdrteam"],
829
+ "mode": "FULL",
830
+ "columnName": "sdrteam"
831
+ }],
832
+ "dataSet": "dataset.sdrowner",
833
+ "file": "data.csv",
834
+ "csvParams": {
835
+ "quoteChar": "\"",
836
+ "escapeChar": "\"",
837
+ "separatorChar": ",",
838
+ "endOfLine": "\n"
839
+ }
840
+ }
841
+ }, {
842
+ "dataSetSLIManifest": {
843
+ "parts": [{
844
+ "referenceKey": 1,
845
+ "populates": ["label.leadsourceoriginal.leadsourceoriginal"],
846
+ "mode": "FULL",
847
+ "columnName": "leadsourceoriginal"
848
+ }, {
849
+ "referenceKey": 1,
850
+ "populates": ["label.leadsourceoriginal.leadcategory"],
851
+ "mode": "FULL",
852
+ "columnName": "leadcategory"
853
+ }],
854
+ "dataSet": "dataset.leadsourceoriginal",
855
+ "file": "data.csv",
856
+ "csvParams": {
857
+ "quoteChar": "\"",
858
+ "escapeChar": "\"",
859
+ "separatorChar": ",",
860
+ "endOfLine": "\n"
861
+ }
862
+ }
863
+ }, {
864
+ "dataSetSLIManifest": {
865
+ "parts": [{
866
+ "referenceKey": 1,
867
+ "populates": ["label.account.id"],
868
+ "mode": "FULL",
869
+ "columnName": "id"
870
+ }, {
871
+ "populates": ["label.account.id.name"],
872
+ "mode": "FULL",
873
+ "columnName": "name"
874
+ }, {
875
+ "populates": ["label.account.id.url"],
876
+ "mode": "FULL",
877
+ "columnName": "url"
878
+ }, {
879
+ "referenceKey": 1,
880
+ "populates": ["label.account.region"],
881
+ "mode": "FULL",
882
+ "columnName": "region"
883
+ }, {
884
+ "referenceKey": 1,
885
+ "populates": ["label.account.accountstage"],
886
+ "mode": "FULL",
887
+ "columnName": "accountstage"
888
+ }, {
889
+ "referenceKey": 1,
890
+ "populates": ["label.account.accountownername"],
891
+ "mode": "FULL",
892
+ "columnName": "accountownername"
893
+ }, {
894
+ "referenceKey": 1,
895
+ "populates": ["label.account.accountindustry"],
896
+ "mode": "FULL",
897
+ "columnName": "accountindustry"
898
+ }, {
899
+ "referenceKey": 1,
900
+ "populates": ["label.account.accountemployeecount"],
901
+ "mode": "FULL",
902
+ "columnName": "accountemployeecount"
903
+ }, {
904
+ "populates": ["label.account.accountemployeecount.employeecountsort"],
905
+ "mode": "FULL",
906
+ "columnName": "employeecountsort"
907
+ }, {
908
+ "referenceKey": 1,
909
+ "populates": ["label.account.accountannualrevenue"],
910
+ "mode": "FULL",
911
+ "columnName": "accountannualrevenue"
912
+ }],
913
+ "dataSet": "dataset.account",
914
+ "file": "data.csv",
915
+ "csvParams": {
916
+ "quoteChar": "\"",
917
+ "escapeChar": "\"",
918
+ "separatorChar": ",",
919
+ "endOfLine": "\n"
920
+ }
921
+ }
922
+ }, {
923
+ "dataSetSLIManifest": {
924
+ "parts": [{
925
+ "referenceKey": 1,
926
+ "populates": ["label.amounttype.amounttype"],
927
+ "mode": "FULL",
928
+ "columnName": "amounttype"
929
+ }],
930
+ "dataSet": "dataset.amounttype",
931
+ "file": "data.csv",
932
+ "csvParams": {
933
+ "quoteChar": "\"",
934
+ "escapeChar": "\"",
935
+ "separatorChar": ",",
936
+ "endOfLine": "\n"
937
+ }
938
+ }
939
+ }, {
940
+ "dataSetSLIManifest": {
941
+ "parts": [{
942
+ "referenceKey": 1,
943
+ "populates": ["label.product.id"],
944
+ "mode": "FULL",
945
+ "columnName": "id"
946
+ }, {
947
+ "populates": ["label.product.id.name"],
948
+ "mode": "FULL",
949
+ "columnName": "name"
950
+ }, {
951
+ "referenceKey": 1,
952
+ "populates": ["label.product.product_type"],
953
+ "mode": "FULL",
954
+ "columnName": "product_type"
955
+ }],
956
+ "dataSet": "dataset.product",
957
+ "file": "data.csv",
958
+ "csvParams": {
959
+ "quoteChar": "\"",
960
+ "escapeChar": "\"",
961
+ "separatorChar": ",",
962
+ "endOfLine": "\n"
963
+ }
964
+ }
965
+ }, {
966
+ "dataSetSLIManifest": {
967
+ "parts": [{
968
+ "referenceKey": 1,
969
+ "populates": ["label.renewalstatus.renewalstatus"],
970
+ "mode": "FULL",
971
+ "columnName": "renewalstatus"
972
+ }],
973
+ "dataSet": "dataset.renewalstatus",
974
+ "file": "data.csv",
975
+ "csvParams": {
976
+ "quoteChar": "\"",
977
+ "escapeChar": "\"",
978
+ "separatorChar": ",",
979
+ "endOfLine": "\n"
980
+ }
981
+ }
982
+ }, {
983
+ "dataSetSLIManifest": {
984
+ "parts": [{
985
+ "referenceKey": 1,
986
+ "populates": ["label.sourcingorigin.techsourcingtype"],
987
+ "mode": "FULL",
988
+ "columnName": "techsourcingtype"
989
+ }, {
990
+ "referenceKey": 1,
991
+ "populates": ["label.sourcingorigin.sourcingtype"],
992
+ "mode": "FULL",
993
+ "columnName": "sourcingtype"
994
+ }, {
995
+ "referenceKey": 1,
996
+ "populates": ["label.sourcingorigin.sourcingtypechannel"],
997
+ "mode": "FULL",
998
+ "columnName": "sourcingtypechannel"
999
+ }, {
1000
+ "referenceKey": 1,
1001
+ "populates": ["label.sourcingorigin.sourcingtypeteam"],
1002
+ "mode": "FULL",
1003
+ "columnName": "sourcingtypeteam"
1004
+ }, {
1005
+ "populates": ["label.sourcingorigin.sourcingtypeteam.sourcingtypeteamname"],
1006
+ "mode": "FULL",
1007
+ "columnName": "sourcingtypeteamname"
1008
+ }],
1009
+ "dataSet": "dataset.sourcingorigin",
1010
+ "file": "data.csv",
1011
+ "csvParams": {
1012
+ "quoteChar": "\"",
1013
+ "escapeChar": "\"",
1014
+ "separatorChar": ",",
1015
+ "endOfLine": "\n"
1016
+ }
1017
+ }
1018
+ }, {
1019
+ "dataSetSLIManifest": {
1020
+ "parts": [{
1021
+ "referenceKey": 1,
1022
+ "populates": ["label.sdrperformancestatus.sdrperformancestatus"],
1023
+ "mode": "FULL",
1024
+ "columnName": "sdrperformancestatus"
1025
+ }],
1026
+ "dataSet": "dataset.sdrperformancestatus",
1027
+ "file": "data.csv",
1028
+ "csvParams": {
1029
+ "quoteChar": "\"",
1030
+ "escapeChar": "\"",
1031
+ "separatorChar": ",",
1032
+ "endOfLine": "\n"
1033
+ }
1034
+ }
1035
+ }, {
1036
+ "dataSetSLIManifest": {
1037
+ "parts": [{
1038
+ "referenceKey": 1,
1039
+ "populates": ["label.consolidatedmarketingstatus.consolidatedmarketingstatus"],
1040
+ "mode": "FULL",
1041
+ "columnName": "consolidatedmarketingstatus"
1042
+ }, {
1043
+ "populates": ["label.consolidatedmarketingstatus.consolidatedmarketingstatus.mktgstatussorting"],
1044
+ "mode": "FULL",
1045
+ "columnName": "mktgstatussorting"
1046
+ }, {
1047
+ "referenceKey": 1,
1048
+ "populates": ["label.consolidatedmarketingstatus.detailedmarketingstatuslvl1"],
1049
+ "mode": "FULL",
1050
+ "columnName": "detailedmarketingstatuslvl1"
1051
+ }, {
1052
+ "populates": ["label.consolidatedmarketingstatus.detailedmarketingstatuslvl1.ordersort1"],
1053
+ "mode": "FULL",
1054
+ "columnName": "ordersort1"
1055
+ }, {
1056
+ "referenceKey": 1,
1057
+ "populates": ["label.consolidatedmarketingstatus.consolidatedmarketingstatus1"],
1058
+ "mode": "FULL",
1059
+ "columnName": "consolidatedmarketingstatus1"
1060
+ }, {
1061
+ "populates": ["label.consolidatedmarketingstatus.consolidatedmarketingstatus1.ordersort2"],
1062
+ "mode": "FULL",
1063
+ "columnName": "ordersort2"
1064
+ }, {
1065
+ "referenceKey": 1,
1066
+ "populates": ["label.consolidatedmarketingstatus.consolidatedsqltos2o"],
1067
+ "mode": "FULL",
1068
+ "columnName": "consolidatedsqltos2o"
1069
+ }, {
1070
+ "populates": ["label.consolidatedmarketingstatus.consolidatedsqltos2o.ordersortsqltos2o"],
1071
+ "mode": "FULL",
1072
+ "columnName": "ordersortsqltos2o"
1073
+ }],
1074
+ "dataSet": "dataset.consolidatedmarketingstatus",
1075
+ "file": "data.csv",
1076
+ "csvParams": {
1077
+ "quoteChar": "\"",
1078
+ "escapeChar": "\"",
1079
+ "separatorChar": ",",
1080
+ "endOfLine": "\n"
1081
+ }
1082
+ }
1083
+ }, {
1084
+ "dataSetSLIManifest": {
1085
+ "parts": [{
1086
+ "referenceKey": 1,
1087
+ "populates": ["label.activity_owner.id"],
1088
+ "mode": "FULL",
1089
+ "columnName": "id"
1090
+ }, {
1091
+ "populates": ["label.activity_owner.id.name"],
1092
+ "mode": "FULL",
1093
+ "columnName": "name"
1094
+ }, {
1095
+ "populates": ["label.activity_owner.id.url"],
1096
+ "mode": "FULL",
1097
+ "columnName": "url"
1098
+ }, {
1099
+ "referenceKey": 1,
1100
+ "populates": ["label.activity_owner.region"],
1101
+ "mode": "FULL",
1102
+ "columnName": "region"
1103
+ }, {
1104
+ "referenceKey": 1,
1105
+ "populates": ["label.activity_owner.department"],
1106
+ "mode": "FULL",
1107
+ "columnName": "department"
1108
+ }, {
1109
+ "referenceKey": 1,
1110
+ "populates": ["label.activity_owner.is_sdr"],
1111
+ "mode": "FULL",
1112
+ "columnName": "is_sdr"
1113
+ }],
1114
+ "dataSet": "dataset.activity_owner",
1115
+ "file": "data.csv",
1116
+ "csvParams": {
1117
+ "quoteChar": "\"",
1118
+ "escapeChar": "\"",
1119
+ "separatorChar": ",",
1120
+ "endOfLine": "\n"
1121
+ }
1122
+ }
1123
+ }, {
1124
+ "dataSetSLIManifest": {
1125
+ "parts": [{
1126
+ "referenceKey": 1,
1127
+ "populates": ["label.leadsource.leadsource"],
1128
+ "mode": "FULL",
1129
+ "columnName": "leadsource"
1130
+ }],
1131
+ "dataSet": "dataset.leadsource",
1132
+ "file": "data.csv",
1133
+ "csvParams": {
1134
+ "quoteChar": "\"",
1135
+ "escapeChar": "\"",
1136
+ "separatorChar": ",",
1137
+ "endOfLine": "\n"
1138
+ }
1139
+ }
1140
+ }, {
1141
+ "dataSetSLIManifest": {
1142
+ "parts": [{
1143
+ "referenceKey": 1,
1144
+ "populates": ["label.winlossreason.winlossreason"],
1145
+ "mode": "FULL",
1146
+ "columnName": "winlossreason"
1147
+ }, {
1148
+ "referenceKey": 1,
1149
+ "populates": ["label.winlossreason.winlossreason1"],
1150
+ "mode": "FULL",
1151
+ "columnName": "winlossreason1"
1152
+ }, {
1153
+ "referenceKey": 1,
1154
+ "populates": ["label.winlossreason.secondarywinlossreason"],
1155
+ "mode": "FULL",
1156
+ "columnName": "secondarywinlossreason"
1157
+ }],
1158
+ "dataSet": "dataset.winlossreason",
1159
+ "file": "data.csv",
1160
+ "csvParams": {
1161
+ "quoteChar": "\"",
1162
+ "escapeChar": "\"",
1163
+ "separatorChar": ",",
1164
+ "endOfLine": "\n"
1165
+ }
1166
+ }
1167
+ }, {
1168
+ "dataSetSLIManifest": {
1169
+ "parts": [{
1170
+ "referenceKey": 1,
1171
+ "populates": ["label.productline.productline"],
1172
+ "mode": "FULL",
1173
+ "columnName": "productline"
1174
+ }, {
1175
+ "referenceKey": 1,
1176
+ "populates": ["label.productline.productline1"],
1177
+ "mode": "FULL",
1178
+ "columnName": "productline1"
1179
+ }, {
1180
+ "referenceKey": 1,
1181
+ "populates": ["label.productline.prod"],
1182
+ "mode": "FULL",
1183
+ "columnName": "prod"
1184
+ }, {
1185
+ "referenceKey": 1,
1186
+ "populates": ["label.productline.productorspecificsolution"],
1187
+ "mode": "FULL",
1188
+ "columnName": "productorspecificsolution"
1189
+ }],
1190
+ "dataSet": "dataset.productline",
1191
+ "file": "data.csv",
1192
+ "csvParams": {
1193
+ "quoteChar": "\"",
1194
+ "escapeChar": "\"",
1195
+ "separatorChar": ",",
1196
+ "endOfLine": "\n"
1197
+ }
1198
+ }
1199
+ }, {
1200
+ "dataSetSLIManifest": {
1201
+ "parts": [{
1202
+ "referenceKey": 1,
1203
+ "populates": ["label.leadchannel.leadchannel"],
1204
+ "mode": "FULL",
1205
+ "columnName": "leadchannel"
1206
+ }],
1207
+ "dataSet": "dataset.leadchannel",
1208
+ "file": "data.csv",
1209
+ "csvParams": {
1210
+ "quoteChar": "\"",
1211
+ "escapeChar": "\"",
1212
+ "separatorChar": ",",
1213
+ "endOfLine": "\n"
1214
+ }
1215
+ }
1216
+ }, {
1217
+ "dataSetSLIManifest": {
1218
+ "parts": [{
1219
+ "referenceKey": 1,
1220
+ "populates": ["label.stage.id"],
1221
+ "mode": "FULL",
1222
+ "columnName": "id"
1223
+ }, {
1224
+ "populates": ["label.stage.id.name"],
1225
+ "mode": "FULL",
1226
+ "columnName": "name"
1227
+ }, {
1228
+ "populates": ["label.stage.id.order"],
1229
+ "mode": "FULL",
1230
+ "columnName": "order"
1231
+ }, {
1232
+ "referenceKey": 1,
1233
+ "populates": ["label.stage.is_won"],
1234
+ "mode": "FULL",
1235
+ "columnName": "is_won"
1236
+ }, {
1237
+ "referenceKey": 1,
1238
+ "populates": ["label.stage.status"],
1239
+ "mode": "FULL",
1240
+ "columnName": "status"
1241
+ }, {
1242
+ "referenceKey": 1,
1243
+ "populates": ["label.stage.is_active"],
1244
+ "mode": "FULL",
1245
+ "columnName": "is_active"
1246
+ }, {
1247
+ "referenceKey": 1,
1248
+ "populates": ["label.stage.is_closed"],
1249
+ "mode": "FULL",
1250
+ "columnName": "is_closed"
1251
+ }, {
1252
+ "referenceKey": 1,
1253
+ "populates": ["label.stage.issao"],
1254
+ "mode": "FULL",
1255
+ "columnName": "issao"
1256
+ }, {
1257
+ "referenceKey": 1,
1258
+ "populates": ["label.stage.amconsolidatedstage"],
1259
+ "mode": "FULL",
1260
+ "columnName": "amconsolidatedstage"
1261
+ }, {
1262
+ "populates": ["label.stage.amconsolidatedstage.amstageorder"],
1263
+ "mode": "FULL",
1264
+ "columnName": "amstageorder"
1265
+ }],
1266
+ "dataSet": "dataset.stage",
1267
+ "file": "data.csv",
1268
+ "csvParams": {
1269
+ "quoteChar": "\"",
1270
+ "escapeChar": "\"",
1271
+ "separatorChar": ",",
1272
+ "endOfLine": "\n"
1273
+ }
1274
+ }
1275
+ }, {
1276
+ "dataSetSLIManifest": {
1277
+ "parts": [{
1278
+ "referenceKey": 1,
1279
+ "populates": ["label.opp_owner.id"],
1280
+ "mode": "FULL",
1281
+ "columnName": "id"
1282
+ }, {
1283
+ "populates": ["label.opp_owner.id.name"],
1284
+ "mode": "FULL",
1285
+ "columnName": "name"
1286
+ }, {
1287
+ "populates": ["label.opp_owner.id.oppownerpicture"],
1288
+ "mode": "FULL",
1289
+ "columnName": "oppownerpicture"
1290
+ }, {
1291
+ "populates": ["label.opp_owner.id.url"],
1292
+ "mode": "FULL",
1293
+ "columnName": "url"
1294
+ }, {
1295
+ "referenceKey": 1,
1296
+ "populates": ["label.opp_owner.region"],
1297
+ "mode": "FULL",
1298
+ "columnName": "region"
1299
+ }, {
1300
+ "referenceKey": 1,
1301
+ "populates": ["label.opp_owner.department"],
1302
+ "mode": "FULL",
1303
+ "columnName": "department"
1304
+ }, {
1305
+ "populates": ["oppownerstart.date.mdyy"],
1306
+ "mode": "FULL",
1307
+ "constraints": {
1308
+ "date": "MM/dd/yyyy"
1309
+ },
1310
+ "columnName": "oppownerstart",
1311
+ "referenceKey": 1
1312
+ }],
1313
+ "dataSet": "dataset.opp_owner",
1314
+ "file": "data.csv",
1315
+ "csvParams": {
1316
+ "quoteChar": "\"",
1317
+ "escapeChar": "\"",
1318
+ "separatorChar": ",",
1319
+ "endOfLine": "\n"
1320
+ }
1321
+ }
1322
+ }, {
1323
+ "dataSetSLIManifest": {
1324
+ "parts": [{
1325
+ "referenceKey": 1,
1326
+ "populates": ["label.activity.id"],
1327
+ "mode": "FULL",
1328
+ "columnName": "id"
1329
+ }, {
1330
+ "populates": ["label.activity.id.subject"],
1331
+ "mode": "FULL",
1332
+ "columnName": "subject"
1333
+ }, {
1334
+ "populates": ["label.activity.id.url"],
1335
+ "mode": "FULL",
1336
+ "columnName": "url"
1337
+ }, {
1338
+ "referenceKey": 1,
1339
+ "populates": ["label.activity.status"],
1340
+ "mode": "FULL",
1341
+ "columnName": "status"
1342
+ }, {
1343
+ "referenceKey": 1,
1344
+ "populates": ["label.activity.type"],
1345
+ "mode": "FULL",
1346
+ "columnName": "type"
1347
+ }],
1348
+ "dataSet": "dataset.activity",
1349
+ "file": "data.csv",
1350
+ "csvParams": {
1351
+ "quoteChar": "\"",
1352
+ "escapeChar": "\"",
1353
+ "separatorChar": ",",
1354
+ "endOfLine": "\n"
1355
+ }
1356
+ }
1357
+ }, {
1358
+ "dataSetSLIManifest": {
1359
+ "parts": [{
1360
+ "referenceKey": 1,
1361
+ "populates": ["label.opportunity.id"],
1362
+ "mode": "FULL",
1363
+ "columnName": "id"
1364
+ }, {
1365
+ "populates": ["label.opportunity.id.name"],
1366
+ "mode": "FULL",
1367
+ "columnName": "name"
1368
+ }, {
1369
+ "populates": ["label.opportunity.id.url"],
1370
+ "mode": "FULL",
1371
+ "columnName": "url"
1372
+ }],
1373
+ "dataSet": "dataset.opportunity",
1374
+ "file": "data.csv",
1375
+ "csvParams": {
1376
+ "quoteChar": "\"",
1377
+ "escapeChar": "\"",
1378
+ "separatorChar": ",",
1379
+ "endOfLine": "\n"
1380
+ }
1381
+ }
1382
+ }, {
1383
+ "dataSetSLIManifest": {
1384
+ "parts": [{
1385
+ "referenceKey": 1,
1386
+ "populates": ["label.bookingtype.booking_type_id"],
1387
+ "mode": "FULL",
1388
+ "columnName": "booking_type_id"
1389
+ }, {
1390
+ "populates": ["label.bookingtype.booking_type_id.booking_type_nm"],
1391
+ "mode": "FULL",
1392
+ "columnName": "booking_type_nm"
1393
+ }],
1394
+ "dataSet": "dataset.bookingtype",
1395
+ "file": "data.csv",
1396
+ "csvParams": {
1397
+ "quoteChar": "\"",
1398
+ "escapeChar": "\"",
1399
+ "separatorChar": ",",
1400
+ "endOfLine": "\n"
1401
+ }
1402
+ }
1403
+ }, {
1404
+ "dataSetSLIManifest": {
1405
+ "parts": [{
1406
+ "referenceKey": 1,
1407
+ "populates": ["label.forecast.id"],
1408
+ "mode": "FULL",
1409
+ "columnName": "id"
1410
+ }, {
1411
+ "populates": ["label.forecast.id.forecastcategoryordered"],
1412
+ "mode": "FULL",
1413
+ "columnName": "forecastcategoryordered"
1414
+ }],
1415
+ "dataSet": "dataset.forecast",
1416
+ "file": "data.csv",
1417
+ "csvParams": {
1418
+ "quoteChar": "\"",
1419
+ "escapeChar": "\"",
1420
+ "separatorChar": ",",
1421
+ "endOfLine": "\n"
1422
+ }
1423
+ }
1424
+ }]