gooddata 1.0.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (517) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.editorconfig +12 -0
  4. data/.flayignore +6 -0
  5. data/.gitignore +38 -0
  6. data/.pronto.yml +3 -0
  7. data/.rspec +5 -0
  8. data/.rubocop.yml +101 -0
  9. data/.travis.yml +9 -0
  10. data/.yardopts +22 -0
  11. data/CHANGELOG.md +272 -0
  12. data/CLI.md +435 -0
  13. data/CONTRIBUTING.md +38 -0
  14. data/DEPENDENCIES.md +880 -0
  15. data/Dockerfile.jruby +17 -0
  16. data/Dockerfile.ruby +19 -0
  17. data/Gemfile +4 -0
  18. data/Guardfile +5 -0
  19. data/LICENSE +22 -0
  20. data/LICENSE.rb +5 -0
  21. data/README.md +78 -0
  22. data/Rakefile +204 -0
  23. data/TODO.md +32 -0
  24. data/authors.sh +4 -0
  25. data/bin/gooddata +7 -0
  26. data/ci.rake +47 -0
  27. data/dependency_decisions.yml +104 -0
  28. data/docker-compose.yml +34 -0
  29. data/gooddata +9 -0
  30. data/gooddata.gemspec +72 -0
  31. data/lib/gooddata.rb +34 -0
  32. data/lib/gooddata/app/app.rb +16 -0
  33. data/lib/gooddata/bricks/base_downloader.rb +86 -0
  34. data/lib/gooddata/bricks/brick.rb +37 -0
  35. data/lib/gooddata/bricks/bricks.rb +17 -0
  36. data/lib/gooddata/bricks/middleware/aws_middleware.rb +41 -0
  37. data/lib/gooddata/bricks/middleware/base_middleware.rb +57 -0
  38. data/lib/gooddata/bricks/middleware/bench_middleware.rb +25 -0
  39. data/lib/gooddata/bricks/middleware/bulk_salesforce_middleware.rb +37 -0
  40. data/lib/gooddata/bricks/middleware/decode_params_middleware.rb +21 -0
  41. data/lib/gooddata/bricks/middleware/dwh_middleware.rb +41 -0
  42. data/lib/gooddata/bricks/middleware/fs_download_middleware.rb +48 -0
  43. data/lib/gooddata/bricks/middleware/fs_upload_middleware.rb +36 -0
  44. data/lib/gooddata/bricks/middleware/gooddata_middleware.rb +112 -0
  45. data/lib/gooddata/bricks/middleware/logger_middleware.rb +33 -0
  46. data/lib/gooddata/bricks/middleware/middleware.rb +12 -0
  47. data/lib/gooddata/bricks/middleware/restforce_middleware.rb +58 -0
  48. data/lib/gooddata/bricks/middleware/stdout_middleware.rb +23 -0
  49. data/lib/gooddata/bricks/middleware/twitter_middleware.rb +29 -0
  50. data/lib/gooddata/bricks/middleware/undot_params_middleware.rb +37 -0
  51. data/lib/gooddata/bricks/pipeline.rb +25 -0
  52. data/lib/gooddata/bricks/utils.rb +18 -0
  53. data/lib/gooddata/cli/cli.rb +27 -0
  54. data/lib/gooddata/cli/commands/auth_cmd.rb +29 -0
  55. data/lib/gooddata/cli/commands/domain_cmd.rb +28 -0
  56. data/lib/gooddata/cli/commands/project_cmd.rb +28 -0
  57. data/lib/gooddata/cli/hooks.rb +56 -0
  58. data/lib/gooddata/cli/shared.rb +66 -0
  59. data/lib/gooddata/cli/terminal.rb +20 -0
  60. data/lib/gooddata/client.rb +67 -0
  61. data/lib/gooddata/commands/api.rb +64 -0
  62. data/lib/gooddata/commands/auth.rb +107 -0
  63. data/lib/gooddata/commands/base.rb +12 -0
  64. data/lib/gooddata/commands/commands.rb +12 -0
  65. data/lib/gooddata/commands/datasets.rb +148 -0
  66. data/lib/gooddata/commands/datawarehouse.rb +20 -0
  67. data/lib/gooddata/commands/domain.rb +40 -0
  68. data/lib/gooddata/commands/process.rb +67 -0
  69. data/lib/gooddata/commands/project.rb +144 -0
  70. data/lib/gooddata/commands/projects.rb +20 -0
  71. data/lib/gooddata/commands/role.rb +36 -0
  72. data/lib/gooddata/commands/runners.rb +47 -0
  73. data/lib/gooddata/commands/scaffold.rb +69 -0
  74. data/lib/gooddata/commands/user.rb +39 -0
  75. data/lib/gooddata/connection.rb +127 -0
  76. data/lib/gooddata/core/core.rb +12 -0
  77. data/lib/gooddata/core/logging.rb +105 -0
  78. data/lib/gooddata/core/nil_logger.rb +32 -0
  79. data/lib/gooddata/core/project.rb +74 -0
  80. data/lib/gooddata/core/rest.rb +149 -0
  81. data/lib/gooddata/core/user.rb +20 -0
  82. data/lib/gooddata/data/data.rb +12 -0
  83. data/lib/gooddata/data/guesser.rb +122 -0
  84. data/lib/gooddata/exceptions/attr_element_not_found.rb +16 -0
  85. data/lib/gooddata/exceptions/command_failed.rb +11 -0
  86. data/lib/gooddata/exceptions/exceptions.rb +12 -0
  87. data/lib/gooddata/exceptions/execution_limit_exceeded.rb +13 -0
  88. data/lib/gooddata/exceptions/export_clone.rb +4 -0
  89. data/lib/gooddata/exceptions/filter_maqlization.rb +16 -0
  90. data/lib/gooddata/exceptions/import_clone.rb +4 -0
  91. data/lib/gooddata/exceptions/malformed_user.rb +15 -0
  92. data/lib/gooddata/exceptions/maql_execution.rb +16 -0
  93. data/lib/gooddata/exceptions/no_project_error.rb +19 -0
  94. data/lib/gooddata/exceptions/object_migration.rb +32 -0
  95. data/lib/gooddata/exceptions/project_not_found.rb +13 -0
  96. data/lib/gooddata/exceptions/segment_not_empty.rb +18 -0
  97. data/lib/gooddata/exceptions/uncomputable_report.rb +13 -0
  98. data/lib/gooddata/exceptions/user_in_different_domain.rb +15 -0
  99. data/lib/gooddata/exceptions/validation_error.rb +16 -0
  100. data/lib/gooddata/extensions/big_decimal.rb +17 -0
  101. data/lib/gooddata/extensions/class.rb +11 -0
  102. data/lib/gooddata/extensions/enumerable.rb +39 -0
  103. data/lib/gooddata/extensions/extensions.rb +10 -0
  104. data/lib/gooddata/extensions/false.rb +23 -0
  105. data/lib/gooddata/extensions/hash.rb +49 -0
  106. data/lib/gooddata/extensions/integer.rb +5 -0
  107. data/lib/gooddata/extensions/nil.rb +19 -0
  108. data/lib/gooddata/extensions/numeric.rb +15 -0
  109. data/lib/gooddata/extensions/object.rb +31 -0
  110. data/lib/gooddata/extensions/string.rb +7 -0
  111. data/lib/gooddata/extensions/symbol.rb +15 -0
  112. data/lib/gooddata/extensions/true.rb +23 -0
  113. data/lib/gooddata/extract.rb +21 -0
  114. data/lib/gooddata/goodzilla/goodzilla.rb +160 -0
  115. data/lib/gooddata/helpers/auth_helpers.rb +75 -0
  116. data/lib/gooddata/helpers/csv_helper.rb +61 -0
  117. data/lib/gooddata/helpers/data_helper.rb +129 -0
  118. data/lib/gooddata/helpers/erb_helper.rb +23 -0
  119. data/lib/gooddata/helpers/global_helpers.rb +266 -0
  120. data/lib/gooddata/helpers/global_helpers_params.rb +292 -0
  121. data/lib/gooddata/helpers/helpers.rb +10 -0
  122. data/lib/gooddata/lcm/actions/actions.rb +12 -0
  123. data/lib/gooddata/lcm/actions/apply_custom_maql.rb +80 -0
  124. data/lib/gooddata/lcm/actions/associate_clients.rb +87 -0
  125. data/lib/gooddata/lcm/actions/base_action.rb +23 -0
  126. data/lib/gooddata/lcm/actions/collect_ca_metrics.rb +53 -0
  127. data/lib/gooddata/lcm/actions/collect_client_projects.rb +78 -0
  128. data/lib/gooddata/lcm/actions/collect_clients.rb +128 -0
  129. data/lib/gooddata/lcm/actions/collect_data_product.rb +57 -0
  130. data/lib/gooddata/lcm/actions/collect_dynamic_schedule_params.rb +62 -0
  131. data/lib/gooddata/lcm/actions/collect_ldm_objects.rb +56 -0
  132. data/lib/gooddata/lcm/actions/collect_meta.rb +88 -0
  133. data/lib/gooddata/lcm/actions/collect_segment_clients.rb +113 -0
  134. data/lib/gooddata/lcm/actions/collect_segments.rb +72 -0
  135. data/lib/gooddata/lcm/actions/collect_tagged_objects.rb +80 -0
  136. data/lib/gooddata/lcm/actions/collect_users_brick_users.rb +46 -0
  137. data/lib/gooddata/lcm/actions/create_segment_masters.rb +160 -0
  138. data/lib/gooddata/lcm/actions/ensure_data_product.rb +53 -0
  139. data/lib/gooddata/lcm/actions/ensure_release_table.rb +53 -0
  140. data/lib/gooddata/lcm/actions/ensure_segments.rb +32 -0
  141. data/lib/gooddata/lcm/actions/ensure_technical_users_domain.rb +70 -0
  142. data/lib/gooddata/lcm/actions/ensure_technical_users_project.rb +83 -0
  143. data/lib/gooddata/lcm/actions/execute_schedules.rb +128 -0
  144. data/lib/gooddata/lcm/actions/hello_world.rb +41 -0
  145. data/lib/gooddata/lcm/actions/import_object_collections.rb +60 -0
  146. data/lib/gooddata/lcm/actions/print_actions.rb +58 -0
  147. data/lib/gooddata/lcm/actions/print_modes.rb +69 -0
  148. data/lib/gooddata/lcm/actions/print_types.rb +52 -0
  149. data/lib/gooddata/lcm/actions/provision_clients.rb +89 -0
  150. data/lib/gooddata/lcm/actions/purge_clients.rb +58 -0
  151. data/lib/gooddata/lcm/actions/rename_existing_client_projects.rb +70 -0
  152. data/lib/gooddata/lcm/actions/segments_filter.rb +50 -0
  153. data/lib/gooddata/lcm/actions/synchronize_attribute_drillpaths.rb +64 -0
  154. data/lib/gooddata/lcm/actions/synchronize_cas.rb +72 -0
  155. data/lib/gooddata/lcm/actions/synchronize_clients.rb +94 -0
  156. data/lib/gooddata/lcm/actions/synchronize_color_palette.rb +67 -0
  157. data/lib/gooddata/lcm/actions/synchronize_etls_in_segment.rb +155 -0
  158. data/lib/gooddata/lcm/actions/synchronize_label_types.rb +64 -0
  159. data/lib/gooddata/lcm/actions/synchronize_ldm.rb +82 -0
  160. data/lib/gooddata/lcm/actions/synchronize_meta.rb +52 -0
  161. data/lib/gooddata/lcm/actions/synchronize_new_segments.rb +61 -0
  162. data/lib/gooddata/lcm/actions/synchronize_processes.rb +66 -0
  163. data/lib/gooddata/lcm/actions/synchronize_schedules.rb +91 -0
  164. data/lib/gooddata/lcm/actions/synchronize_tag_objects.rb +64 -0
  165. data/lib/gooddata/lcm/actions/synchronize_user_filters.rb +210 -0
  166. data/lib/gooddata/lcm/actions/synchronize_user_groups.rb +53 -0
  167. data/lib/gooddata/lcm/actions/synchronize_users.rb +336 -0
  168. data/lib/gooddata/lcm/actions/update_release_table.rb +77 -0
  169. data/lib/gooddata/lcm/data/create_lcm_release.sql.erb +6 -0
  170. data/lib/gooddata/lcm/data/insert_into_lcm_release.sql.erb +11 -0
  171. data/lib/gooddata/lcm/data/select_from_lcm_release.sql.erb +8 -0
  172. data/lib/gooddata/lcm/data/update_lcm_release.sql.erb +7 -0
  173. data/lib/gooddata/lcm/dsl/dsl.rb +50 -0
  174. data/lib/gooddata/lcm/dsl/params_dsl.rb +61 -0
  175. data/lib/gooddata/lcm/dsl/type_dsl.rb +62 -0
  176. data/lib/gooddata/lcm/helpers/check_helper.rb +41 -0
  177. data/lib/gooddata/lcm/helpers/helpers.rb +12 -0
  178. data/lib/gooddata/lcm/helpers/tags_helper.rb +36 -0
  179. data/lib/gooddata/lcm/lcm.rb +325 -0
  180. data/lib/gooddata/lcm/lcm2.rb +400 -0
  181. data/lib/gooddata/lcm/types/base_type.rb +29 -0
  182. data/lib/gooddata/lcm/types/class/ads_client.rb +35 -0
  183. data/lib/gooddata/lcm/types/class/class.rb +21 -0
  184. data/lib/gooddata/lcm/types/class/gd_client.rb +35 -0
  185. data/lib/gooddata/lcm/types/class/types.rb +12 -0
  186. data/lib/gooddata/lcm/types/complex/complex.rb +33 -0
  187. data/lib/gooddata/lcm/types/complex/release_query.rb +35 -0
  188. data/lib/gooddata/lcm/types/complex/segment.rb +40 -0
  189. data/lib/gooddata/lcm/types/complex/synchronization_info.rb +35 -0
  190. data/lib/gooddata/lcm/types/complex/tokens.rb +31 -0
  191. data/lib/gooddata/lcm/types/complex/types.rb +12 -0
  192. data/lib/gooddata/lcm/types/complex/update_preference.rb +38 -0
  193. data/lib/gooddata/lcm/types/complex/users_brick_config.rb +32 -0
  194. data/lib/gooddata/lcm/types/param.rb +16 -0
  195. data/lib/gooddata/lcm/types/scalar/bool.rb +22 -0
  196. data/lib/gooddata/lcm/types/scalar/hash.rb +22 -0
  197. data/lib/gooddata/lcm/types/scalar/integer.rb +22 -0
  198. data/lib/gooddata/lcm/types/scalar/object.rb +22 -0
  199. data/lib/gooddata/lcm/types/scalar/string.rb +22 -0
  200. data/lib/gooddata/lcm/types/scalar/types.rb +12 -0
  201. data/lib/gooddata/lcm/types/special/array.rb +33 -0
  202. data/lib/gooddata/lcm/types/special/enum.rb +15 -0
  203. data/lib/gooddata/lcm/types/special/types.rb +12 -0
  204. data/lib/gooddata/lcm/types/types.rb +12 -0
  205. data/lib/gooddata/lcm/user_bricks_helper.rb +32 -0
  206. data/lib/gooddata/mixins/author.rb +26 -0
  207. data/lib/gooddata/mixins/content_getter.rb +15 -0
  208. data/lib/gooddata/mixins/content_property_reader.rb +17 -0
  209. data/lib/gooddata/mixins/content_property_writer.rb +17 -0
  210. data/lib/gooddata/mixins/contributor.rb +20 -0
  211. data/lib/gooddata/mixins/data_getter.rb +15 -0
  212. data/lib/gooddata/mixins/data_property_reader.rb +19 -0
  213. data/lib/gooddata/mixins/data_property_writer.rb +19 -0
  214. data/lib/gooddata/mixins/inspector.rb +53 -0
  215. data/lib/gooddata/mixins/is_attribute.rb +17 -0
  216. data/lib/gooddata/mixins/is_dimension.rb +17 -0
  217. data/lib/gooddata/mixins/is_fact.rb +17 -0
  218. data/lib/gooddata/mixins/is_folder.rb +11 -0
  219. data/lib/gooddata/mixins/is_label.rb +19 -0
  220. data/lib/gooddata/mixins/links.rb +15 -0
  221. data/lib/gooddata/mixins/md_finders.rb +79 -0
  222. data/lib/gooddata/mixins/md_grantees.rb +42 -0
  223. data/lib/gooddata/mixins/md_id_to_uri.rb +39 -0
  224. data/lib/gooddata/mixins/md_json.rb +15 -0
  225. data/lib/gooddata/mixins/md_lock.rb +87 -0
  226. data/lib/gooddata/mixins/md_object_id.rb +15 -0
  227. data/lib/gooddata/mixins/md_object_indexer.rb +74 -0
  228. data/lib/gooddata/mixins/md_object_query.rb +134 -0
  229. data/lib/gooddata/mixins/md_relations.rb +43 -0
  230. data/lib/gooddata/mixins/meta_getter.rb +17 -0
  231. data/lib/gooddata/mixins/meta_property_reader.rb +19 -0
  232. data/lib/gooddata/mixins/meta_property_writer.rb +19 -0
  233. data/lib/gooddata/mixins/mixins.rb +19 -0
  234. data/lib/gooddata/mixins/not_attribute.rb +17 -0
  235. data/lib/gooddata/mixins/not_exportable.rb +15 -0
  236. data/lib/gooddata/mixins/not_fact.rb +17 -0
  237. data/lib/gooddata/mixins/not_group.rb +17 -0
  238. data/lib/gooddata/mixins/not_label.rb +19 -0
  239. data/lib/gooddata/mixins/not_metric.rb +19 -0
  240. data/lib/gooddata/mixins/obj_id.rb +15 -0
  241. data/lib/gooddata/mixins/rest_getters.rb +17 -0
  242. data/lib/gooddata/mixins/rest_resource.rb +47 -0
  243. data/lib/gooddata/mixins/root_key_getter.rb +15 -0
  244. data/lib/gooddata/mixins/root_key_setter.rb +15 -0
  245. data/lib/gooddata/mixins/timestamps.rb +19 -0
  246. data/lib/gooddata/mixins/to_json.rb +11 -0
  247. data/lib/gooddata/mixins/uri_getter.rb +9 -0
  248. data/lib/gooddata/models/ads_output_stage.rb +85 -0
  249. data/lib/gooddata/models/automated_data_distribution.rb +36 -0
  250. data/lib/gooddata/models/blueprint/anchor_field.rb +65 -0
  251. data/lib/gooddata/models/blueprint/attribute_field.rb +45 -0
  252. data/lib/gooddata/models/blueprint/blueprint.rb +11 -0
  253. data/lib/gooddata/models/blueprint/blueprint_field.rb +70 -0
  254. data/lib/gooddata/models/blueprint/dashboard_builder.rb +30 -0
  255. data/lib/gooddata/models/blueprint/dataset_blueprint.rb +455 -0
  256. data/lib/gooddata/models/blueprint/date_dimension.rb +20 -0
  257. data/lib/gooddata/models/blueprint/fact_field.rb +20 -0
  258. data/lib/gooddata/models/blueprint/label_field.rb +47 -0
  259. data/lib/gooddata/models/blueprint/project_blueprint.rb +791 -0
  260. data/lib/gooddata/models/blueprint/project_builder.rb +103 -0
  261. data/lib/gooddata/models/blueprint/reference_field.rb +43 -0
  262. data/lib/gooddata/models/blueprint/schema_blueprint.rb +160 -0
  263. data/lib/gooddata/models/blueprint/schema_builder.rb +89 -0
  264. data/lib/gooddata/models/blueprint/to_manifest.rb +185 -0
  265. data/lib/gooddata/models/blueprint/to_wire.rb +173 -0
  266. data/lib/gooddata/models/channel_configuration.rb +112 -0
  267. data/lib/gooddata/models/client.rb +236 -0
  268. data/lib/gooddata/models/client_synchronization_result.rb +31 -0
  269. data/lib/gooddata/models/client_synchronization_result_details.rb +41 -0
  270. data/lib/gooddata/models/data_product.rb +149 -0
  271. data/lib/gooddata/models/datawarehouse.rb +114 -0
  272. data/lib/gooddata/models/domain.rb +505 -0
  273. data/lib/gooddata/models/execution.rb +115 -0
  274. data/lib/gooddata/models/execution_detail.rb +81 -0
  275. data/lib/gooddata/models/from_wire.rb +173 -0
  276. data/lib/gooddata/models/invitation.rb +75 -0
  277. data/lib/gooddata/models/links.rb +50 -0
  278. data/lib/gooddata/models/membership.rb +441 -0
  279. data/lib/gooddata/models/metadata.rb +324 -0
  280. data/lib/gooddata/models/metadata/attribute.rb +155 -0
  281. data/lib/gooddata/models/metadata/dashboard.rb +120 -0
  282. data/lib/gooddata/models/metadata/dashboard/dashboard_item.rb +76 -0
  283. data/lib/gooddata/models/metadata/dashboard/filter_apply_item.rb +37 -0
  284. data/lib/gooddata/models/metadata/dashboard/filter_item.rb +64 -0
  285. data/lib/gooddata/models/metadata/dashboard/geo_chart_item.rb +56 -0
  286. data/lib/gooddata/models/metadata/dashboard/headline_item.rb +56 -0
  287. data/lib/gooddata/models/metadata/dashboard/iframe_item.rb +46 -0
  288. data/lib/gooddata/models/metadata/dashboard/report_item.rb +92 -0
  289. data/lib/gooddata/models/metadata/dashboard/text_item.rb +55 -0
  290. data/lib/gooddata/models/metadata/dashboard_tab.rb +141 -0
  291. data/lib/gooddata/models/metadata/dataset.rb +67 -0
  292. data/lib/gooddata/models/metadata/dimension.rb +57 -0
  293. data/lib/gooddata/models/metadata/fact.rb +51 -0
  294. data/lib/gooddata/models/metadata/folder.rb +49 -0
  295. data/lib/gooddata/models/metadata/label.rb +128 -0
  296. data/lib/gooddata/models/metadata/metadata.rb +12 -0
  297. data/lib/gooddata/models/metadata/metric.rb +206 -0
  298. data/lib/gooddata/models/metadata/report.rb +268 -0
  299. data/lib/gooddata/models/metadata/report_definition.rb +272 -0
  300. data/lib/gooddata/models/metadata/scheduled_mail.rb +277 -0
  301. data/lib/gooddata/models/metadata/scheduled_mail/dashboard_attachment.rb +62 -0
  302. data/lib/gooddata/models/metadata/scheduled_mail/report_attachment.rb +64 -0
  303. data/lib/gooddata/models/metadata/variable.rb +96 -0
  304. data/lib/gooddata/models/model.rb +293 -0
  305. data/lib/gooddata/models/models.rb +12 -0
  306. data/lib/gooddata/models/module_constants.rb +31 -0
  307. data/lib/gooddata/models/notification_rule.rb +113 -0
  308. data/lib/gooddata/models/process.rb +371 -0
  309. data/lib/gooddata/models/profile.rb +451 -0
  310. data/lib/gooddata/models/project.rb +2030 -0
  311. data/lib/gooddata/models/project_creator.rb +209 -0
  312. data/lib/gooddata/models/project_log_formatter.rb +204 -0
  313. data/lib/gooddata/models/project_metadata.rb +67 -0
  314. data/lib/gooddata/models/project_role.rb +79 -0
  315. data/lib/gooddata/models/report_data_result.rb +270 -0
  316. data/lib/gooddata/models/schedule.rb +538 -0
  317. data/lib/gooddata/models/segment.rb +274 -0
  318. data/lib/gooddata/models/style_setting.rb +62 -0
  319. data/lib/gooddata/models/subscription.rb +188 -0
  320. data/lib/gooddata/models/tab_builder.rb +27 -0
  321. data/lib/gooddata/models/user_filters/mandatory_user_filter.rb +76 -0
  322. data/lib/gooddata/models/user_filters/user_filter.rb +101 -0
  323. data/lib/gooddata/models/user_filters/user_filter_builder.rb +553 -0
  324. data/lib/gooddata/models/user_filters/user_filters.rb +13 -0
  325. data/lib/gooddata/models/user_filters/variable_user_filter.rb +33 -0
  326. data/lib/gooddata/models/user_group.rb +250 -0
  327. data/lib/gooddata/rest/README.md +37 -0
  328. data/lib/gooddata/rest/client.rb +396 -0
  329. data/lib/gooddata/rest/connection.rb +776 -0
  330. data/lib/gooddata/rest/object.rb +69 -0
  331. data/lib/gooddata/rest/object_factory.rb +51 -0
  332. data/lib/gooddata/rest/resource.rb +27 -0
  333. data/lib/gooddata/rest/rest.rb +24 -0
  334. data/lib/gooddata/version.rb +23 -0
  335. data/lib/templates/bricks/brick.rb.erb +7 -0
  336. data/lib/templates/bricks/main.rb.erb +5 -0
  337. data/lib/templates/project/Goodfile.erb +4 -0
  338. data/lib/templates/project/data/commits.csv +4 -0
  339. data/lib/templates/project/data/devs.csv +4 -0
  340. data/lib/templates/project/data/repos.csv +3 -0
  341. data/lib/templates/project/model/model.rb.erb +20 -0
  342. data/spec/.rubocop.yml +16 -0
  343. data/spec/bricks/bricks_spec.rb +110 -0
  344. data/spec/bricks/default-config.json +8 -0
  345. data/spec/data/.gooddata +4 -0
  346. data/spec/data/blueprints/additional_dataset_module.json +32 -0
  347. data/spec/data/blueprints/attribute_sort_order_blueprint.json +72 -0
  348. data/spec/data/blueprints/big_blueprint_not_pruned.json +2079 -0
  349. data/spec/data/blueprints/invalid_blueprint.json +103 -0
  350. data/spec/data/blueprints/m_n_model.json +104 -0
  351. data/spec/data/blueprints/model_module.json +25 -0
  352. data/spec/data/blueprints/test_blueprint.json +39 -0
  353. data/spec/data/blueprints/test_project_model_spec.json +106 -0
  354. data/spec/data/cc/data/source/commits.csv +4 -0
  355. data/spec/data/cc/data/source/devs.csv +4 -0
  356. data/spec/data/cc/data/source/repos.csv +3 -0
  357. data/spec/data/cc/devel.prm +0 -0
  358. data/spec/data/cc/graph/graph.grf +11 -0
  359. data/spec/data/cc/workspace.prm +19 -0
  360. data/spec/data/column_based_permissions.csv +7 -0
  361. data/spec/data/column_based_permissions2.csv +6 -0
  362. data/spec/data/dynamic_schedule_params_table.csv +7 -0
  363. data/spec/data/gd_gse_data_blueprint.json +1371 -0
  364. data/spec/data/gd_gse_data_manifest.json +1424 -0
  365. data/spec/data/gd_gse_data_model.json +1772 -0
  366. data/spec/data/gooddata_version_process/gooddata_version.rb +9 -0
  367. data/spec/data/gooddata_version_process/gooddata_version.zip +0 -0
  368. data/spec/data/hello_world_process/hello_world.rb +9 -0
  369. data/spec/data/hello_world_process/hello_world.zip +0 -0
  370. data/spec/data/line_based_permissions.csv +3 -0
  371. data/spec/data/manifests/test_blueprint.json +32 -0
  372. data/spec/data/manifests/test_project.json +107 -0
  373. data/spec/data/reports/left_attr_report.json +108 -0
  374. data/spec/data/reports/metric_only_one_line.json +83 -0
  375. data/spec/data/reports/report_1.json +197 -0
  376. data/spec/data/reports/top_attr_report.json +108 -0
  377. data/spec/data/ruby_params_process/ruby_params.rb +9 -0
  378. data/spec/data/ruby_process/deep_files/deep_stuff.txt +1 -0
  379. data/spec/data/ruby_process/process.rb +8 -0
  380. data/spec/data/ruby_process/stuff.txt +1 -0
  381. data/spec/data/superfluous_titles_view.json +81 -0
  382. data/spec/data/test-ci-data.csv +2 -0
  383. data/spec/data/users.csv +12 -0
  384. data/spec/data/wire_models/attribute_sort_by_model.json +73 -0
  385. data/spec/data/wire_models/model_view.json +1775 -0
  386. data/spec/data/wire_models/nu_model.json +3046 -0
  387. data/spec/data/wire_models/test_blueprint.json +66 -0
  388. data/spec/data/wire_test_project.json +150 -0
  389. data/spec/data/workspace_table.csv +3 -0
  390. data/spec/environment/default.rb +43 -0
  391. data/spec/environment/development.rb +32 -0
  392. data/spec/environment/environment.rb +38 -0
  393. data/spec/environment/production.rb +27 -0
  394. data/spec/environment/staging.rb +33 -0
  395. data/spec/environment/testing.rb +32 -0
  396. data/spec/helpers/blueprint_helper.rb +27 -0
  397. data/spec/helpers/cli_helper.rb +38 -0
  398. data/spec/helpers/connection_helper.rb +43 -0
  399. data/spec/helpers/crypto_helper.rb +19 -0
  400. data/spec/helpers/csv_helper.rb +20 -0
  401. data/spec/helpers/process_helper.rb +35 -0
  402. data/spec/helpers/project_helper.rb +74 -0
  403. data/spec/helpers/schedule_helper.rb +33 -0
  404. data/spec/helpers/spec_helper.rb +17 -0
  405. data/spec/integration/ads_output_stage_spec.rb +45 -0
  406. data/spec/integration/blueprint_updates_spec.rb +107 -0
  407. data/spec/integration/blueprint_with_ca_spec.rb +56 -0
  408. data/spec/integration/blueprint_with_grain_spec.rb +74 -0
  409. data/spec/integration/channel_configuration_spec.rb +67 -0
  410. data/spec/integration/clients_spec.rb +164 -0
  411. data/spec/integration/command_datawarehouse_spec.rb +45 -0
  412. data/spec/integration/command_projects_spec.rb +32 -0
  413. data/spec/integration/commands/command_projects_spec.rb +22 -0
  414. data/spec/integration/core/connection_spec.rb +56 -0
  415. data/spec/integration/core/logging_spec.rb +130 -0
  416. data/spec/integration/core/project_spec.rb +54 -0
  417. data/spec/integration/create_from_template_spec.rb +29 -0
  418. data/spec/integration/create_project_spec.rb +27 -0
  419. data/spec/integration/date_dim_switch_spec.rb +150 -0
  420. data/spec/integration/deprecated_load_spec.rb +60 -0
  421. data/spec/integration/full_process_schedule_spec.rb +367 -0
  422. data/spec/integration/full_project_spec.rb +592 -0
  423. data/spec/integration/helpers_spec.rb +16 -0
  424. data/spec/integration/lcm_spec.rb +54 -0
  425. data/spec/integration/mixins/id_to_uri_spec.rb +44 -0
  426. data/spec/integration/models/data_product_spec.rb +71 -0
  427. data/spec/integration/models/domain_spec.rb +162 -0
  428. data/spec/integration/models/invitation_spec.rb +17 -0
  429. data/spec/integration/models/membership_spec.rb +127 -0
  430. data/spec/integration/models/metadata/report_spec.rb +54 -0
  431. data/spec/integration/models/params_spec.rb +118 -0
  432. data/spec/integration/models/profile_spec.rb +210 -0
  433. data/spec/integration/models/project_role_spec.rb +94 -0
  434. data/spec/integration/models/project_spec.rb +225 -0
  435. data/spec/integration/models/schedule_spec.rb +485 -0
  436. data/spec/integration/models/unit_project_spec.rb +130 -0
  437. data/spec/integration/over_to_user_filters_spec.rb +98 -0
  438. data/spec/integration/partial_md_export_import_spec.rb +41 -0
  439. data/spec/integration/project_spec.rb +381 -0
  440. data/spec/integration/rest_spec.rb +214 -0
  441. data/spec/integration/schedule_spec.rb +613 -0
  442. data/spec/integration/segments_spec.rb +100 -0
  443. data/spec/integration/subscription_spec.rb +88 -0
  444. data/spec/integration/urn_date_dim_spec.rb +53 -0
  445. data/spec/integration/user_filters_spec.rb +306 -0
  446. data/spec/integration/user_group_spec.rb +147 -0
  447. data/spec/integration/variables_spec.rb +189 -0
  448. data/spec/logging_in_logging_out_spec.rb +91 -0
  449. data/spec/spec_helper.rb +66 -0
  450. data/spec/unit/actions/associate_clients_spec.rb +47 -0
  451. data/spec/unit/actions/collect_client_projects_spec.rb +47 -0
  452. data/spec/unit/actions/collect_clients_spec.rb +65 -0
  453. data/spec/unit/actions/collect_data_product_spec.rb +56 -0
  454. data/spec/unit/actions/collect_dynamic_schedule_params_spec.rb +56 -0
  455. data/spec/unit/actions/collect_meta_spec.rb +88 -0
  456. data/spec/unit/actions/collect_segment_clients_spec.rb +81 -0
  457. data/spec/unit/actions/collect_tagged_objects_spec.rb +126 -0
  458. data/spec/unit/actions/collect_users_brick_users_spec.rb +36 -0
  459. data/spec/unit/actions/create_segment_masters_spec.rb +64 -0
  460. data/spec/unit/actions/ensure_data_product_spec.rb +38 -0
  461. data/spec/unit/actions/ensure_technical_users_domain_spec.rb +51 -0
  462. data/spec/unit/actions/ensure_technical_users_project_spec.rb +72 -0
  463. data/spec/unit/actions/execute_schedules_spec.rb +94 -0
  464. data/spec/unit/actions/provision_clients_spec.rb +45 -0
  465. data/spec/unit/actions/purge_clients_spec.rb +47 -0
  466. data/spec/unit/actions/rename_existing_client_projects_spec.rb +54 -0
  467. data/spec/unit/actions/segments_filter_spec.rb +46 -0
  468. data/spec/unit/actions/shared_examples_for_user_actions.rb +26 -0
  469. data/spec/unit/actions/synchronize_cas_spec.rb +58 -0
  470. data/spec/unit/actions/synchronize_etls_in_segment_spec.rb +212 -0
  471. data/spec/unit/actions/synchronize_ldm_spec.rb +57 -0
  472. data/spec/unit/actions/synchronize_user_filters_spec.rb +146 -0
  473. data/spec/unit/actions/synchronize_user_groups_spec.rb +49 -0
  474. data/spec/unit/actions/synchronize_users_spec.rb +134 -0
  475. data/spec/unit/bricks/bricks_spec.rb +34 -0
  476. data/spec/unit/bricks/middleware/aws_middelware_spec.rb +98 -0
  477. data/spec/unit/bricks/middleware/bench_middleware_spec.rb +15 -0
  478. data/spec/unit/bricks/middleware/bulk_salesforce_middleware_spec.rb +15 -0
  479. data/spec/unit/bricks/middleware/gooddata_middleware_spec.rb +15 -0
  480. data/spec/unit/bricks/middleware/logger_middleware_spec.rb +30 -0
  481. data/spec/unit/bricks/middleware/restforce_middleware_spec.rb +15 -0
  482. data/spec/unit/bricks/middleware/stdout_middleware_spec.rb +15 -0
  483. data/spec/unit/bricks/middleware/twitter_middleware_spec.rb +15 -0
  484. data/spec/unit/cli/cli_spec.rb +17 -0
  485. data/spec/unit/cli/commands/cmd_auth_spec.rb +17 -0
  486. data/spec/unit/core/nil_logger_spec.rb +13 -0
  487. data/spec/unit/extensions/hash_spec.rb +22 -0
  488. data/spec/unit/godzilla/goodzilla_spec.rb +74 -0
  489. data/spec/unit/helpers/csv_helper_spec.rb +22 -0
  490. data/spec/unit/helpers/data_helper_spec.rb +67 -0
  491. data/spec/unit/helpers/global_helpers_spec.rb +264 -0
  492. data/spec/unit/helpers_spec.rb +254 -0
  493. data/spec/unit/lcm/user_bricks_helper_spec.rb +58 -0
  494. data/spec/unit/models/blueprint/attribute_sort_by_spec.rb +20 -0
  495. data/spec/unit/models/blueprint/attributes_spec.rb +28 -0
  496. data/spec/unit/models/blueprint/dataset_spec.rb +120 -0
  497. data/spec/unit/models/blueprint/labels_spec.rb +43 -0
  498. data/spec/unit/models/blueprint/project_blueprint_spec.rb +642 -0
  499. data/spec/unit/models/blueprint/reference_spec.rb +28 -0
  500. data/spec/unit/models/blueprint/schema_builder_spec.rb +36 -0
  501. data/spec/unit/models/blueprint/to_wire_spec.rb +195 -0
  502. data/spec/unit/models/execution_spec.rb +109 -0
  503. data/spec/unit/models/from_wire_spec.rb +301 -0
  504. data/spec/unit/models/metadata_spec.rb +140 -0
  505. data/spec/unit/models/metric_spec.rb +129 -0
  506. data/spec/unit/models/model_spec.rb +77 -0
  507. data/spec/unit/models/project_creator_spec.rb +90 -0
  508. data/spec/unit/models/project_spec.rb +94 -0
  509. data/spec/unit/models/report_result_data_spec.rb +194 -0
  510. data/spec/unit/models/to_manifest_spec.rb +136 -0
  511. data/spec/unit/models/user_filters/user_filter_builder_spec.rb +110 -0
  512. data/spec/unit/models/user_filters_spec.rb +95 -0
  513. data/spec/unit/models/variable_spec.rb +280 -0
  514. data/spec/unit/rest/polling_spec.rb +101 -0
  515. data/spec/unit/rest/resource_spec.rb +10 -0
  516. data/yard-server.sh +3 -0
  517. metadata +1207 -0
@@ -0,0 +1,1772 @@
1
+ {
2
+ "projectModelView": {
3
+ "model": {
4
+ "projectModel": {
5
+ "datasets": [{
6
+ "dataset": {
7
+ "identifier": "dataset.stage_history",
8
+ "title": "stage_history",
9
+ "anchor": {
10
+ "attribute": {
11
+ "identifier": "attr.stage_history.factsof",
12
+ "title": "Records of stage_history"
13
+ }
14
+ },
15
+ "attributes": [{
16
+ "attribute": {
17
+ "identifier": "attr.stage_history.currentstatus",
18
+ "title": "Current Stage",
19
+ "labels": [{
20
+ "label": {
21
+ "identifier": "label.stage_history.currentstatus",
22
+ "title": "Current Stage",
23
+ "type": "GDC.text",
24
+ "dataType": "VARCHAR(128)"
25
+ }
26
+ }],
27
+ "defaultLabel": "label.stage_history.currentstatus"
28
+ }
29
+ }],
30
+ "facts": [{
31
+ "fact": {
32
+ "identifier": "fact.stage_history.stage_velocity",
33
+ "title": "Stage Velocity",
34
+ "dataType": "DECIMAL(12,2)"
35
+ }
36
+ }, {
37
+ "fact": {
38
+ "identifier": "fact.stage_history.stage_duration",
39
+ "title": "Stage Duration",
40
+ "dataType": "DECIMAL(12,2)"
41
+ }
42
+ }, {
43
+ "fact": {
44
+ "identifier": "dt.stage_history.opp_created_date",
45
+ "title": "Opp. Created (Date) for Stage History",
46
+ "dataType": "INT"
47
+ }
48
+ }, {
49
+ "fact": {
50
+ "identifier": "dt.stage_history.opp_close_date",
51
+ "title": "Opp. Close (Date) for Stage History",
52
+ "dataType": "INT"
53
+ }
54
+ }],
55
+ "references": ["dataset.account", "dataset.product", "dataset.stage", "dataset.opp_owner", "dataset.opportunity", "dataset.bookingtype", "oppclose", "oppcreated"]
56
+ }
57
+ }, {
58
+ "dataset": {
59
+ "identifier": "dataset.opp_snapshot",
60
+ "title": "opp_snapshot",
61
+ "anchor": {
62
+ "attribute": {
63
+ "identifier": "attr.opp_snapshot.factsof",
64
+ "title": "Records of opp_snapshot"
65
+ }
66
+ },
67
+ "attributes": [{
68
+ "attribute": {
69
+ "identifier": "attr.opp_snapshot.accountstagesnapshot",
70
+ "title": "Account Stage (Snapshot)",
71
+ "labels": [{
72
+ "label": {
73
+ "identifier": "label.opp_snapshot.accountstagesnapshot",
74
+ "title": "Account Stage (Snapshot)",
75
+ "type": "GDC.text",
76
+ "dataType": "VARCHAR(128)"
77
+ }
78
+ }],
79
+ "defaultLabel": "label.opp_snapshot.accountstagesnapshot"
80
+ }
81
+ }],
82
+ "facts": [{
83
+ "fact": {
84
+ "identifier": "fact.opp_snapshot.amount",
85
+ "title": "Amount Snapshot",
86
+ "folder": "Opp. Snapshot",
87
+ "dataType": "DECIMAL(12,2)"
88
+ }
89
+ }, {
90
+ "fact": {
91
+ "identifier": "fact.opp_snapshot.probability",
92
+ "title": "Probability Snapshot",
93
+ "folder": "Opp. Snapshot",
94
+ "dataType": "DECIMAL(12,2)"
95
+ }
96
+ }, {
97
+ "fact": {
98
+ "identifier": "dt.opp_snapshot.created_date",
99
+ "title": "Opp. Created (Date) Snapshot",
100
+ "dataType": "INT"
101
+ }
102
+ }, {
103
+ "fact": {
104
+ "identifier": "dt.opp_snapshot.close_date",
105
+ "title": "Opp. Close (Date) Snapshot",
106
+ "dataType": "INT"
107
+ }
108
+ }, {
109
+ "fact": {
110
+ "identifier": "dt.opp_snapshot.snapshot_date",
111
+ "title": "Opp. Snapshot (Date)",
112
+ "dataType": "INT"
113
+ }
114
+ }, {
115
+ "fact": {
116
+ "identifier": "fact.opp_snapshot.mrr",
117
+ "title": "Straight Line MRR (Snapshot)",
118
+ "dataType": "DECIMAL(12,2)"
119
+ }
120
+ }, {
121
+ "fact": {
122
+ "identifier": "fact.opp_snapshot.distributedmrr",
123
+ "title": "Ending MRR (Snapshot)",
124
+ "dataType": "DECIMAL(12,2)"
125
+ }
126
+ }, {
127
+ "fact": {
128
+ "identifier": "dt.opp_snapshot.effectivecontractstart",
129
+ "title": "Opp. Contract Start (Date) Snapshot",
130
+ "dataType": "INT"
131
+ }
132
+ }, {
133
+ "fact": {
134
+ "identifier": "dt.opp_snapshot.effectivecontractend",
135
+ "title": "Opp. Contract End (Date) Snapshot",
136
+ "dataType": "INT"
137
+ }
138
+ }],
139
+ "references": ["dataset.sdrowner", "dataset.leadsourceoriginal", "dataset.account", "dataset.amounttype", "dataset.product", "dataset.sourcingorigin", "dataset.leadsource", "dataset.productline", "dataset.stage", "dataset.opp_owner", "dataset.opportunity", "dataset.bookingtype", "dataset.forecast", "leadcreate", "snapshot", "oppclose", "oppcreated", "stage1plus", "mqldate", "effectivecontractstart", "effectivecontractend"]
140
+ }
141
+ }, {
142
+ "dataset": {
143
+ "identifier": "dataset.opp_changes",
144
+ "title": "Opp_changes",
145
+ "anchor": {
146
+ "attribute": {
147
+ "identifier": "attr.opp_changes.factsof",
148
+ "title": "Records of Opp_changes"
149
+ }
150
+ },
151
+ "attributes": [{
152
+ "attribute": {
153
+ "identifier": "attr.opp_changes.interval_changes",
154
+ "title": "Interval_Changes",
155
+ "labels": [{
156
+ "label": {
157
+ "identifier": "label.opp_changes.interval_changes",
158
+ "title": "Interval_Changes",
159
+ "type": "GDC.text",
160
+ "dataType": "VARCHAR(128)"
161
+ }
162
+ }],
163
+ "defaultLabel": "label.opp_changes.interval_changes"
164
+ }
165
+ }, {
166
+ "attribute": {
167
+ "identifier": "attr.opp_changes.previous_stage",
168
+ "title": "Previous_Stage",
169
+ "labels": [{
170
+ "label": {
171
+ "identifier": "label.opp_changes.previous_stage",
172
+ "title": "Previous_Stage",
173
+ "type": "GDC.text",
174
+ "dataType": "VARCHAR(128)"
175
+ }
176
+ }],
177
+ "defaultLabel": "label.opp_changes.previous_stage"
178
+ }
179
+ }],
180
+ "facts": [{
181
+ "fact": {
182
+ "identifier": "fact.opp_changes.amount_changed",
183
+ "title": "amount_changed_expected",
184
+ "dataType": "DECIMAL(12,2)"
185
+ }
186
+ }, {
187
+ "fact": {
188
+ "identifier": "fact.opp_changes.amount_changed_current_q",
189
+ "title": "amount_changed_current_q_expected",
190
+ "dataType": "DECIMAL(12,2)"
191
+ }
192
+ }, {
193
+ "fact": {
194
+ "identifier": "fact.opp_changes.previous_amount",
195
+ "title": "previous_amount",
196
+ "dataType": "DECIMAL(12,2)"
197
+ }
198
+ }, {
199
+ "fact": {
200
+ "identifier": "fact.opp_changes.new_amount",
201
+ "title": "new_amount",
202
+ "dataType": "DECIMAL(12,2)"
203
+ }
204
+ }, {
205
+ "fact": {
206
+ "identifier": "fact.opp_changes.amount_changed_potential",
207
+ "title": "amount_changed_potential",
208
+ "dataType": "DECIMAL(12,2)"
209
+ }
210
+ }, {
211
+ "fact": {
212
+ "identifier": "fact.opp_changes.amount_changed_current_q_potential",
213
+ "title": "amount_changed_current_q_potential",
214
+ "dataType": "DECIMAL(12,2)"
215
+ }
216
+ }],
217
+ "references": ["dataset.account", "dataset.amounttype", "dataset.product", "dataset.productline", "dataset.stage", "dataset.opp_owner", "dataset.opportunity", "dataset.bookingtype", "oppclose", "previous_close_date"]
218
+ }
219
+ }, {
220
+ "dataset": {
221
+ "identifier": "dataset.opportunityanalysis",
222
+ "title": "Opportunity Benchmark",
223
+ "anchor": {
224
+ "attribute": {
225
+ "identifier": "attr.opportunityanalysis.techoppanalysis",
226
+ "title": "Tech Opp. Analysis",
227
+ "folder": "Opportunity Benchmark",
228
+ "labels": [{
229
+ "label": {
230
+ "identifier": "label.opportunityanalysis.techoppanalysis",
231
+ "title": "Tech Opp. Analysis",
232
+ "type": "GDC.text",
233
+ "dataType": "VARCHAR(128)"
234
+ }
235
+ }],
236
+ "defaultLabel": "label.opportunityanalysis.techoppanalysis"
237
+ }
238
+ },
239
+ "attributes": [{
240
+ "attribute": {
241
+ "identifier": "attr.opportunityanalysis.month",
242
+ "title": "Month",
243
+ "folder": "Opportunity Benchmark",
244
+ "labels": [{
245
+ "label": {
246
+ "identifier": "label.opportunityanalysis.month",
247
+ "title": "Month",
248
+ "type": "GDC.text",
249
+ "dataType": "VARCHAR(128)"
250
+ }
251
+ }, {
252
+ "label": {
253
+ "identifier": "label.opportunityanalysis.month.monthsortingnew",
254
+ "title": "MonthSortingNew",
255
+ "type": "GDC.text",
256
+ "dataType": "INT"
257
+ }
258
+ }],
259
+ "defaultLabel": "label.opportunityanalysis.month",
260
+ "sortOrder": {
261
+ "attributeSortOrder": {
262
+ "label": "label.opportunityanalysis.month.monthsortingnew",
263
+ "direction": "ASC"
264
+ }
265
+ }
266
+ }
267
+ }, {
268
+ "attribute": {
269
+ "identifier": "attr.opportunityanalysis.cohorttype",
270
+ "title": "Cohort Type",
271
+ "folder": "Opportunity Benchmark",
272
+ "labels": [{
273
+ "label": {
274
+ "identifier": "label.opportunityanalysis.cohorttype",
275
+ "title": "Cohort Type",
276
+ "type": "GDC.text",
277
+ "dataType": "VARCHAR(128)"
278
+ }
279
+ }],
280
+ "defaultLabel": "label.opportunityanalysis.cohorttype"
281
+ }
282
+ }],
283
+ "facts": [{
284
+ "fact": {
285
+ "identifier": "fact.opportunityanalysis.buckets_to_display",
286
+ "title": "buckets_to_display",
287
+ "folder": "Opportunity Benchmark",
288
+ "dataType": "DECIMAL(12,2)"
289
+ }
290
+ }, {
291
+ "fact": {
292
+ "identifier": "fact.opportunityanalysis.month_fact",
293
+ "title": "month_fact",
294
+ "folder": "Opportunity Benchmark",
295
+ "dataType": "DECIMAL(12,2)"
296
+ }
297
+ }],
298
+ "references": ["dataset.opp_records", "dataset.consolidatedmarketingstatus"]
299
+ }
300
+ }, {
301
+ "dataset": {
302
+ "identifier": "dataset.goals",
303
+ "title": "quota",
304
+ "anchor": {
305
+ "attribute": {
306
+ "identifier": "attr.goals.factsof",
307
+ "title": "Records of quota"
308
+ }
309
+ },
310
+ "attributes": [{
311
+ "attribute": {
312
+ "identifier": "attr.goals.quotatype",
313
+ "title": "Quota Type",
314
+ "labels": [{
315
+ "label": {
316
+ "identifier": "label.goals.quotatype",
317
+ "title": "Quota Type",
318
+ "type": "GDC.text",
319
+ "dataType": "VARCHAR(128)"
320
+ }
321
+ }],
322
+ "defaultLabel": "label.goals.quotatype"
323
+ }
324
+ }],
325
+ "facts": [{
326
+ "fact": {
327
+ "identifier": "fact.goals.amount",
328
+ "title": "quota amount",
329
+ "dataType": "DECIMAL(12,2)"
330
+ }
331
+ }, {
332
+ "fact": {
333
+ "identifier": "dt.goals.mqldate",
334
+ "title": "MQL Date (Quota)",
335
+ "dataType": "INT"
336
+ }
337
+ }, {
338
+ "fact": {
339
+ "identifier": "dt.goals.stage1plus",
340
+ "title": "SAO Date (Quota)",
341
+ "dataType": "INT"
342
+ }
343
+ }, {
344
+ "fact": {
345
+ "identifier": "dt.goals.oppcreated",
346
+ "title": "Opp. Create (Quota)",
347
+ "dataType": "INT"
348
+ }
349
+ }, {
350
+ "fact": {
351
+ "identifier": "dt.goals.oppclose",
352
+ "title": "Opp. Close (Quota)",
353
+ "dataType": "INT"
354
+ }
355
+ }],
356
+ "references": ["dataset.sdrowner", "dataset.amounttype", "dataset.product", "dataset.sourcingorigin", "dataset.activity_owner", "dataset.opp_owner", "dataset.bookingtype", "activity", "oppclose", "oppcreated", "stage1plus", "mqldate", "s2o"]
357
+ }
358
+ }, {
359
+ "dataset": {
360
+ "identifier": "dataset.timeline",
361
+ "title": "timeline",
362
+ "anchor": {
363
+ "attribute": {
364
+ "identifier": "attr.timeline.factsof",
365
+ "title": "Records of timeline"
366
+ }
367
+ },
368
+ "facts": [{
369
+ "fact": {
370
+ "identifier": "dt.timeline.timeline",
371
+ "title": "Timeline (Date)",
372
+ "dataType": "INT"
373
+ }
374
+ }],
375
+ "references": ["timeline"]
376
+ }
377
+ }, {
378
+ "dataset": {
379
+ "identifier": "dataset.activity_monitoring",
380
+ "title": "activity_monitoring",
381
+ "anchor": {
382
+ "attribute": {
383
+ "identifier": "attr.activity_monitoring.factsof",
384
+ "title": "Records of activity_monitoring"
385
+ }
386
+ },
387
+ "facts": [{
388
+ "fact": {
389
+ "identifier": "dt.activity_monitoring.opp_created_date",
390
+ "title": "Opp. Created (Date) for Activity",
391
+ "dataType": "INT"
392
+ }
393
+ }, {
394
+ "fact": {
395
+ "identifier": "dt.activity_monitoring.opp_close_date",
396
+ "title": "Opp. Close (Date) for Activity",
397
+ "dataType": "INT"
398
+ }
399
+ }, {
400
+ "fact": {
401
+ "identifier": "dt.activity_monitoring.activity_date",
402
+ "title": "Activity (Date)",
403
+ "dataType": "INT"
404
+ }
405
+ }],
406
+ "references": ["dataset.account", "dataset.product", "dataset.activity_owner", "dataset.stage", "dataset.opp_owner", "dataset.activity", "dataset.opportunity", "dataset.bookingtype", "activity", "oppclose", "oppcreated"]
407
+ }
408
+ }, {
409
+ "dataset": {
410
+ "identifier": "dataset.opp_records",
411
+ "title": "opp_records",
412
+ "anchor": {
413
+ "attribute": {
414
+ "identifier": "attr.opp_records.factsof",
415
+ "title": "Records of opp_records",
416
+ "labels": [{
417
+ "label": {
418
+ "identifier": "label.opp_records.opp_records_conctn_point",
419
+ "title": "opp_records_conctn_point",
420
+ "type": "GDC.text",
421
+ "dataType": "VARCHAR(128)"
422
+ }
423
+ }, {
424
+ "label": {
425
+ "identifier": "label.opp_records.factsof",
426
+ "title": "Records of opp_records",
427
+ "type": "GDC.text",
428
+ "dataType": "VARCHAR(128)"
429
+ }
430
+ }],
431
+ "defaultLabel": "label.opp_records.opp_records_conctn_point"
432
+ }
433
+ },
434
+ "facts": [{
435
+ "fact": {
436
+ "identifier": "fact.opp_records.amount",
437
+ "title": "Amount",
438
+ "folder": "Opp. Records",
439
+ "dataType": "DECIMAL(12,2)"
440
+ }
441
+ }, {
442
+ "fact": {
443
+ "identifier": "fact.opp_records.probability",
444
+ "title": "Probability",
445
+ "folder": "Opp. Records",
446
+ "dataType": "DECIMAL(12,2)"
447
+ }
448
+ }, {
449
+ "fact": {
450
+ "identifier": "dt.opp_records.created_date",
451
+ "title": "Opp. Created (Date)",
452
+ "dataType": "INT"
453
+ }
454
+ }, {
455
+ "fact": {
456
+ "identifier": "dt.opp_records.close_date",
457
+ "title": "Opp. Close (Date)",
458
+ "dataType": "INT"
459
+ }
460
+ }, {
461
+ "fact": {
462
+ "identifier": "dt.opp_records.stage1plus",
463
+ "title": "SAO (date)",
464
+ "dataType": "INT"
465
+ }
466
+ }, {
467
+ "fact": {
468
+ "identifier": "dt.opp_records.leadcreate",
469
+ "title": "Lead Created (Date)",
470
+ "dataType": "INT"
471
+ }
472
+ }, {
473
+ "fact": {
474
+ "identifier": "dt.opp_records.mqldate",
475
+ "title": "MQL (Date)",
476
+ "dataType": "INT"
477
+ }
478
+ }, {
479
+ "fact": {
480
+ "identifier": "dt.opp_records.firstcontactdate",
481
+ "title": "Contact (Date)",
482
+ "dataType": "INT"
483
+ }
484
+ }, {
485
+ "fact": {
486
+ "identifier": "dt.opp_records.laststage0plus",
487
+ "title": "Last Stage 0 Plus",
488
+ "dataType": "INT"
489
+ }
490
+ }, {
491
+ "fact": {
492
+ "identifier": "fact.opp_records.mrr",
493
+ "title": "Straight Line MRR",
494
+ "dataType": "DECIMAL(12,2)"
495
+ }
496
+ }, {
497
+ "fact": {
498
+ "identifier": "fact.opp_records.distributed_mrr",
499
+ "title": "Ending MRR",
500
+ "dataType": "DECIMAL(12,2)"
501
+ }
502
+ }, {
503
+ "fact": {
504
+ "identifier": "fact.opp_records.freemonths",
505
+ "title": "Free Months",
506
+ "dataType": "DECIMAL(12,2)"
507
+ }
508
+ }, {
509
+ "fact": {
510
+ "identifier": "dt.opp_records.effectivecontractstart",
511
+ "title": "Contract Start (Date)",
512
+ "dataType": "INT"
513
+ }
514
+ }, {
515
+ "fact": {
516
+ "identifier": "dt.opp_records.effectivecontractend",
517
+ "title": "Contract End (Date)",
518
+ "dataType": "INT"
519
+ }
520
+ }, {
521
+ "fact": {
522
+ "identifier": "fact.opp_records.upsellcmrr",
523
+ "title": "Upsell CMRR",
524
+ "dataType": "DECIMAL(12,2)"
525
+ }
526
+ }, {
527
+ "fact": {
528
+ "identifier": "fact.opp_records.downsellcmrr",
529
+ "title": "Downsell CMRR",
530
+ "dataType": "DECIMAL(12,2)"
531
+ }
532
+ }, {
533
+ "fact": {
534
+ "identifier": "fact.opp_records.upliftcmrr",
535
+ "title": "Uplift CMRR",
536
+ "dataType": "DECIMAL(12,2)"
537
+ }
538
+ }, {
539
+ "fact": {
540
+ "identifier": "fact.opp_records.churncmrr",
541
+ "title": "Churn CMRR",
542
+ "dataType": "DECIMAL(12,2)"
543
+ }
544
+ }, {
545
+ "fact": {
546
+ "identifier": "dt.opp_records.firstmeeting",
547
+ "title": "First Meeting (Date)",
548
+ "dataType": "INT"
549
+ }
550
+ }, {
551
+ "fact": {
552
+ "identifier": "dt.opp_records.s2o",
553
+ "title": "S2O (Date)",
554
+ "dataType": "INT"
555
+ }
556
+ }],
557
+ "references": ["dataset.sdrowner", "dataset.leadsourceoriginal", "dataset.account", "dataset.amounttype", "dataset.product", "dataset.renewalstatus", "dataset.sourcingorigin", "dataset.sdrperformancestatus", "dataset.leadsource", "dataset.winlossreason", "dataset.productline", "dataset.leadchannel", "dataset.stage", "dataset.opp_owner", "dataset.opportunity", "dataset.bookingtype", "dataset.forecast", "leadcreate", "oppclose", "oppcreated", "stage1plus", "firstcontactdate", "mqldate", "s2o", "firstmeeting", "effectivecontractstart", "laststage0plus", "effectivecontractend"]
558
+ }
559
+ }, {
560
+ "dataset": {
561
+ "identifier": "dataset.sdrowner",
562
+ "title": "SDR Owner",
563
+ "anchor": {
564
+ "attribute": {
565
+ "identifier": "attr.sdrowner.sdrowner",
566
+ "title": "SDR Owner",
567
+ "folder": "SDR",
568
+ "labels": [{
569
+ "label": {
570
+ "identifier": "label.sdrowner.sdrowner",
571
+ "title": "SDR Owner",
572
+ "type": "GDC.text",
573
+ "dataType": "VARCHAR(128)"
574
+ }
575
+ }, {
576
+ "label": {
577
+ "identifier": "label.sdrowner.sdrowner.sdrownername",
578
+ "title": "SDR Owner Name",
579
+ "type": "GDC.text",
580
+ "dataType": "VARCHAR(128)"
581
+ }
582
+ }],
583
+ "defaultLabel": "label.sdrowner.sdrowner"
584
+ }
585
+ },
586
+ "attributes": [{
587
+ "attribute": {
588
+ "identifier": "attr.sdrowner.sdrteam",
589
+ "title": "SDR Team",
590
+ "folder": "SDR",
591
+ "labels": [{
592
+ "label": {
593
+ "identifier": "label.sdrowner.sdrteam",
594
+ "title": "SDR Team",
595
+ "type": "GDC.text",
596
+ "dataType": "VARCHAR(128)"
597
+ }
598
+ }],
599
+ "defaultLabel": "label.sdrowner.sdrteam"
600
+ }
601
+ }]
602
+ }
603
+ }, {
604
+ "dataset": {
605
+ "identifier": "dataset.leadsourceoriginal",
606
+ "title": "Lead Source Original",
607
+ "anchor": {
608
+ "attribute": {
609
+ "identifier": "attr.leadsourceoriginal.leadsourceoriginal",
610
+ "title": "Lead Source Original",
611
+ "folder": "Lead Sources",
612
+ "labels": [{
613
+ "label": {
614
+ "identifier": "label.leadsourceoriginal.leadsourceoriginal",
615
+ "title": "Lead Source Original",
616
+ "type": "GDC.text",
617
+ "dataType": "VARCHAR(128)"
618
+ }
619
+ }],
620
+ "defaultLabel": "label.leadsourceoriginal.leadsourceoriginal"
621
+ }
622
+ },
623
+ "attributes": [{
624
+ "attribute": {
625
+ "identifier": "attr.leadsourceoriginal.leadcategory",
626
+ "title": "Lead Source Original Category",
627
+ "folder": "Lead Sources",
628
+ "labels": [{
629
+ "label": {
630
+ "identifier": "label.leadsourceoriginal.leadcategory",
631
+ "title": "Lead Source Original Category",
632
+ "type": "GDC.text",
633
+ "dataType": "VARCHAR(128)"
634
+ }
635
+ }],
636
+ "defaultLabel": "label.leadsourceoriginal.leadcategory"
637
+ }
638
+ }]
639
+ }
640
+ }, {
641
+ "dataset": {
642
+ "identifier": "dataset.account",
643
+ "title": "account",
644
+ "anchor": {
645
+ "attribute": {
646
+ "identifier": "attr.account.id",
647
+ "title": "Account",
648
+ "folder": "Account",
649
+ "labels": [{
650
+ "label": {
651
+ "identifier": "label.account.id.name",
652
+ "title": "Account Name",
653
+ "type": "GDC.text",
654
+ "dataType": "VARCHAR(128)"
655
+ }
656
+ }, {
657
+ "label": {
658
+ "identifier": "label.account.id",
659
+ "title": "Account",
660
+ "type": "GDC.text",
661
+ "dataType": "VARCHAR(128)"
662
+ }
663
+ }, {
664
+ "label": {
665
+ "identifier": "label.account.id.url",
666
+ "title": "Account Url",
667
+ "type": "GDC.link",
668
+ "dataType": "VARCHAR(128)"
669
+ }
670
+ }],
671
+ "defaultLabel": "label.account.id.name"
672
+ }
673
+ },
674
+ "attributes": [{
675
+ "attribute": {
676
+ "identifier": "attr.account.region",
677
+ "title": "Account Region",
678
+ "folder": "Account",
679
+ "labels": [{
680
+ "label": {
681
+ "identifier": "label.account.region",
682
+ "title": "Account Region",
683
+ "type": "GDC.text",
684
+ "dataType": "VARCHAR(128)"
685
+ }
686
+ }],
687
+ "defaultLabel": "label.account.region"
688
+ }
689
+ }, {
690
+ "attribute": {
691
+ "identifier": "attr.account.accountstage",
692
+ "title": "Account Stage",
693
+ "folder": "Account",
694
+ "labels": [{
695
+ "label": {
696
+ "identifier": "label.account.accountstage",
697
+ "title": "Account Stage",
698
+ "type": "GDC.text",
699
+ "dataType": "VARCHAR(128)"
700
+ }
701
+ }],
702
+ "defaultLabel": "label.account.accountstage"
703
+ }
704
+ }, {
705
+ "attribute": {
706
+ "identifier": "attr.account.accountownername",
707
+ "title": "Account Owner Name",
708
+ "folder": "Account",
709
+ "labels": [{
710
+ "label": {
711
+ "identifier": "label.account.accountownername",
712
+ "title": "Account Owner Name",
713
+ "type": "GDC.text",
714
+ "dataType": "VARCHAR(128)"
715
+ }
716
+ }],
717
+ "defaultLabel": "label.account.accountownername"
718
+ }
719
+ }, {
720
+ "attribute": {
721
+ "identifier": "attr.account.accountindustry",
722
+ "title": "Account Industry",
723
+ "folder": "Account",
724
+ "labels": [{
725
+ "label": {
726
+ "identifier": "label.account.accountindustry",
727
+ "title": "Account Industry",
728
+ "type": "GDC.text",
729
+ "dataType": "VARCHAR(128)"
730
+ }
731
+ }],
732
+ "defaultLabel": "label.account.accountindustry"
733
+ }
734
+ }, {
735
+ "attribute": {
736
+ "identifier": "attr.account.accountemployeecount",
737
+ "title": "Account Employee Count",
738
+ "folder": "Account",
739
+ "labels": [{
740
+ "label": {
741
+ "identifier": "label.account.accountemployeecount.employeecountsort",
742
+ "title": "Employee Count Sort",
743
+ "type": "GDC.text",
744
+ "dataType": "INT"
745
+ }
746
+ }, {
747
+ "label": {
748
+ "identifier": "label.account.accountemployeecount",
749
+ "title": "Account Employee Count",
750
+ "type": "GDC.text",
751
+ "dataType": "VARCHAR(128)"
752
+ }
753
+ }],
754
+ "defaultLabel": "label.account.accountemployeecount.employeecountsort",
755
+ "sortOrder": {
756
+ "attributeSortOrder": {
757
+ "label": "label.account.accountemployeecount.employeecountsort",
758
+ "direction": "ASC"
759
+ }
760
+ }
761
+ }
762
+ }, {
763
+ "attribute": {
764
+ "identifier": "attr.account.accountannualrevenue",
765
+ "title": "Account Annual Revenue",
766
+ "folder": "Account",
767
+ "labels": [{
768
+ "label": {
769
+ "identifier": "label.account.accountannualrevenue",
770
+ "title": "Account Annual Revenue",
771
+ "type": "GDC.text",
772
+ "dataType": "VARCHAR(128)"
773
+ }
774
+ }],
775
+ "defaultLabel": "label.account.accountannualrevenue"
776
+ }
777
+ }]
778
+ }
779
+ }, {
780
+ "dataset": {
781
+ "identifier": "dataset.amounttype",
782
+ "title": "Revenue Type",
783
+ "anchor": {
784
+ "attribute": {
785
+ "identifier": "attr.amounttype.amounttype",
786
+ "title": "Revenue Type",
787
+ "folder": "Revenue Type",
788
+ "labels": [{
789
+ "label": {
790
+ "identifier": "label.amounttype.amounttype",
791
+ "title": "Revenue Type",
792
+ "type": "GDC.text",
793
+ "dataType": "VARCHAR(128)"
794
+ }
795
+ }],
796
+ "defaultLabel": "label.amounttype.amounttype"
797
+ }
798
+ }
799
+ }
800
+ }, {
801
+ "dataset": {
802
+ "identifier": "dataset.product",
803
+ "title": "product",
804
+ "anchor": {
805
+ "attribute": {
806
+ "identifier": "attr.product.id",
807
+ "title": "Product",
808
+ "folder": "Product",
809
+ "labels": [{
810
+ "label": {
811
+ "identifier": "label.product.id.name",
812
+ "title": "Product Name",
813
+ "type": "GDC.text",
814
+ "dataType": "VARCHAR(128)"
815
+ }
816
+ }, {
817
+ "label": {
818
+ "identifier": "label.product.id",
819
+ "title": "Product",
820
+ "type": "GDC.text",
821
+ "dataType": "VARCHAR(128)"
822
+ }
823
+ }],
824
+ "defaultLabel": "label.product.id.name"
825
+ }
826
+ },
827
+ "attributes": [{
828
+ "attribute": {
829
+ "identifier": "attr.product.product_type",
830
+ "title": "Product Type",
831
+ "folder": "Product",
832
+ "labels": [{
833
+ "label": {
834
+ "identifier": "label.product.product_type",
835
+ "title": "Product Type",
836
+ "type": "GDC.text",
837
+ "dataType": "VARCHAR(128)"
838
+ }
839
+ }],
840
+ "defaultLabel": "label.product.product_type"
841
+ }
842
+ }]
843
+ }
844
+ }, {
845
+ "dataset": {
846
+ "identifier": "dataset.renewalstatus",
847
+ "title": "Renewal Status",
848
+ "anchor": {
849
+ "attribute": {
850
+ "identifier": "attr.renewalstatus.renewalstatus",
851
+ "title": "Renewal Status",
852
+ "labels": [{
853
+ "label": {
854
+ "identifier": "label.renewalstatus.renewalstatus",
855
+ "title": "Renewal Status",
856
+ "type": "GDC.text",
857
+ "dataType": "VARCHAR(128)"
858
+ }
859
+ }],
860
+ "defaultLabel": "label.renewalstatus.renewalstatus"
861
+ }
862
+ }
863
+ }
864
+ }, {
865
+ "dataset": {
866
+ "identifier": "dataset.sourcingorigin",
867
+ "title": "Sourcing Type",
868
+ "anchor": {
869
+ "attribute": {
870
+ "identifier": "attr.sourcingorigin.techsourcingtype",
871
+ "title": "_Tech Sourcing Type",
872
+ "folder": "Lead Sources",
873
+ "labels": [{
874
+ "label": {
875
+ "identifier": "label.sourcingorigin.techsourcingtype",
876
+ "title": "_Tech Sourcing Type",
877
+ "type": "GDC.text",
878
+ "dataType": "VARCHAR(128)"
879
+ }
880
+ }],
881
+ "defaultLabel": "label.sourcingorigin.techsourcingtype"
882
+ }
883
+ },
884
+ "attributes": [{
885
+ "attribute": {
886
+ "identifier": "attr.sourcingorigin.sourcingtype",
887
+ "title": "Sourcing Type",
888
+ "folder": "Lead Sources",
889
+ "labels": [{
890
+ "label": {
891
+ "identifier": "label.sourcingorigin.sourcingtype",
892
+ "title": "Sourcing Type",
893
+ "type": "GDC.text",
894
+ "dataType": "VARCHAR(128)"
895
+ }
896
+ }],
897
+ "defaultLabel": "label.sourcingorigin.sourcingtype"
898
+ }
899
+ }, {
900
+ "attribute": {
901
+ "identifier": "attr.sourcingorigin.sourcingtypechannel",
902
+ "title": "Sourcing Type Channel",
903
+ "folder": "Lead Sources",
904
+ "labels": [{
905
+ "label": {
906
+ "identifier": "label.sourcingorigin.sourcingtypechannel",
907
+ "title": "Sourcing Type Channel",
908
+ "type": "GDC.text",
909
+ "dataType": "VARCHAR(128)"
910
+ }
911
+ }],
912
+ "defaultLabel": "label.sourcingorigin.sourcingtypechannel"
913
+ }
914
+ }, {
915
+ "attribute": {
916
+ "identifier": "attr.sourcingorigin.sourcingtypeteam",
917
+ "title": "Sourcing Type Team",
918
+ "folder": "Lead Sources",
919
+ "labels": [{
920
+ "label": {
921
+ "identifier": "label.sourcingorigin.sourcingtypeteam.sourcingtypeteamname",
922
+ "title": "Sourcing Type Team Name",
923
+ "type": "GDC.text",
924
+ "dataType": "VARCHAR(128)"
925
+ }
926
+ }, {
927
+ "label": {
928
+ "identifier": "label.sourcingorigin.sourcingtypeteam",
929
+ "title": "Sourcing Type Team",
930
+ "type": "GDC.text",
931
+ "dataType": "VARCHAR(128)"
932
+ }
933
+ }],
934
+ "defaultLabel": "label.sourcingorigin.sourcingtypeteam.sourcingtypeteamname"
935
+ }
936
+ }]
937
+ }
938
+ }, {
939
+ "dataset": {
940
+ "identifier": "dataset.sdrperformancestatus",
941
+ "title": "SDR Performance Status",
942
+ "anchor": {
943
+ "attribute": {
944
+ "identifier": "attr.sdrperformancestatus.sdrperformancestatus",
945
+ "title": "SDR Performance Status",
946
+ "labels": [{
947
+ "label": {
948
+ "identifier": "label.sdrperformancestatus.sdrperformancestatus",
949
+ "title": "SDR Performance Status",
950
+ "type": "GDC.text",
951
+ "dataType": "VARCHAR(128)"
952
+ }
953
+ }],
954
+ "defaultLabel": "label.sdrperformancestatus.sdrperformancestatus"
955
+ }
956
+ }
957
+ }
958
+ }, {
959
+ "dataset": {
960
+ "identifier": "dataset.consolidatedmarketingstatus",
961
+ "title": "Consolidated Marketing Status",
962
+ "anchor": {
963
+ "attribute": {
964
+ "identifier": "attr.consolidatedmarketingstatus.consolidatedmarketingstatus",
965
+ "title": "_TECH Consolidated Marketing Status (Conctn_Point)",
966
+ "folder": "Consolidated Marketing Status",
967
+ "labels": [{
968
+ "label": {
969
+ "identifier": "label.consolidatedmarketingstatus.consolidatedmarketingstatus",
970
+ "title": "_TECH Consolidated Marketing Status (Conctn_Point)",
971
+ "type": "GDC.text",
972
+ "dataType": "VARCHAR(128)"
973
+ }
974
+ }, {
975
+ "label": {
976
+ "identifier": "label.consolidatedmarketingstatus.consolidatedmarketingstatus.mktgstatussorting",
977
+ "title": "_Mktg Status Sorting",
978
+ "type": "GDC.text",
979
+ "dataType": "INT"
980
+ }
981
+ }],
982
+ "defaultLabel": "label.consolidatedmarketingstatus.consolidatedmarketingstatus",
983
+ "sortOrder": {
984
+ "attributeSortOrder": {
985
+ "label": "label.consolidatedmarketingstatus.consolidatedmarketingstatus.mktgstatussorting",
986
+ "direction": "ASC"
987
+ }
988
+ }
989
+ }
990
+ },
991
+ "attributes": [{
992
+ "attribute": {
993
+ "identifier": "attr.consolidatedmarketingstatus.detailedmarketingstatuslvl1",
994
+ "title": "Detailed Marketing Status (Lvl1)",
995
+ "folder": "Consolidated Marketing Status",
996
+ "labels": [{
997
+ "label": {
998
+ "identifier": "label.consolidatedmarketingstatus.detailedmarketingstatuslvl1",
999
+ "title": "Detailed Marketing Status (Lvl1)",
1000
+ "type": "GDC.text",
1001
+ "dataType": "VARCHAR(128)"
1002
+ }
1003
+ }, {
1004
+ "label": {
1005
+ "identifier": "label.consolidatedmarketingstatus.consolidatedmarketingstatus1.ordersort1",
1006
+ "title": "_Order Sort",
1007
+ "type": "GDC.text",
1008
+ "dataType": "INT"
1009
+ }
1010
+ }],
1011
+ "defaultLabel": "label.consolidatedmarketingstatus.detailedmarketingstatuslvl1",
1012
+ "sortOrder": {
1013
+ "attributeSortOrder": {
1014
+ "label": "label.consolidatedmarketingstatus.consolidatedmarketingstatus1.ordersort1",
1015
+ "direction": "ASC"
1016
+ }
1017
+ }
1018
+ }
1019
+ }, {
1020
+ "attribute": {
1021
+ "identifier": "attr.consolidatedmarketingstatus.consolidatedmarketingstatus1",
1022
+ "title": "Consolidated Marketing Status",
1023
+ "folder": "Consolidated Marketing Status",
1024
+ "labels": [{
1025
+ "label": {
1026
+ "identifier": "label.consolidatedmarketingstatus.consolidatedmarketingstatus1",
1027
+ "title": "Consolidated Marketing Status",
1028
+ "type": "GDC.text",
1029
+ "dataType": "VARCHAR(128)"
1030
+ }
1031
+ }, {
1032
+ "label": {
1033
+ "identifier": "label.consolidatedmarketingstatus.consolidatedmarketingstatus1.ordersort2",
1034
+ "title": "Order Sort 2",
1035
+ "type": "GDC.text",
1036
+ "dataType": "INT"
1037
+ }
1038
+ }],
1039
+ "defaultLabel": "label.consolidatedmarketingstatus.consolidatedmarketingstatus1",
1040
+ "sortOrder": {
1041
+ "attributeSortOrder": {
1042
+ "label": "label.consolidatedmarketingstatus.consolidatedmarketingstatus1.ordersort2",
1043
+ "direction": "ASC"
1044
+ }
1045
+ }
1046
+ }
1047
+ }, {
1048
+ "attribute": {
1049
+ "identifier": "attr.consolidatedmarketingstatus.consolidatedsqltos2o",
1050
+ "title": "Consolidated Status SQL to S2O",
1051
+ "folder": "Consolidated Marketing Status",
1052
+ "labels": [{
1053
+ "label": {
1054
+ "identifier": "label.consolidatedmarketingstatus.consolidatedsqltos2o",
1055
+ "title": "Consolidated Status SQL to S2O",
1056
+ "type": "GDC.text",
1057
+ "dataType": "VARCHAR(128)"
1058
+ }
1059
+ }, {
1060
+ "label": {
1061
+ "identifier": "label.consolidatedmarketingstatus.consolidatedsqltos2o.ordersortsqltos2o",
1062
+ "title": "Order Sort SQL to S2O",
1063
+ "type": "GDC.text",
1064
+ "dataType": "VARCHAR(128)"
1065
+ }
1066
+ }],
1067
+ "defaultLabel": "label.consolidatedmarketingstatus.consolidatedsqltos2o"
1068
+ }
1069
+ }]
1070
+ }
1071
+ }, {
1072
+ "dataset": {
1073
+ "identifier": "dataset.activity_owner",
1074
+ "title": "activity_owner",
1075
+ "anchor": {
1076
+ "attribute": {
1077
+ "identifier": "attr.activity_owner.id",
1078
+ "title": "Act. Owner",
1079
+ "folder": "Act. Owner",
1080
+ "labels": [{
1081
+ "label": {
1082
+ "identifier": "label.activity_owner.id.name",
1083
+ "title": "Act. Owner Name",
1084
+ "type": "GDC.text",
1085
+ "dataType": "VARCHAR(128)"
1086
+ }
1087
+ }, {
1088
+ "label": {
1089
+ "identifier": "label.activity_owner.id",
1090
+ "title": "Act. Owner",
1091
+ "type": "GDC.text",
1092
+ "dataType": "VARCHAR(128)"
1093
+ }
1094
+ }, {
1095
+ "label": {
1096
+ "identifier": "label.activity_owner.id.url",
1097
+ "title": "Act. Owner Url",
1098
+ "type": "GDC.link",
1099
+ "dataType": "VARCHAR(128)"
1100
+ }
1101
+ }],
1102
+ "defaultLabel": "label.activity_owner.id.name"
1103
+ }
1104
+ },
1105
+ "attributes": [{
1106
+ "attribute": {
1107
+ "identifier": "attr.activity_owner.region",
1108
+ "title": "Act. Owner Region",
1109
+ "folder": "Act. Owner",
1110
+ "labels": [{
1111
+ "label": {
1112
+ "identifier": "label.activity_owner.region",
1113
+ "title": "Act. Owner Region",
1114
+ "type": "GDC.text",
1115
+ "dataType": "VARCHAR(128)"
1116
+ }
1117
+ }],
1118
+ "defaultLabel": "label.activity_owner.region"
1119
+ }
1120
+ }, {
1121
+ "attribute": {
1122
+ "identifier": "attr.activity_owner.department",
1123
+ "title": "Act. Owner Department",
1124
+ "folder": "Act. Owner",
1125
+ "labels": [{
1126
+ "label": {
1127
+ "identifier": "label.activity_owner.department",
1128
+ "title": "Act. Owner Department",
1129
+ "type": "GDC.text",
1130
+ "dataType": "VARCHAR(128)"
1131
+ }
1132
+ }],
1133
+ "defaultLabel": "label.activity_owner.department"
1134
+ }
1135
+ }, {
1136
+ "attribute": {
1137
+ "identifier": "attr.activity_owner.is_sdr",
1138
+ "title": "is_sdr",
1139
+ "folder": "Act. Owner",
1140
+ "labels": [{
1141
+ "label": {
1142
+ "identifier": "label.activity_owner.is_sdr",
1143
+ "title": "is_sdr",
1144
+ "type": "GDC.text",
1145
+ "dataType": "VARCHAR(128)"
1146
+ }
1147
+ }],
1148
+ "defaultLabel": "label.activity_owner.is_sdr"
1149
+ }
1150
+ }]
1151
+ }
1152
+ }, {
1153
+ "dataset": {
1154
+ "identifier": "dataset.leadsource",
1155
+ "title": "Lead Source",
1156
+ "anchor": {
1157
+ "attribute": {
1158
+ "identifier": "attr.leadsource.leadsource",
1159
+ "title": "Lead Source",
1160
+ "folder": "Lead Sources",
1161
+ "labels": [{
1162
+ "label": {
1163
+ "identifier": "label.leadsource.leadsource",
1164
+ "title": "Lead Source",
1165
+ "type": "GDC.text",
1166
+ "dataType": "VARCHAR(128)"
1167
+ }
1168
+ }],
1169
+ "defaultLabel": "label.leadsource.leadsource"
1170
+ }
1171
+ }
1172
+ }
1173
+ }, {
1174
+ "dataset": {
1175
+ "identifier": "dataset.winlossreason",
1176
+ "title": "Win/Loss Reason",
1177
+ "anchor": {
1178
+ "attribute": {
1179
+ "identifier": "attr.winlossreason.winlossreason",
1180
+ "title": "_Tech Win/Loss Reason",
1181
+ "folder": "Win/Loss Reason",
1182
+ "labels": [{
1183
+ "label": {
1184
+ "identifier": "label.winlossreason.winlossreason",
1185
+ "title": "_Tech Win/Loss Reason",
1186
+ "type": "GDC.text",
1187
+ "dataType": "VARCHAR(128)"
1188
+ }
1189
+ }],
1190
+ "defaultLabel": "label.winlossreason.winlossreason"
1191
+ }
1192
+ },
1193
+ "attributes": [{
1194
+ "attribute": {
1195
+ "identifier": "attr.winlossreason.winlossreason1",
1196
+ "title": "Win/Loss Reason",
1197
+ "folder": "Win/Loss Reason",
1198
+ "labels": [{
1199
+ "label": {
1200
+ "identifier": "label.winlossreason.winlossreason1",
1201
+ "title": "Win/Loss Reason",
1202
+ "type": "GDC.text",
1203
+ "dataType": "VARCHAR(128)"
1204
+ }
1205
+ }],
1206
+ "defaultLabel": "label.winlossreason.winlossreason1"
1207
+ }
1208
+ }, {
1209
+ "attribute": {
1210
+ "identifier": "attr.winlossreason.secondarywinlossreason",
1211
+ "title": "Secondary Win/Loss Reason",
1212
+ "folder": "Win/Loss Reason",
1213
+ "labels": [{
1214
+ "label": {
1215
+ "identifier": "label.winlossreason.secondarywinlossreason",
1216
+ "title": "Secondary Win/Loss Reason",
1217
+ "type": "GDC.text",
1218
+ "dataType": "VARCHAR(128)"
1219
+ }
1220
+ }],
1221
+ "defaultLabel": "label.winlossreason.secondarywinlossreason"
1222
+ }
1223
+ }]
1224
+ }
1225
+ }, {
1226
+ "dataset": {
1227
+ "identifier": "dataset.productline",
1228
+ "title": "Product Line",
1229
+ "anchor": {
1230
+ "attribute": {
1231
+ "identifier": "attr.productline.productline",
1232
+ "title": "_Product Line (ID)",
1233
+ "labels": [{
1234
+ "label": {
1235
+ "identifier": "label.productline.productline",
1236
+ "title": "_Product Line (ID)",
1237
+ "type": "GDC.text",
1238
+ "dataType": "VARCHAR(128)"
1239
+ }
1240
+ }],
1241
+ "defaultLabel": "label.productline.productline"
1242
+ }
1243
+ },
1244
+ "attributes": [{
1245
+ "attribute": {
1246
+ "identifier": "attr.productline.productline1",
1247
+ "title": "Product Line",
1248
+ "folder": "Product",
1249
+ "labels": [{
1250
+ "label": {
1251
+ "identifier": "label.productline.productline1",
1252
+ "title": "Product Line",
1253
+ "type": "GDC.text",
1254
+ "dataType": "VARCHAR(128)"
1255
+ }
1256
+ }],
1257
+ "defaultLabel": "label.productline.productline1"
1258
+ }
1259
+ }, {
1260
+ "attribute": {
1261
+ "identifier": "attr.productline.prod",
1262
+ "title": "Primary PL Solution",
1263
+ "folder": "Product",
1264
+ "labels": [{
1265
+ "label": {
1266
+ "identifier": "label.productline.prod",
1267
+ "title": "Primary PL Solution",
1268
+ "type": "GDC.text",
1269
+ "dataType": "VARCHAR(128)"
1270
+ }
1271
+ }],
1272
+ "defaultLabel": "label.productline.prod"
1273
+ }
1274
+ }, {
1275
+ "attribute": {
1276
+ "identifier": "attr.productline.productorspecificsolution",
1277
+ "title": "Product or Specific Solution",
1278
+ "folder": "Product",
1279
+ "labels": [{
1280
+ "label": {
1281
+ "identifier": "label.productline.productorspecificsolution",
1282
+ "title": "Product or Specific Solution",
1283
+ "type": "GDC.text",
1284
+ "dataType": "VARCHAR(128)"
1285
+ }
1286
+ }],
1287
+ "defaultLabel": "label.productline.productorspecificsolution"
1288
+ }
1289
+ }]
1290
+ }
1291
+ }, {
1292
+ "dataset": {
1293
+ "identifier": "dataset.leadchannel",
1294
+ "title": "Lead Channel",
1295
+ "anchor": {
1296
+ "attribute": {
1297
+ "identifier": "attr.leadchannel.leadchannel",
1298
+ "title": "Lead Channel",
1299
+ "labels": [{
1300
+ "label": {
1301
+ "identifier": "label.leadchannel.leadchannel",
1302
+ "title": "Lead Channel",
1303
+ "type": "GDC.text",
1304
+ "dataType": "VARCHAR(128)"
1305
+ }
1306
+ }],
1307
+ "defaultLabel": "label.leadchannel.leadchannel"
1308
+ }
1309
+ }
1310
+ }
1311
+ }, {
1312
+ "dataset": {
1313
+ "identifier": "dataset.stage",
1314
+ "title": "stage",
1315
+ "anchor": {
1316
+ "attribute": {
1317
+ "identifier": "attr.stage.id",
1318
+ "title": "Stage",
1319
+ "folder": "Stage",
1320
+ "labels": [{
1321
+ "label": {
1322
+ "identifier": "label.stage.id.name",
1323
+ "title": "Stage Name",
1324
+ "type": "GDC.text",
1325
+ "dataType": "VARCHAR(128)"
1326
+ }
1327
+ }, {
1328
+ "label": {
1329
+ "identifier": "label.stage.id.order",
1330
+ "title": "Order",
1331
+ "type": "GDC.text",
1332
+ "dataType": "INT"
1333
+ }
1334
+ }, {
1335
+ "label": {
1336
+ "identifier": "label.stage.id",
1337
+ "title": "Stage",
1338
+ "type": "GDC.text",
1339
+ "dataType": "VARCHAR(128)"
1340
+ }
1341
+ }],
1342
+ "defaultLabel": "label.stage.id.name",
1343
+ "sortOrder": {
1344
+ "attributeSortOrder": {
1345
+ "label": "label.stage.id.order",
1346
+ "direction": "ASC"
1347
+ }
1348
+ }
1349
+ }
1350
+ },
1351
+ "attributes": [{
1352
+ "attribute": {
1353
+ "identifier": "attr.stage.is_won",
1354
+ "title": "Is Won?",
1355
+ "folder": "Stage",
1356
+ "labels": [{
1357
+ "label": {
1358
+ "identifier": "label.stage.is_won",
1359
+ "title": "Is Won?",
1360
+ "type": "GDC.text",
1361
+ "dataType": "VARCHAR(128)"
1362
+ }
1363
+ }],
1364
+ "defaultLabel": "label.stage.is_won"
1365
+ }
1366
+ }, {
1367
+ "attribute": {
1368
+ "identifier": "attr.stage.status",
1369
+ "title": "Status",
1370
+ "folder": "Stage",
1371
+ "labels": [{
1372
+ "label": {
1373
+ "identifier": "label.stage.status",
1374
+ "title": "Status",
1375
+ "type": "GDC.text",
1376
+ "dataType": "VARCHAR(128)"
1377
+ }
1378
+ }],
1379
+ "defaultLabel": "label.stage.status"
1380
+ }
1381
+ }, {
1382
+ "attribute": {
1383
+ "identifier": "attr.stage.is_active",
1384
+ "title": "Is Active?",
1385
+ "folder": "Stage",
1386
+ "labels": [{
1387
+ "label": {
1388
+ "identifier": "label.stage.is_active",
1389
+ "title": "Is Active?",
1390
+ "type": "GDC.text",
1391
+ "dataType": "VARCHAR(128)"
1392
+ }
1393
+ }],
1394
+ "defaultLabel": "label.stage.is_active"
1395
+ }
1396
+ }, {
1397
+ "attribute": {
1398
+ "identifier": "attr.stage.is_closed",
1399
+ "title": "Is Closed?",
1400
+ "folder": "Stage",
1401
+ "labels": [{
1402
+ "label": {
1403
+ "identifier": "label.stage.is_closed",
1404
+ "title": "Is Closed?",
1405
+ "type": "GDC.text",
1406
+ "dataType": "VARCHAR(128)"
1407
+ }
1408
+ }],
1409
+ "defaultLabel": "label.stage.is_closed"
1410
+ }
1411
+ }, {
1412
+ "attribute": {
1413
+ "identifier": "attr.stage.issao",
1414
+ "title": "Is SAO?",
1415
+ "folder": "Stage",
1416
+ "labels": [{
1417
+ "label": {
1418
+ "identifier": "label.stage.issao",
1419
+ "title": "Is SAO?",
1420
+ "type": "GDC.text",
1421
+ "dataType": "VARCHAR(128)"
1422
+ }
1423
+ }],
1424
+ "defaultLabel": "label.stage.issao"
1425
+ }
1426
+ }, {
1427
+ "attribute": {
1428
+ "identifier": "attr.stage.amconsolidatedstage",
1429
+ "title": "AM Consolidated Stage",
1430
+ "folder": "Stage",
1431
+ "labels": [{
1432
+ "label": {
1433
+ "identifier": "label.stage.amconsolidatedstage",
1434
+ "title": "AM Consolidated Stage",
1435
+ "type": "GDC.text",
1436
+ "dataType": "VARCHAR(128)"
1437
+ }
1438
+ }, {
1439
+ "label": {
1440
+ "identifier": "label.stage.amconsolidatedstage.amstageorder",
1441
+ "title": "_AM Stage Order",
1442
+ "type": "GDC.text",
1443
+ "dataType": "VARCHAR(128)"
1444
+ }
1445
+ }],
1446
+ "defaultLabel": "label.stage.amconsolidatedstage",
1447
+ "sortOrder": {
1448
+ "attributeSortOrder": {
1449
+ "label": "label.stage.amconsolidatedstage.amstageorder",
1450
+ "direction": "ASC"
1451
+ }
1452
+ }
1453
+ }
1454
+ }]
1455
+ }
1456
+ }, {
1457
+ "dataset": {
1458
+ "identifier": "dataset.opp_owner",
1459
+ "title": "opp_owner",
1460
+ "anchor": {
1461
+ "attribute": {
1462
+ "identifier": "attr.opp_owner.id",
1463
+ "title": "Opp. Owner",
1464
+ "folder": "Opp. Owner",
1465
+ "labels": [{
1466
+ "label": {
1467
+ "identifier": "label.opp_owner.id.name",
1468
+ "title": "Opp. Owner Name",
1469
+ "type": "GDC.text",
1470
+ "dataType": "VARCHAR(128)"
1471
+ }
1472
+ }, {
1473
+ "label": {
1474
+ "identifier": "label.opp_owner.id",
1475
+ "title": "Opp. Owner",
1476
+ "type": "GDC.text",
1477
+ "dataType": "VARCHAR(128)"
1478
+ }
1479
+ }, {
1480
+ "label": {
1481
+ "identifier": "label.opp_owner.id.oppownerpicture",
1482
+ "title": "Opp. Owner Picture",
1483
+ "type": "GDC.text",
1484
+ "dataType": "VARCHAR(128)"
1485
+ }
1486
+ }, {
1487
+ "label": {
1488
+ "identifier": "label.opp_owner.id.url",
1489
+ "title": "Opp. Owner Url",
1490
+ "type": "GDC.link",
1491
+ "dataType": "VARCHAR(128)"
1492
+ }
1493
+ }],
1494
+ "defaultLabel": "label.opp_owner.id.name"
1495
+ }
1496
+ },
1497
+ "attributes": [{
1498
+ "attribute": {
1499
+ "identifier": "attr.opp_owner.region",
1500
+ "title": "Opp. Owner Region",
1501
+ "folder": "Opp. Owner",
1502
+ "labels": [{
1503
+ "label": {
1504
+ "identifier": "label.opp_owner.region",
1505
+ "title": "Opp. Owner Region",
1506
+ "type": "GDC.text",
1507
+ "dataType": "VARCHAR(128)"
1508
+ }
1509
+ }],
1510
+ "defaultLabel": "label.opp_owner.region"
1511
+ }
1512
+ }, {
1513
+ "attribute": {
1514
+ "identifier": "attr.opp_owner.department",
1515
+ "title": "Opp. Owner Department",
1516
+ "folder": "Opp. Owner",
1517
+ "labels": [{
1518
+ "label": {
1519
+ "identifier": "label.opp_owner.department",
1520
+ "title": "Opp. Owner Department",
1521
+ "type": "GDC.text",
1522
+ "dataType": "VARCHAR(128)"
1523
+ }
1524
+ }],
1525
+ "defaultLabel": "label.opp_owner.department"
1526
+ }
1527
+ }],
1528
+ "references": ["oppownerstart"]
1529
+ }
1530
+ }, {
1531
+ "dataset": {
1532
+ "identifier": "dataset.activity",
1533
+ "title": "activity",
1534
+ "anchor": {
1535
+ "attribute": {
1536
+ "identifier": "attr.activity.id",
1537
+ "title": "Activity",
1538
+ "folder": "Activity",
1539
+ "labels": [{
1540
+ "label": {
1541
+ "identifier": "label.activity.id.subject",
1542
+ "title": "Activity Subject",
1543
+ "type": "GDC.text",
1544
+ "dataType": "VARCHAR(128)"
1545
+ }
1546
+ }, {
1547
+ "label": {
1548
+ "identifier": "label.activity.id",
1549
+ "title": "Activity",
1550
+ "type": "GDC.text",
1551
+ "dataType": "VARCHAR(128)"
1552
+ }
1553
+ }, {
1554
+ "label": {
1555
+ "identifier": "label.activity.id.url",
1556
+ "title": "url",
1557
+ "type": "GDC.link",
1558
+ "dataType": "VARCHAR(128)"
1559
+ }
1560
+ }],
1561
+ "defaultLabel": "label.activity.id.subject"
1562
+ }
1563
+ },
1564
+ "attributes": [{
1565
+ "attribute": {
1566
+ "identifier": "attr.activity.status",
1567
+ "title": "Activity Status",
1568
+ "folder": "Activity",
1569
+ "labels": [{
1570
+ "label": {
1571
+ "identifier": "label.activity.status",
1572
+ "title": "Activity Status",
1573
+ "type": "GDC.text",
1574
+ "dataType": "VARCHAR(128)"
1575
+ }
1576
+ }],
1577
+ "defaultLabel": "label.activity.status"
1578
+ }
1579
+ }, {
1580
+ "attribute": {
1581
+ "identifier": "attr.activity.type",
1582
+ "title": "Activity Type",
1583
+ "folder": "Activity",
1584
+ "labels": [{
1585
+ "label": {
1586
+ "identifier": "label.activity.type",
1587
+ "title": "Activity Type",
1588
+ "type": "GDC.text",
1589
+ "dataType": "VARCHAR(128)"
1590
+ }
1591
+ }],
1592
+ "defaultLabel": "label.activity.type"
1593
+ }
1594
+ }]
1595
+ }
1596
+ }, {
1597
+ "dataset": {
1598
+ "identifier": "dataset.opportunity",
1599
+ "title": "opportunity",
1600
+ "anchor": {
1601
+ "attribute": {
1602
+ "identifier": "attr.opportunity.id",
1603
+ "title": "Opportunity",
1604
+ "folder": "Opportunity",
1605
+ "labels": [{
1606
+ "label": {
1607
+ "identifier": "label.opportunity.id.name",
1608
+ "title": "Opp. Name",
1609
+ "type": "GDC.text",
1610
+ "dataType": "VARCHAR(128)"
1611
+ }
1612
+ }, {
1613
+ "label": {
1614
+ "identifier": "label.opportunity.id",
1615
+ "title": "Opportunity",
1616
+ "type": "GDC.text",
1617
+ "dataType": "VARCHAR(128)"
1618
+ }
1619
+ }, {
1620
+ "label": {
1621
+ "identifier": "label.opportunity.id.url",
1622
+ "title": "Opp. Url",
1623
+ "type": "GDC.link",
1624
+ "dataType": "VARCHAR(128)"
1625
+ }
1626
+ }],
1627
+ "defaultLabel": "label.opportunity.id.name"
1628
+ }
1629
+ }
1630
+ }
1631
+ }, {
1632
+ "dataset": {
1633
+ "identifier": "dataset.bookingtype",
1634
+ "title": "Booking Type",
1635
+ "anchor": {
1636
+ "attribute": {
1637
+ "identifier": "attr.bookingtype.booking_type_id",
1638
+ "title": "Booking Type",
1639
+ "folder": "Booking Type",
1640
+ "labels": [{
1641
+ "label": {
1642
+ "identifier": "label.bookingtype.booking_type_id",
1643
+ "title": "Booking Type",
1644
+ "type": "GDC.text",
1645
+ "dataType": "VARCHAR(128)"
1646
+ }
1647
+ }, {
1648
+ "label": {
1649
+ "identifier": "label.bookingtype.booking_type_id.booking_type_nm",
1650
+ "title": "Booking Type Nm",
1651
+ "type": "GDC.text",
1652
+ "dataType": "VARCHAR(128)"
1653
+ }
1654
+ }],
1655
+ "defaultLabel": "label.bookingtype.booking_type_id"
1656
+ }
1657
+ }
1658
+ }
1659
+ }, {
1660
+ "dataset": {
1661
+ "identifier": "dataset.forecast",
1662
+ "title": "forecast",
1663
+ "anchor": {
1664
+ "attribute": {
1665
+ "identifier": "attr.forecast.id",
1666
+ "title": "Forecast Category",
1667
+ "folder": "forecast",
1668
+ "labels": [{
1669
+ "label": {
1670
+ "identifier": "label.forecast.id.forecastcategoryordered",
1671
+ "title": "Forecast Category Ordered",
1672
+ "type": "GDC.text",
1673
+ "dataType": "VARCHAR(128)"
1674
+ }
1675
+ }, {
1676
+ "label": {
1677
+ "identifier": "label.forecast.id",
1678
+ "title": "Forecast Category",
1679
+ "type": "GDC.text",
1680
+ "dataType": "VARCHAR(128)"
1681
+ }
1682
+ }],
1683
+ "defaultLabel": "label.forecast.id.forecastcategoryordered"
1684
+ }
1685
+ }
1686
+ }
1687
+ }],
1688
+ "dateDimensions": [{
1689
+ "dateDimension": {
1690
+ "name": "activity",
1691
+ "title": "Activity"
1692
+ }
1693
+ }, {
1694
+ "dateDimension": {
1695
+ "name": "leadcreate",
1696
+ "title": "Lead Created"
1697
+ }
1698
+ }, {
1699
+ "dateDimension": {
1700
+ "name": "snapshot",
1701
+ "title": "Snapshot"
1702
+ }
1703
+ }, {
1704
+ "dateDimension": {
1705
+ "name": "oppownerstart",
1706
+ "title": "Opp. Owner Start"
1707
+ }
1708
+ }, {
1709
+ "dateDimension": {
1710
+ "name": "oppclose",
1711
+ "title": "Opp. Close"
1712
+ }
1713
+ }, {
1714
+ "dateDimension": {
1715
+ "name": "oppcreated",
1716
+ "title": "Opp. Created"
1717
+ }
1718
+ }, {
1719
+ "dateDimension": {
1720
+ "name": "stage1plus",
1721
+ "title": "SAO"
1722
+ }
1723
+ }, {
1724
+ "dateDimension": {
1725
+ "name": "firstcontactdate",
1726
+ "title": "Contacted Date"
1727
+ }
1728
+ }, {
1729
+ "dateDimension": {
1730
+ "name": "previous_close_date",
1731
+ "title": "Previous Opp. Close"
1732
+ }
1733
+ }, {
1734
+ "dateDimension": {
1735
+ "name": "mqldate",
1736
+ "title": "MQL"
1737
+ }
1738
+ }, {
1739
+ "dateDimension": {
1740
+ "name": "s2o",
1741
+ "title": "S2O"
1742
+ }
1743
+ }, {
1744
+ "dateDimension": {
1745
+ "name": "firstmeeting",
1746
+ "title": "First Meeting"
1747
+ }
1748
+ }, {
1749
+ "dateDimension": {
1750
+ "name": "effectivecontractstart",
1751
+ "title": "Effective Contract Start"
1752
+ }
1753
+ }, {
1754
+ "dateDimension": {
1755
+ "name": "laststage0plus",
1756
+ "title": "Last Stage0Plus"
1757
+ }
1758
+ }, {
1759
+ "dateDimension": {
1760
+ "name": "effectivecontractend",
1761
+ "title": "Effective Contract End"
1762
+ }
1763
+ }, {
1764
+ "dateDimension": {
1765
+ "name": "timeline",
1766
+ "title": "Timeline"
1767
+ }
1768
+ }]
1769
+ }
1770
+ }
1771
+ }
1772
+ }