gooddata 0.6.4 → 0.6.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.markdown +4 -0
  3. data/README.md +1 -0
  4. data/lib/gooddata/cli/commands/project_cmd.rb +2 -7
  5. data/lib/gooddata/client.rb +0 -2
  6. data/lib/gooddata/commands/project.rb +10 -0
  7. data/lib/gooddata/core/rest.rb +12 -2
  8. data/lib/gooddata/exceptions/attr_element_not_found.rb +12 -0
  9. data/lib/gooddata/extensions/enumerable.rb +12 -0
  10. data/lib/gooddata/helpers/global_helpers.rb +20 -0
  11. data/lib/gooddata/mixins/author.rb +16 -0
  12. data/lib/gooddata/mixins/content_getter.rb +11 -0
  13. data/lib/gooddata/mixins/content_property_reader.rb +13 -0
  14. data/lib/gooddata/mixins/content_property_writer.rb +13 -0
  15. data/lib/gooddata/mixins/contributor.rb +16 -0
  16. data/lib/gooddata/mixins/data_getter.rb +11 -0
  17. data/lib/gooddata/mixins/data_property_reader.rb +13 -0
  18. data/lib/gooddata/mixins/data_property_writer.rb +13 -0
  19. data/lib/gooddata/mixins/is_attribute.rb +13 -0
  20. data/lib/gooddata/mixins/is_fact.rb +13 -0
  21. data/lib/gooddata/mixins/is_label.rb +15 -0
  22. data/lib/gooddata/mixins/links.rb +11 -0
  23. data/lib/gooddata/mixins/md_finders.rb +36 -0
  24. data/lib/gooddata/mixins/md_id_to_uri.rb +29 -0
  25. data/lib/gooddata/mixins/md_json.rb +11 -0
  26. data/lib/gooddata/mixins/md_object_id.rb +11 -0
  27. data/lib/gooddata/mixins/md_object_indexer.rb +36 -0
  28. data/lib/gooddata/mixins/md_object_query.rb +83 -0
  29. data/lib/gooddata/mixins/md_relations.rb +39 -0
  30. data/lib/gooddata/mixins/meta_getter.rb +11 -0
  31. data/lib/gooddata/mixins/meta_property_reader.rb +13 -0
  32. data/lib/gooddata/mixins/meta_property_writer.rb +13 -0
  33. data/lib/gooddata/mixins/mixins.rb +15 -0
  34. data/lib/gooddata/mixins/not_attribute.rb +13 -0
  35. data/lib/gooddata/mixins/not_exportable.rb +11 -0
  36. data/lib/gooddata/mixins/not_fact.rb +13 -0
  37. data/lib/gooddata/mixins/not_label.rb +15 -0
  38. data/lib/gooddata/mixins/not_metric.rb +13 -0
  39. data/lib/gooddata/mixins/obj_id.rb +11 -0
  40. data/lib/gooddata/mixins/rest_getters.rb +13 -0
  41. data/lib/gooddata/mixins/rest_resource.rb +19 -0
  42. data/lib/gooddata/mixins/root_key_getter.rb +11 -0
  43. data/lib/gooddata/mixins/root_key_setter.rb +11 -0
  44. data/lib/gooddata/mixins/timestamps.rb +15 -0
  45. data/lib/gooddata/models/from_wire.rb +153 -0
  46. data/lib/gooddata/models/metadata.rb +28 -230
  47. data/lib/gooddata/models/metadata/attribute.rb +4 -6
  48. data/lib/gooddata/models/metadata/fact.rb +4 -6
  49. data/lib/gooddata/models/metadata/{display_form.rb → label.rb} +17 -11
  50. data/lib/gooddata/models/metadata/metric.rb +1 -1
  51. data/lib/gooddata/models/metadata/report_definition.rb +2 -2
  52. data/lib/gooddata/models/model.rb +55 -23
  53. data/lib/gooddata/models/models.rb +0 -2
  54. data/lib/gooddata/models/module_constants.rb +0 -2
  55. data/lib/gooddata/models/process.rb +1 -1
  56. data/lib/gooddata/models/project.rb +117 -76
  57. data/lib/gooddata/models/project_blueprint.rb +322 -42
  58. data/lib/gooddata/models/project_creator.rb +5 -4
  59. data/lib/gooddata/models/project_role.rb +20 -55
  60. data/lib/gooddata/models/schema_blueprint.rb +287 -84
  61. data/lib/gooddata/models/schema_builder.rb +0 -4
  62. data/lib/gooddata/models/to_manifest.rb +160 -0
  63. data/lib/gooddata/models/to_wire.rb +150 -0
  64. data/lib/gooddata/version.rb +1 -1
  65. data/spec/data/blueprint_invalid.json +3 -1
  66. data/spec/data/gd_gse_data_blueprint.json +1370 -0
  67. data/spec/data/gd_gse_data_manifest.json +1424 -0
  68. data/spec/data/gd_gse_data_model.json +1772 -0
  69. data/spec/data/manifest_test_project.json +116 -0
  70. data/spec/data/model_view.json +1772 -0
  71. data/spec/data/superfluous_titles_view.json +81 -0
  72. data/spec/data/test_project_model_spec.json +7 -4
  73. data/spec/data/wire_test_project.json +143 -0
  74. data/spec/helpers/crypto_helper.rb +9 -0
  75. data/spec/helpers/project_helper.rb +2 -0
  76. data/spec/integration/command_projects_spec.rb +4 -2
  77. data/spec/integration/full_project_spec.rb +51 -18
  78. data/spec/integration/partial_md_export_import_spec.rb +1 -1
  79. data/spec/spec_helper.rb +2 -1
  80. data/spec/unit/models/attribute_column_spec.rb +7 -7
  81. data/spec/unit/models/domain_spec.rb +2 -2
  82. data/spec/unit/models/from_wire_spec.rb +119 -0
  83. data/spec/unit/models/metadata_spec.rb +4 -2
  84. data/spec/unit/models/project_blueprint_spec.rb +32 -16
  85. data/spec/unit/models/project_role_spec.rb +6 -4
  86. data/spec/unit/models/project_spec.rb +26 -3
  87. data/spec/unit/models/schema_builder_spec.rb +5 -6
  88. data/spec/unit/models/to_manifest_spec.rb +24 -0
  89. data/spec/unit/models/to_wire_spec.rb +63 -0
  90. metadata +53 -29
  91. data/lib/gooddata/models/attributes/anchor.rb +0 -37
  92. data/lib/gooddata/models/attributes/attributes.rb +0 -8
  93. data/lib/gooddata/models/attributes/date_attribute.rb +0 -25
  94. data/lib/gooddata/models/attributes/time_attribute.rb +0 -24
  95. data/lib/gooddata/models/columns/attribute.rb +0 -71
  96. data/lib/gooddata/models/columns/columns.rb +0 -8
  97. data/lib/gooddata/models/columns/date_column.rb +0 -63
  98. data/lib/gooddata/models/columns/fact_model.rb +0 -54
  99. data/lib/gooddata/models/columns/label.rb +0 -55
  100. data/lib/gooddata/models/columns/reference.rb +0 -57
  101. data/lib/gooddata/models/facts/facts.rb +0 -8
  102. data/lib/gooddata/models/facts/time_fact.rb +0 -20
  103. data/lib/gooddata/models/folders/attribute_folder.rb +0 -20
  104. data/lib/gooddata/models/folders/fact_folder.rb +0 -20
  105. data/lib/gooddata/models/folders/folders.rb +0 -8
  106. data/lib/gooddata/models/metadata/column.rb +0 -61
  107. data/lib/gooddata/models/metadata/data_set.rb +0 -32
  108. data/lib/gooddata/models/metadata/date_dimension.rb +0 -26
  109. data/lib/gooddata/models/metadata/schema.rb +0 -227
  110. data/lib/gooddata/models/references/date_reference.rb +0 -44
  111. data/lib/gooddata/models/references/references.rb +0 -8
  112. data/lib/gooddata/models/references/time_reference.rb +0 -13
  113. data/spec/helpers/schema_helper.rb +0 -16
  114. data/spec/unit/models/anchor_spec.rb +0 -32
  115. data/spec/unit/models/tools_spec.rb +0 -95
  116. data/test/test_upload.rb +0 -79
@@ -0,0 +1,116 @@
1
+ [
2
+ {
3
+ "dataSetSLIManifest": {
4
+ "parts": [
5
+ {
6
+ "referenceKey": 1,
7
+ "populates": [
8
+ "label.repos.repo_id"
9
+ ],
10
+ "mode": "FULL",
11
+ "columnName": "repo_id"
12
+ },
13
+ {
14
+ "populates": [
15
+ "label.repos.repo_id.name"
16
+ ],
17
+ "mode": "FULL",
18
+ "columnName": "name"
19
+ },
20
+ {
21
+ "referenceKey": 1,
22
+ "populates": [
23
+ "label.repos.department"
24
+ ],
25
+ "mode": "FULL",
26
+ "columnName": "department"
27
+ }
28
+ ],
29
+ "dataSet": "dataset.repos",
30
+ "file": "data.csv",
31
+ "csvParams": {
32
+ "quoteChar": "\"",
33
+ "escapeChar": "\"",
34
+ "separatorChar": ",",
35
+ "endOfLine": "\n"
36
+ }
37
+ }
38
+ },
39
+ {
40
+ "dataSetSLIManifest": {
41
+ "parts": [
42
+ {
43
+ "referenceKey": 1,
44
+ "populates": [
45
+ "label.devs.dev_id"
46
+ ],
47
+ "mode": "FULL",
48
+ "columnName": "dev_id"
49
+ },
50
+ {
51
+ "populates": [
52
+ "label.devs.dev_id.email"
53
+ ],
54
+ "mode": "FULL",
55
+ "columnName": "email"
56
+ }
57
+ ],
58
+ "dataSet": "dataset.devs",
59
+ "file": "data.csv",
60
+ "csvParams": {
61
+ "quoteChar": "\"",
62
+ "escapeChar": "\"",
63
+ "separatorChar": ",",
64
+ "endOfLine": "\n"
65
+ }
66
+ }
67
+ },
68
+ {
69
+ "dataSetSLIManifest": {
70
+ "parts": [
71
+ {
72
+ "populates": [
73
+ "fact.commits.lines_changed"
74
+ ],
75
+ "mode": "FULL",
76
+ "columnName": "lines_changed"
77
+ },
78
+ {
79
+ "populates": [
80
+ "committed_on.date.mdyy"
81
+ ],
82
+ "mode": "FULL",
83
+ "constraints": {
84
+ "date": "dd/MM/yyyy"
85
+ },
86
+ "columnName": "committed_on",
87
+ "referenceKey": 1
88
+ },
89
+ {
90
+ "populates": [
91
+ "label.devs.dev_id"
92
+ ],
93
+ "mode": "FULL",
94
+ "columnName": "dev_id",
95
+ "referenceKey": 1
96
+ },
97
+ {
98
+ "populates": [
99
+ "label.repos.repo_id"
100
+ ],
101
+ "mode": "FULL",
102
+ "columnName": "repo_id",
103
+ "referenceKey": 1
104
+ }
105
+ ],
106
+ "dataSet": "dataset.commits",
107
+ "file": "data.csv",
108
+ "csvParams": {
109
+ "quoteChar": "\"",
110
+ "escapeChar": "\"",
111
+ "separatorChar": ",",
112
+ "endOfLine": "\n"
113
+ }
114
+ }
115
+ }
116
+ ]
@@ -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
+ }