gooddata 0.6.11 → 0.6.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +6 -0
  3. data/.travis.yml +5 -0
  4. data/CHANGELOG.md +34 -1
  5. data/CLI.md +1 -1
  6. data/authors.sh +4 -0
  7. data/lib/gooddata.rb +1 -1
  8. data/lib/gooddata/cli/commands/api_cmd.rb +0 -2
  9. data/lib/gooddata/cli/commands/auth_cmd.rb +0 -3
  10. data/lib/gooddata/cli/commands/console_cmd.rb +1 -2
  11. data/lib/gooddata/cli/commands/domain_cmd.rb +0 -2
  12. data/lib/gooddata/cli/commands/process_cmd.rb +0 -2
  13. data/lib/gooddata/cli/commands/project_cmd.rb +0 -2
  14. data/lib/gooddata/cli/commands/projects_cmd.rb +0 -2
  15. data/lib/gooddata/cli/commands/run_ruby_cmd.rb +2 -3
  16. data/lib/gooddata/cli/commands/scaffold_cmd.rb +0 -3
  17. data/lib/gooddata/cli/commands/user_cmd.rb +0 -2
  18. data/lib/gooddata/cli/shared.rb +1 -2
  19. data/lib/gooddata/commands/datawarehouse.rb +24 -0
  20. data/lib/gooddata/commands/process.rb +0 -1
  21. data/lib/gooddata/commands/project.rb +1 -1
  22. data/lib/gooddata/commands/scaffold.rb +0 -1
  23. data/lib/gooddata/core/connection.rb +376 -0
  24. data/lib/gooddata/core/logging.rb +13 -0
  25. data/lib/gooddata/core/rest.rb +40 -16
  26. data/lib/gooddata/exceptions/user_in_different_domain.rb +11 -0
  27. data/lib/gooddata/extensions/enumerable.rb +8 -0
  28. data/lib/gooddata/goodzilla/goodzilla.rb +24 -0
  29. data/lib/gooddata/helpers/global_helpers.rb +126 -12
  30. data/lib/gooddata/mixins/author.rb +11 -5
  31. data/lib/gooddata/mixins/is_dimension.rb +13 -0
  32. data/lib/gooddata/mixins/md_object_indexer.rb +17 -1
  33. data/lib/gooddata/mixins/md_object_query.rb +10 -2
  34. data/lib/gooddata/mixins/md_relations.rb +2 -2
  35. data/lib/gooddata/mixins/rest_resource.rb +1 -0
  36. data/lib/gooddata/models/data_result.rb +0 -1
  37. data/lib/gooddata/models/datawarehouse.rb +90 -0
  38. data/lib/gooddata/models/domain.rb +202 -76
  39. data/lib/gooddata/models/execution.rb +11 -0
  40. data/lib/gooddata/models/from_wire.rb +4 -4
  41. data/lib/gooddata/models/invitation.rb +0 -5
  42. data/lib/gooddata/models/membership.rb +121 -91
  43. data/lib/gooddata/models/metadata.rb +1 -2
  44. data/lib/gooddata/models/metadata/attribute.rb +7 -0
  45. data/lib/gooddata/models/metadata/dashboard.rb +1 -1
  46. data/lib/gooddata/models/metadata/dimension.rb +52 -0
  47. data/lib/gooddata/models/metadata/fact.rb +1 -1
  48. data/lib/gooddata/models/metadata/label.rb +21 -7
  49. data/lib/gooddata/models/metadata/metric.rb +1 -23
  50. data/lib/gooddata/models/metadata/report.rb +2 -2
  51. data/lib/gooddata/models/metadata/report_definition.rb +22 -2
  52. data/lib/gooddata/models/metadata/variable.rb +81 -0
  53. data/lib/gooddata/models/model.rb +2 -1
  54. data/lib/gooddata/models/process.rb +3 -4
  55. data/lib/gooddata/models/profile.rb +50 -82
  56. data/lib/gooddata/models/project.rb +170 -213
  57. data/lib/gooddata/models/project_blueprint.rb +14 -5
  58. data/lib/gooddata/models/project_creator.rb +2 -2
  59. data/lib/gooddata/models/schedule.rb +10 -8
  60. data/lib/gooddata/models/to_wire.rb +2 -2
  61. data/lib/gooddata/models/user_filters/mandatory_user_filter.rb +67 -0
  62. data/lib/gooddata/models/user_filters/user_filter.rb +96 -0
  63. data/lib/gooddata/models/user_filters/user_filter_builder.rb +409 -0
  64. data/lib/gooddata/{rest/connections/connections.rb → models/user_filters/user_filters.rb} +1 -0
  65. data/lib/gooddata/models/user_filters/variable_user_filter.rb +14 -0
  66. data/lib/gooddata/rest/client.rb +32 -21
  67. data/lib/gooddata/rest/connection.rb +283 -11
  68. data/lib/gooddata/rest/connections/rest_client_connection.rb +47 -109
  69. data/lib/gooddata/version.rb +1 -1
  70. data/spec/data/column_based_permissions.csv +7 -0
  71. data/spec/data/column_based_permissions2.csv +6 -0
  72. data/spec/data/hello_world_process/hello_world.rb +3 -1
  73. data/spec/data/line_based_permissions.csv +3 -0
  74. data/spec/data/m_n_model/blueprint.json +76 -0
  75. data/spec/data/{model_view.json → wire_models/model_view.json} +0 -0
  76. data/spec/data/wire_models/nu_model.json +3046 -0
  77. data/spec/helpers/process_helper.rb +2 -2
  78. data/spec/helpers/project_helper.rb +29 -0
  79. data/spec/helpers/schedule_helper.rb +1 -1
  80. data/spec/integration/command_datawarehouse_spec.rb +32 -0
  81. data/spec/integration/create_project_spec.rb +0 -1
  82. data/spec/integration/full_process_schedule_spec.rb +13 -5
  83. data/spec/integration/full_project_spec.rb +2 -1
  84. data/spec/integration/over_to_user_filters_spec.rb +92 -0
  85. data/spec/integration/project_spec.rb +233 -0
  86. data/spec/integration/rest_spec.rb +209 -0
  87. data/spec/integration/user_filters_spec.rb +193 -0
  88. data/spec/integration/variables_spec.rb +196 -0
  89. data/spec/unit/commands/command_auth_spec.rb +0 -7
  90. data/spec/unit/commands/command_process_spec.rb +10 -13
  91. data/spec/unit/core/connection_spec.rb +0 -19
  92. data/spec/unit/helpers/global_helpers_spec.rb +57 -0
  93. data/spec/unit/models/domain_spec.rb +80 -40
  94. data/spec/unit/models/from_wire_spec.rb +8 -1
  95. data/spec/unit/models/params_spec.rb +6 -6
  96. data/spec/unit/models/profile_spec.rb +23 -22
  97. data/spec/unit/models/project_blueprint_spec.rb +1 -6
  98. data/spec/unit/models/project_spec.rb +331 -286
  99. data/spec/unit/models/schedule_spec.rb +39 -14
  100. data/spec/unit/models/user_filters_spec.rb +89 -0
  101. data/spec/unit/models/variable_spec.rb +259 -0
  102. metadata +31 -7
  103. data/lib/gooddata/rest/connections/dummy_connection.rb +0 -52
  104. data/spec/unit/core/rest_spec.rb +0 -106
@@ -44,10 +44,10 @@ module GoodData
44
44
  # HTTP GET
45
45
  #
46
46
  # @param uri [String] Target URI
47
- def get(uri, options = {}, &user_block)
47
+ def get(uri, options = {})
48
48
  GoodData.logger.debug "GET: #{@server.url}#{uri}"
49
49
  profile "GET #{uri}" do
50
- b = proc { @server[uri].get(cookies, &user_block) }
50
+ b = proc { @server[uri].get cookies }
51
51
  process_response(options, &b)
52
52
  end
53
53
  end
@@ -57,7 +57,7 @@ module GoodData
57
57
  # @param uri [String] Target URI
58
58
  def put(uri, data, options = {})
59
59
  payload = data.is_a?(Hash) ? data.to_json : data
60
- GoodData.logger.debug "PUT: #{@server.url}#{uri}, #{scrub_params(data, [:password, :login, :authorizationToken])}"
60
+ GoodData.logger.debug "PUT: #{@server.url}#{uri}, #{scrub_params(data, [:password, :login, :authorizationToken, :verifyPassword])}"
61
61
  profile "PUT #{uri}" do
62
62
  b = proc { @server[uri].put payload, cookies }
63
63
  process_response(options, &b)
@@ -68,7 +68,7 @@ module GoodData
68
68
  #
69
69
  # @param uri [String] Target URI
70
70
  def post(uri, data, options = {})
71
- GoodData.logger.debug "POST: #{@server.url}#{uri}, #{scrub_params(data, [:password, :login, :authorizationToken])}"
71
+ GoodData.logger.debug "POST: #{@server.url}#{uri}, #{scrub_params(data, [:password, :login, :authorizationToken, :verifyPassword])}"
72
72
  profile "POST #{uri}" do
73
73
  payload = data.is_a?(Hash) ? data.to_json : data
74
74
  b = proc { @server[uri].post payload, cookies }
@@ -77,129 +77,67 @@ module GoodData
77
77
  end
78
78
 
79
79
  # Uploads a file to GoodData server
80
+ # /uploads/ resources are special in that they use a different
81
+ # host and a basic authentication.
80
82
  def upload(file, options = {})
81
- def do_stream_file(uri, filename, options = {})
82
- puts "uploading the file #{uri}"
83
-
84
- to_upload = File.new(filename)
85
- cookies_str = cookies[:cookies].map { |cookie| "#{cookie[0]}=#{cookie[1]}" }.join(';')
86
- req = Net::HTTP::Put.new(uri.path, 'User-Agent' => GoodData.gem_version_string, 'Cookie' => cookies_str)
87
- req.content_length = to_upload.size
88
- req.body_stream = to_upload
89
- http = Net::HTTP.new(uri.host, uri.port)
90
- http.use_ssl = true
91
- http.verify_mode = OpenSSL::SSL::VERIFY_NONE
92
- response = http.start { |client| client.request(req) }
93
- case response
94
- when Net::HTTPSuccess then
95
- true
96
- when Net::HTTPUnauthorized
97
- refresh_token
98
- do_stream_file uri, filename, options
99
- else
100
- fail "Can't upload file to webdav. Path: #{uri}, response code: #{response.code}, response body: #{response.body}"
101
- end
102
- end
83
+ dir = options[:directory] || ''
84
+ staging_uri = options[:staging_url].to_s
85
+ url = dir.empty? ? staging_uri : URI.join(staging_uri, "#{dir}/").to_s
103
86
 
104
- def webdav_dir_exists?(url)
87
+ # Make a directory, if needed
88
+ unless dir.empty?
105
89
  method = :get
106
90
  GoodData.logger.debug "#{method}: #{url}"
107
-
108
- b = proc do
109
- raw = {
110
- :method => method,
111
- :url => url,
112
- :headers => @headers
113
- }
114
- begin
115
- RestClient::Request.execute(raw.merge(cookies))
116
- rescue RestClient::Exception => e
117
- false if e.http_code == 404
118
- end
119
- end
120
-
121
- process_with_tt_refresh(&b)
122
- end
123
-
124
- def create_webdav_dir_if_needed(url)
125
- return if webdav_dir_exists?(url)
126
-
127
- method = :mkcol
128
- GoodData.logger.debug "#{method}: #{url}"
129
- b = proc do
91
+ begin
92
+ # first check if it does exits
130
93
  raw = {
131
94
  :method => method,
132
95
  :url => url,
96
+ # :timeout => @options[:timeout],
133
97
  :headers => @headers
134
98
  }.merge(cookies)
135
99
  RestClient::Request.execute(raw)
136
- end
137
-
138
- process_with_tt_refresh(&b)
139
- end
140
-
141
- dir = options[:directory] || ''
142
- staging_uri = options[:staging_url].to_s
143
- url = dir.empty? ? staging_uri : URI.join(staging_uri, "#{dir}/").to_s
144
-
145
- # Make a directory, if needed
146
- create_webdav_dir_if_needed url unless dir.empty?
147
-
148
- webdav_filename = options[:filename] || File.basename(file)
149
- do_stream_file URI.join(url, CGI.escape(webdav_filename)), file
150
- end
151
-
152
- def download(what, where, options = {})
153
- dir = options[:directory] || ''
154
- staging_uri = options[:staging_url].to_s
155
-
156
- base_url = dir.empty? ? staging_uri : URI.join(staging_uri, "#{dir}/").to_s
157
- url = URI.join(base_url, CGI.escape(what)).to_s
158
-
159
- b = proc do
160
- raw = {
161
- :headers => {
162
- :user_agent => GoodData.gem_version_string
163
- },
164
- :method => :get,
165
- :url => url
166
- }.merge(cookies)
167
-
168
- if where.is_a?(String)
169
- File.open(where, 'w') do |f|
170
- RestClient::Request.execute(raw) do |chunk, _x, _y|
171
- f.write chunk
172
- end
173
- end
174
-
175
- else
176
- # Assume it is a IO stream
177
- RestClient::Request.execute(raw) do |chunk, _x, _y|
178
- where.write chunk
100
+ rescue RestClient::Exception => e
101
+ if e.http_code == 404
102
+ method = :mkcol
103
+ GoodData.logger.debug "#{method}: #{url}"
104
+ raw = {
105
+ :method => method,
106
+ :url => url,
107
+ # :timeout => @options[:timeout],
108
+ :headers => @headers
109
+ }.merge(cookies)
110
+ RestClient::Request.execute(raw)
179
111
  end
180
112
  end
181
113
  end
182
114
 
183
- process_with_tt_refresh(&b)
184
- end
185
-
186
- private
187
-
188
- def process_with_tt_refresh(&block)
189
- block.call
190
- rescue RestClient::Unauthorized
191
- refresh_token
192
- block.call
115
+ payload = options[:stream] ? 'file' : File.read(file)
116
+ filename = options[:filename] || options[:stream] ? 'randome-filename.txt' : File.basename(file)
117
+
118
+ # Upload the file
119
+ # puts "uploading the file #{URI.join(url, filename).to_s}"
120
+ raw = {
121
+ :method => :put,
122
+ :url => URI.join(url, filename).to_s,
123
+ # :timeout => @options[:timeout],
124
+ :headers => {
125
+ :user_agent => GoodData.gem_version_string
126
+ },
127
+ :payload => payload,
128
+ :raw_response => true,
129
+ # :user => @username,
130
+ # :password => @password
131
+ }.merge(cookies)
132
+ RestClient::Request.execute(raw)
133
+ true
193
134
  end
194
135
 
195
136
  private
196
137
 
197
138
  def process_response(options = {}, &block)
198
139
  begin
199
- # Simply try again when ConnectionReset, ConnectionRefused etc.. (see e.g. MSF-7591)
200
- response = GoodData::Rest::Client.retryable(:tries => 2, :on => SystemCallError) do
201
- block.call
202
- end
140
+ response = block.call
203
141
  rescue RestClient::Unauthorized
204
142
  raise $ERROR_INFO if options[:dont_reauth]
205
143
  refresh_token
@@ -212,10 +150,10 @@ module GoodData
212
150
 
213
151
  if content_type == 'application/json' || content_type == 'application/json;charset=UTF-8'
214
152
  result = response.to_str == '""' ? {} : MultiJson.load(response.to_str)
215
- GoodData.logger.debug "Request ID: #{response.headers[:x_gdc_request]} - Response: #{result.inspect}"
153
+ GoodData.logger.debug "Response: #{result.inspect}"
216
154
  elsif ['text/plain;charset=UTF-8', 'text/plain; charset=UTF-8', 'text/plain'].include?(content_type)
217
155
  result = response
218
- GoodData.logger.debug 'Response: plain text'
156
+ GoodData.logger.debug "Response: plain text - #{result[0..99]}"
219
157
  elsif content_type == 'application/zip'
220
158
  result = response
221
159
  GoodData.logger.debug 'Response: a zipped stream'
@@ -2,7 +2,7 @@
2
2
 
3
3
  # GoodData Module
4
4
  module GoodData
5
- VERSION = '0.6.11'
5
+ VERSION = '0.6.12'
6
6
 
7
7
  class << self
8
8
  # Version
@@ -0,0 +1,7 @@
1
+ login,region,department
2
+ john.doe@example.com,USA,engineering
3
+ john.doe@example.com,USA,marketing
4
+ john.doe@example.com,Czech Republic,
5
+ john.doe@example.com,Uganda,""
6
+ john.doe@example.com,Slovakia,
7
+ jane.doe@example.com,Chile,marketing
@@ -0,0 +1,6 @@
1
+ region,department,login
2
+ USA,engineering,john.doe@gooddata.com
3
+ Czech Republic,,john.doe@gooddata.com
4
+ Uganda,"",john.doe@gooddata.com
5
+ Slovakia,,john.doe@gooddata.com
6
+ Chile,marketing,jane.doe@gooddata.com
@@ -1 +1,3 @@
1
- puts 'HELLO WORLD'
1
+ puts 'HELLO WORLD'
2
+ require 'pp'
3
+ pp $SCRIPT_PARAMS
@@ -0,0 +1,3 @@
1
+ john.doe@example.com,USA,Czech Republic,Uganda
2
+ john.doe@example.com,Slovakia
3
+ jane.doe@example.com,Chile
@@ -0,0 +1,76 @@
1
+ {
2
+ "title": "GD M:N project testing",
3
+ "datasets": [
4
+ {
5
+ "type": "dataset",
6
+ "name": "visibility",
7
+ "columns": [
8
+ {
9
+ "type": "anchor",
10
+ "name": "visibility_id"
11
+ },
12
+ {
13
+ "type": "reference",
14
+ "name": "perm_user_id",
15
+ "dataset": "permission_users"
16
+ },
17
+ {
18
+ "type": "reference",
19
+ "name": "commit_id",
20
+ "dataset": "commits"
21
+ }
22
+ ]
23
+ },
24
+ {
25
+ "type": "dataset",
26
+ "name": "users",
27
+ "columns": [
28
+ {
29
+ "type": "anchor",
30
+ "name": "user_id"
31
+ },
32
+ {
33
+ "type": "label",
34
+ "name": "email",
35
+ "reference": "user_id",
36
+ "default_label" : true
37
+ }
38
+ ]
39
+ },
40
+ {
41
+ "type": "dataset",
42
+ "name": "permission_users",
43
+ "columns": [
44
+ {
45
+ "type": "anchor",
46
+ "name": "perm_user_id"
47
+ },
48
+ {
49
+ "type": "label",
50
+ "name": "email",
51
+ "reference": "perm_user_id",
52
+ "default_label" : true
53
+ }
54
+ ]
55
+ },
56
+ {
57
+ "type": "dataset",
58
+ "name": "commits",
59
+ "columns": [
60
+ {
61
+ "type": "anchor",
62
+ "name": "commit_id"
63
+ },
64
+ {
65
+ "type": "fact",
66
+ "name": "lines_changed"
67
+ },
68
+ {
69
+ "type": "reference",
70
+ "name": "user_id",
71
+ "dataset": "users"
72
+ }
73
+ ]
74
+ }
75
+ ]
76
+ }
@@ -0,0 +1,3046 @@
1
+ {
2
+ "projectModelView": {
3
+ "model": {
4
+ "projectModel": {
5
+ "datasets": [
6
+ {
7
+ "dataset": {
8
+ "identifier": "dataset.bookingsactual",
9
+ "title": "Bookings Actual",
10
+ "anchor": {
11
+ "attribute": {
12
+ "identifier": "attr.bookingsactual.factsof",
13
+ "title": "Records of Bookings Actual",
14
+ "folder": "Bookings Actual"
15
+ }
16
+ },
17
+ "attributes": [
18
+ {
19
+ "attribute": {
20
+ "identifier": "attr.bookingsactual.localcurrency",
21
+ "title": "Local Currency",
22
+ "folder": "Bookings Actual",
23
+ "labels": [
24
+ {
25
+ "label": {
26
+ "identifier": "label.bookingsactual.localcurrency",
27
+ "title": "Local Currency",
28
+ "type": "GDC.text",
29
+ "dataType": "VARCHAR(128)"
30
+ }
31
+ }
32
+ ]
33
+ }
34
+ },
35
+ {
36
+ "attribute": {
37
+ "identifier": "attr.product.sku",
38
+ "title": "Sku",
39
+ "folder": "Bookings Actual",
40
+ "labels": [
41
+ {
42
+ "label": {
43
+ "identifier": "label.product.sku",
44
+ "title": "Sku",
45
+ "type": "GDC.text",
46
+ "dataType": "VARCHAR(128)"
47
+ }
48
+ }
49
+ ],
50
+ "defaultLabel": "label.product.sku"
51
+ }
52
+ },
53
+ {
54
+ "attribute": {
55
+ "identifier": "attr.bookingsactual.datasource",
56
+ "title": "Data Source",
57
+ "folder": "Bookings Actual",
58
+ "labels": [
59
+ {
60
+ "label": {
61
+ "identifier": "label.bookingsactual.datasource",
62
+ "title": "Data Source",
63
+ "type": "GDC.text",
64
+ "dataType": "VARCHAR(128)"
65
+ }
66
+ }
67
+ ]
68
+ }
69
+ },
70
+ {
71
+ "attribute": {
72
+ "identifier": "attr.bookingsactual.bookingid",
73
+ "title": "Booking Id",
74
+ "folder": "Bookings Actual",
75
+ "labels": [
76
+ {
77
+ "label": {
78
+ "identifier": "label.bookingsactual.bookingid",
79
+ "title": "Booking Id",
80
+ "type": "GDC.text",
81
+ "dataType": "VARCHAR(128)"
82
+ }
83
+ }
84
+ ]
85
+ }
86
+ },
87
+ {
88
+ "attribute": {
89
+ "identifier": "attr.bookingsactual.version",
90
+ "title": "BSA Version",
91
+ "folder": "Bookings Actual",
92
+ "labels": [
93
+ {
94
+ "label": {
95
+ "identifier": "label.bookingsactual.version",
96
+ "title": "BSA Version",
97
+ "type": "GDC.text",
98
+ "dataType": "VARCHAR(128)"
99
+ }
100
+ }
101
+ ],
102
+ "defaultLabel": "label.bookingsactual.version"
103
+ }
104
+ },
105
+ {
106
+ "attribute": {
107
+ "identifier": "attr.enduser.endusercustomercustomername",
108
+ "title": "End User Customer Name",
109
+ "folder": "Bookings Actual",
110
+ "labels": [
111
+ {
112
+ "label": {
113
+ "identifier": "label.enduser.endusercustomercustomername",
114
+ "title": "End User Customer Name",
115
+ "type": "GDC.text",
116
+ "dataType": "VARCHAR(128)"
117
+ }
118
+ }
119
+ ]
120
+ }
121
+ },
122
+ {
123
+ "attribute": {
124
+ "identifier": "attr.bookingsactual.ordertype",
125
+ "title": "Order Type",
126
+ "folder": "Bookings Actual",
127
+ "labels": [
128
+ {
129
+ "label": {
130
+ "identifier": "label.bookingsactual.ordertype",
131
+ "title": "Order Type",
132
+ "type": "GDC.text",
133
+ "dataType": "VARCHAR(128)"
134
+ }
135
+ }
136
+ ]
137
+ }
138
+ },
139
+ {
140
+ "attribute": {
141
+ "identifier": "attr.bookingsactual.customerponumber",
142
+ "title": "Customer PO Number",
143
+ "folder": "Bookings Actual",
144
+ "labels": [
145
+ {
146
+ "label": {
147
+ "identifier": "label.bookingsactual.customerponumber",
148
+ "title": "Customer PO Number",
149
+ "type": "GDC.text",
150
+ "dataType": "VARCHAR(128)"
151
+ }
152
+ }
153
+ ]
154
+ }
155
+ },
156
+ {
157
+ "attribute": {
158
+ "identifier": "attr.bookingsactual.newrenewalmaintenance",
159
+ "title": "New Renewal Maintenance",
160
+ "folder": "Bookings Actual",
161
+ "labels": [
162
+ {
163
+ "label": {
164
+ "identifier": "label.bookingsactual.newrenewalmaintenance",
165
+ "title": "New Renewal Maintenance",
166
+ "type": "GDC.text",
167
+ "dataType": "VARCHAR(128)"
168
+ }
169
+ }
170
+ ]
171
+ }
172
+ },
173
+ {
174
+ "attribute": {
175
+ "identifier": "attr.bookingsactual.maintenancerenewalstatus",
176
+ "title": "Maintenance Renewal Status",
177
+ "folder": "Bookings Actual",
178
+ "labels": [
179
+ {
180
+ "label": {
181
+ "identifier": "label.bookingsactual.maintenancerenewalstatus",
182
+ "title": "Maintenance Renewal Status",
183
+ "type": "GDC.text",
184
+ "dataType": "VARCHAR(128)"
185
+ }
186
+ }
187
+ ]
188
+ }
189
+ },
190
+ {
191
+ "attribute": {
192
+ "identifier": "attr.bookingsactual.meteredservicetype",
193
+ "title": "Metered Service Type",
194
+ "folder": "Bookings Actual",
195
+ "labels": [
196
+ {
197
+ "label": {
198
+ "identifier": "label.bookingsactual.meteredservicetype",
199
+ "title": "Metered Service Type",
200
+ "type": "GDC.text",
201
+ "dataType": "VARCHAR(128)"
202
+ }
203
+ }
204
+ ]
205
+ }
206
+ },
207
+ {
208
+ "attribute": {
209
+ "identifier": "attr.bookingsactual.enduserregion",
210
+ "title": "End User Region",
211
+ "folder": "Bookings Actual",
212
+ "labels": [
213
+ {
214
+ "label": {
215
+ "identifier": "label.bookingsactual.enduserregion",
216
+ "title": "End User Region",
217
+ "type": "GDC.text",
218
+ "dataType": "VARCHAR(128)"
219
+ }
220
+ }
221
+ ]
222
+ }
223
+ },
224
+ {
225
+ "attribute": {
226
+ "identifier": "attr.bookingsactual.skudescription",
227
+ "title": "Sku Description",
228
+ "folder": "Bookings Actual",
229
+ "labels": [
230
+ {
231
+ "label": {
232
+ "identifier": "label.bookingsactual.skudescription",
233
+ "title": "Sku Description",
234
+ "type": "GDC.text",
235
+ "dataType": "VARCHAR(128)"
236
+ }
237
+ }
238
+ ]
239
+ }
240
+ },
241
+ {
242
+ "attribute": {
243
+ "identifier": "attr.bookingsactual.endusercountry",
244
+ "title": "End User Country",
245
+ "folder": "Bookings Actual",
246
+ "labels": [
247
+ {
248
+ "label": {
249
+ "identifier": "label.bookingsactual.endusercountry",
250
+ "title": "End User Country",
251
+ "type": "GDC.text",
252
+ "dataType": "VARCHAR(128)"
253
+ }
254
+ }
255
+ ]
256
+ }
257
+ },
258
+ {
259
+ "attribute": {
260
+ "identifier": "attr.bookingsactual.glregioncode",
261
+ "title": "GL Region Code",
262
+ "folder": "Bookings Actual",
263
+ "labels": [
264
+ {
265
+ "label": {
266
+ "identifier": "label.bookingsactual.glregioncode",
267
+ "title": "GL Region Code",
268
+ "type": "GDC.text",
269
+ "dataType": "VARCHAR(128)"
270
+ }
271
+ }
272
+ ]
273
+ }
274
+ }
275
+ ],
276
+ "facts": [
277
+ {
278
+ "fact": {
279
+ "identifier": "fact.bookingsactual.bookingsamount",
280
+ "title": "Bookings Amount Local",
281
+ "folder": "Bookings Actual",
282
+ "dataType": "DECIMAL(15,5)"
283
+ }
284
+ },
285
+ {
286
+ "fact": {
287
+ "identifier": "fact.bookingsactual.bookingsamountusd",
288
+ "title": "Bookings Amount USD",
289
+ "folder": "Bookings Actual",
290
+ "dataType": "DECIMAL(15,5)"
291
+ }
292
+ },
293
+ {
294
+ "fact": {
295
+ "identifier": "fact.bookingsactual.bookingsunits",
296
+ "title": "Bookings Units",
297
+ "folder": "Bookings Actual",
298
+ "dataType": "DECIMAL(12,2)"
299
+ }
300
+ }
301
+ ],
302
+ "references": [
303
+ "dataset.productfamily",
304
+ "dataset.revenuetype",
305
+ "dataset.shiptocustomerregion",
306
+ "dataset.shiptocustomer",
307
+ "dataset.billtocustomer",
308
+ "dataset.hierarchy",
309
+ "I_FDATE_DIM.fiscalOct1_dataset.dt",
310
+ "dealtermactivation",
311
+ "dealtermexpiration",
312
+ "I_FISCAL_DATE_CSD.nuance",
313
+ "I_FISCAL_DATE_SSD.nuance"
314
+ ]
315
+ }
316
+ },
317
+ {
318
+ "dataset": {
319
+ "identifier": "dataset.bookingsforcact",
320
+ "title": "Bookings Forecast",
321
+ "anchor": {
322
+ "attribute": {
323
+ "identifier": "attr.bookingsforcact.factsof",
324
+ "title": "Records of Bookings Forecast",
325
+ "folder": "Bookings Forecast"
326
+ }
327
+ },
328
+ "attributes": [
329
+ {
330
+ "attribute": {
331
+ "identifier": "attr.bookingsforcact.comnpany",
332
+ "title": "Company",
333
+ "folder": "Bookings Forecast",
334
+ "labels": [
335
+ {
336
+ "label": {
337
+ "identifier": "label.bookingsforcact.comnpany",
338
+ "title": "Company",
339
+ "type": "GDC.text",
340
+ "dataType": "VARCHAR(128)"
341
+ }
342
+ }
343
+ ]
344
+ }
345
+ },
346
+ {
347
+ "attribute": {
348
+ "identifier": "attr.bookingsforcact.version",
349
+ "title": "Version",
350
+ "folder": "Bookings Forecast",
351
+ "labels": [
352
+ {
353
+ "label": {
354
+ "identifier": "label.bookingsforcact.version",
355
+ "title": "Version",
356
+ "type": "GDC.text",
357
+ "dataType": "VARCHAR(128)"
358
+ }
359
+ }
360
+ ]
361
+ }
362
+ },
363
+ {
364
+ "attribute": {
365
+ "identifier": "attr.bookingsforcact.department",
366
+ "title": "Department",
367
+ "folder": "Bookings Forecast",
368
+ "labels": [
369
+ {
370
+ "label": {
371
+ "identifier": "label.bookingsforcact.department",
372
+ "title": "Department",
373
+ "type": "GDC.text",
374
+ "dataType": "VARCHAR(128)"
375
+ }
376
+ }
377
+ ]
378
+ }
379
+ },
380
+ {
381
+ "attribute": {
382
+ "identifier": "attr.bookingsforcact.type",
383
+ "title": "Type",
384
+ "folder": "Bookings Forecast",
385
+ "labels": [
386
+ {
387
+ "label": {
388
+ "identifier": "label.bookingsforcact.type",
389
+ "title": "Type",
390
+ "type": "GDC.text",
391
+ "dataType": "VARCHAR(128)"
392
+ }
393
+ }
394
+ ]
395
+ }
396
+ }
397
+ ],
398
+ "facts": [
399
+ {
400
+ "fact": {
401
+ "identifier": "fact.bookingsforcact.bookingsforecastusd",
402
+ "title": "Bookings Forecast USD",
403
+ "folder": "Bookings Forecast",
404
+ "dataType": "DECIMAL(12,2)"
405
+ }
406
+ }
407
+ ],
408
+ "references": [
409
+ "dataset.productfamily",
410
+ "dataset.revenuetype",
411
+ "dataset.shiptocustomerregion",
412
+ "dataset.shiptocustomerregion1",
413
+ "I_FDATE_DIM.fiscalOct1_dataset.dt"
414
+ ]
415
+ }
416
+ },
417
+ {
418
+ "dataset": {
419
+ "identifier": "dataset.productfamily",
420
+ "title": "Product Family",
421
+ "anchor": {
422
+ "attribute": {
423
+ "identifier": "attr.productfamily.productfamilyname",
424
+ "title": "Product Family #",
425
+ "folder": "Product Family",
426
+ "labels": [
427
+ {
428
+ "label": {
429
+ "identifier": "label.productfamily.productfamilyname",
430
+ "title": "Product Family #",
431
+ "type": "GDC.text",
432
+ "dataType": "VARCHAR(128)"
433
+ }
434
+ }
435
+ ]
436
+ }
437
+ },
438
+ "attributes": [
439
+ {
440
+ "attribute": {
441
+ "identifier": "attr.product.prodgen2",
442
+ "title": "LOB",
443
+ "folder": "Product Family",
444
+ "labels": [
445
+ {
446
+ "label": {
447
+ "identifier": "label.product.prodgen2",
448
+ "title": "LOB",
449
+ "type": "GDC.text",
450
+ "dataType": "VARCHAR(128)"
451
+ }
452
+ }
453
+ ],
454
+ "defaultLabel": "label.product.prodgen2"
455
+ }
456
+ },
457
+ {
458
+ "attribute": {
459
+ "identifier": "attr.product.prodgen5",
460
+ "title": "Prod Gen5",
461
+ "folder": "Product Family",
462
+ "labels": [
463
+ {
464
+ "label": {
465
+ "identifier": "label.product.prodgen5",
466
+ "title": "Prod Gen5",
467
+ "type": "GDC.text",
468
+ "dataType": "VARCHAR(128)"
469
+ }
470
+ }
471
+ ],
472
+ "defaultLabel": "label.product.prodgen5"
473
+ }
474
+ },
475
+ {
476
+ "attribute": {
477
+ "identifier": "attr.product.prodgen6",
478
+ "title": "Prod Gen6",
479
+ "folder": "Product Family",
480
+ "labels": [
481
+ {
482
+ "label": {
483
+ "identifier": "label.product.prodgen6",
484
+ "title": "Prod Gen6",
485
+ "type": "GDC.text",
486
+ "dataType": "VARCHAR(128)"
487
+ }
488
+ }
489
+ ],
490
+ "defaultLabel": "label.product.prodgen6"
491
+ }
492
+ },
493
+ {
494
+ "attribute": {
495
+ "identifier": "attr.product.prodgen7",
496
+ "title": "Prod Gen7",
497
+ "folder": "Product Family",
498
+ "labels": [
499
+ {
500
+ "label": {
501
+ "identifier": "label.product.prodgen7",
502
+ "title": "Prod Gen7",
503
+ "type": "GDC.text",
504
+ "dataType": "VARCHAR(128)"
505
+ }
506
+ }
507
+ ],
508
+ "defaultLabel": "label.product.prodgen7"
509
+ }
510
+ },
511
+ {
512
+ "attribute": {
513
+ "identifier": "attr.product.prodgen8",
514
+ "title": "Prod Gen8",
515
+ "folder": "Product Family",
516
+ "labels": [
517
+ {
518
+ "label": {
519
+ "identifier": "label.product.prodgen8",
520
+ "title": "Prod Gen8",
521
+ "type": "GDC.text",
522
+ "dataType": "VARCHAR(128)"
523
+ }
524
+ }
525
+ ],
526
+ "defaultLabel": "label.product.prodgen8"
527
+ }
528
+ },
529
+ {
530
+ "attribute": {
531
+ "identifier": "attr.product.businesssegments",
532
+ "title": "Division",
533
+ "folder": "Product Family",
534
+ "labels": [
535
+ {
536
+ "label": {
537
+ "identifier": "label.product.businesssegments",
538
+ "title": "Division",
539
+ "type": "GDC.text",
540
+ "dataType": "VARCHAR(128)"
541
+ }
542
+ }
543
+ ]
544
+ }
545
+ }
546
+ ]
547
+ }
548
+ },
549
+ {
550
+ "dataset": {
551
+ "identifier": "dataset.revenuetype",
552
+ "title": "Revenue Type",
553
+ "anchor": {
554
+ "attribute": {
555
+ "identifier": "attr.revenuetype.revenueaccount",
556
+ "title": "Revenue Account",
557
+ "folder": "Revenue Type",
558
+ "labels": [
559
+ {
560
+ "label": {
561
+ "identifier": "label.revenuetype.revenueaccount",
562
+ "title": "Revenue Account",
563
+ "type": "GDC.text",
564
+ "dataType": "VARCHAR(128)"
565
+ }
566
+ }
567
+ ]
568
+ }
569
+ },
570
+ "attributes": [
571
+ {
572
+ "attribute": {
573
+ "identifier": "attr.revenuetype.revenueaccountname",
574
+ "title": "Revenue Account Name",
575
+ "folder": "Revenue Type",
576
+ "labels": [
577
+ {
578
+ "label": {
579
+ "identifier": "label.revenuetype.revenueaccountname",
580
+ "title": "Revenue Account Name",
581
+ "type": "GDC.text",
582
+ "dataType": "VARCHAR(128)"
583
+ }
584
+ }
585
+ ]
586
+ }
587
+ },
588
+ {
589
+ "attribute": {
590
+ "identifier": "attr.revenuetype.accountrollup1",
591
+ "title": "Booking Type",
592
+ "folder": "Revenue Type",
593
+ "labels": [
594
+ {
595
+ "label": {
596
+ "identifier": "label.revenuetype.accountrollup1",
597
+ "title": "Booking Type",
598
+ "type": "GDC.text",
599
+ "dataType": "VARCHAR(128)"
600
+ }
601
+ }
602
+ ],
603
+ "defaultLabel": "label.revenuetype.accountrollup1"
604
+ }
605
+ },
606
+ {
607
+ "attribute": {
608
+ "identifier": "attr.revenuetype.accountrollup2",
609
+ "title": "Booking Type Detail",
610
+ "folder": "Revenue Type",
611
+ "labels": [
612
+ {
613
+ "label": {
614
+ "identifier": "label.revenuetype.accountrollup2",
615
+ "title": "Booking Type Detail",
616
+ "type": "GDC.text",
617
+ "dataType": "VARCHAR(128)"
618
+ }
619
+ }
620
+ ],
621
+ "defaultLabel": "label.revenuetype.accountrollup2"
622
+ }
623
+ }
624
+ ]
625
+ }
626
+ },
627
+ {
628
+ "dataset": {
629
+ "identifier": "dataset.shiptocustomerregion",
630
+ "title": "Ship to Customer Region",
631
+ "anchor": {
632
+ "attribute": {
633
+ "identifier": "attr.shiptocustomer.shiptocustomerregion",
634
+ "title": "Ship To Customer Region",
635
+ "folder": "Ship to Customer Region",
636
+ "labels": [
637
+ {
638
+ "label": {
639
+ "identifier": "label.shiptocustomer.shiptocustomerregion",
640
+ "title": "Ship To Customer Region",
641
+ "type": "GDC.text",
642
+ "dataType": "VARCHAR(128)"
643
+ }
644
+ }
645
+ ]
646
+ }
647
+ }
648
+ }
649
+ },
650
+ {
651
+ "dataset": {
652
+ "identifier": "dataset.shiptocustomerregion1",
653
+ "title": "Bill to Customer Region",
654
+ "anchor": {
655
+ "attribute": {
656
+ "identifier": "attr.shiptocustomer.shiptocustomerregion1",
657
+ "title": "Bill To Customer Region",
658
+ "folder": "Bill to Customer Region",
659
+ "labels": [
660
+ {
661
+ "label": {
662
+ "identifier": "label.shiptocustomer.shiptocustomerregion1",
663
+ "title": "Bill To Customer Region",
664
+ "type": "GDC.text",
665
+ "dataType": "VARCHAR(128)"
666
+ }
667
+ }
668
+ ]
669
+ }
670
+ }
671
+ }
672
+ },
673
+ {
674
+ "dataset": {
675
+ "identifier": "dataset.shiptocustomer",
676
+ "title": "Ship to Customer",
677
+ "anchor": {
678
+ "attribute": {
679
+ "identifier": "attr.shiptocustomer.shiptositeid",
680
+ "title": "Ship To Site Id",
681
+ "folder": "Ship to Customer",
682
+ "labels": [
683
+ {
684
+ "label": {
685
+ "identifier": "label.shiptocustomer.shiptositeid",
686
+ "title": "Ship To Site Id",
687
+ "type": "GDC.text",
688
+ "dataType": "VARCHAR(128)"
689
+ }
690
+ }
691
+ ]
692
+ }
693
+ },
694
+ "attributes": [
695
+ {
696
+ "attribute": {
697
+ "identifier": "attr.shiptocustomer.shiptoaddress1",
698
+ "title": "Ship To Address1",
699
+ "folder": "Ship to Customer",
700
+ "labels": [
701
+ {
702
+ "label": {
703
+ "identifier": "label.shiptocustomer.shiptoaddress1",
704
+ "title": "Ship To Address1",
705
+ "type": "GDC.text",
706
+ "dataType": "VARCHAR(128)"
707
+ }
708
+ }
709
+ ]
710
+ }
711
+ },
712
+ {
713
+ "attribute": {
714
+ "identifier": "attr.shiptocustomer.shiptoaddress2",
715
+ "title": "Ship To Address2",
716
+ "folder": "Ship to Customer",
717
+ "labels": [
718
+ {
719
+ "label": {
720
+ "identifier": "label.shiptocustomer.shiptoaddress2",
721
+ "title": "Ship To Address2",
722
+ "type": "GDC.text",
723
+ "dataType": "VARCHAR(128)"
724
+ }
725
+ }
726
+ ]
727
+ }
728
+ },
729
+ {
730
+ "attribute": {
731
+ "identifier": "attr.shiptocustomer.shiptoaddress3",
732
+ "title": "Ship To Address3",
733
+ "folder": "Ship to Customer",
734
+ "labels": [
735
+ {
736
+ "label": {
737
+ "identifier": "label.shiptocustomer.shiptoaddress3",
738
+ "title": "Ship To Address3",
739
+ "type": "GDC.text",
740
+ "dataType": "VARCHAR(128)"
741
+ }
742
+ }
743
+ ]
744
+ }
745
+ },
746
+ {
747
+ "attribute": {
748
+ "identifier": "attr.shiptocustomer.shiptocity",
749
+ "title": "Ship To City",
750
+ "folder": "Ship to Customer",
751
+ "labels": [
752
+ {
753
+ "label": {
754
+ "identifier": "label.shiptocustomer.shiptocity",
755
+ "title": "Ship To City",
756
+ "type": "GDC.text",
757
+ "dataType": "VARCHAR(128)"
758
+ }
759
+ }
760
+ ]
761
+ }
762
+ },
763
+ {
764
+ "attribute": {
765
+ "identifier": "attr.shiptocustomer.shiptostate",
766
+ "title": "Ship To State",
767
+ "folder": "Ship to Customer",
768
+ "labels": [
769
+ {
770
+ "label": {
771
+ "identifier": "label.shiptocustomer.shiptostate",
772
+ "title": "Ship To State",
773
+ "type": "GDC.text",
774
+ "dataType": "VARCHAR(128)"
775
+ }
776
+ }
777
+ ]
778
+ }
779
+ },
780
+ {
781
+ "attribute": {
782
+ "identifier": "attr.shiptocustomer.shiptocounty",
783
+ "title": "Ship To County",
784
+ "folder": "Ship to Customer",
785
+ "labels": [
786
+ {
787
+ "label": {
788
+ "identifier": "label.shiptocustomer.shiptocounty",
789
+ "title": "Ship To County",
790
+ "type": "GDC.text",
791
+ "dataType": "VARCHAR(128)"
792
+ }
793
+ }
794
+ ]
795
+ }
796
+ },
797
+ {
798
+ "attribute": {
799
+ "identifier": "attr.shiptocustomer.shiptocountry",
800
+ "title": "Ship To Country",
801
+ "folder": "Ship to Customer",
802
+ "labels": [
803
+ {
804
+ "label": {
805
+ "identifier": "label.shiptocustomer.shiptocountry",
806
+ "title": "Ship To Country",
807
+ "type": "GDC.text",
808
+ "dataType": "VARCHAR(128)"
809
+ }
810
+ }
811
+ ]
812
+ }
813
+ },
814
+ {
815
+ "attribute": {
816
+ "identifier": "attr.shiptocustomer.shiptoprovince",
817
+ "title": "Ship To Province",
818
+ "folder": "Ship to Customer",
819
+ "labels": [
820
+ {
821
+ "label": {
822
+ "identifier": "label.shiptocustomer.shiptoprovince",
823
+ "title": "Ship To Province",
824
+ "type": "GDC.text",
825
+ "dataType": "VARCHAR(128)"
826
+ }
827
+ }
828
+ ]
829
+ }
830
+ },
831
+ {
832
+ "attribute": {
833
+ "identifier": "attr.shiptocustomer.shiptopostalcode",
834
+ "title": "Ship To Postal Code",
835
+ "folder": "Ship to Customer",
836
+ "labels": [
837
+ {
838
+ "label": {
839
+ "identifier": "label.shiptocustomer.shiptopostalcode",
840
+ "title": "Ship To Postal Code",
841
+ "type": "GDC.text",
842
+ "dataType": "VARCHAR(128)"
843
+ }
844
+ }
845
+ ]
846
+ }
847
+ },
848
+ {
849
+ "attribute": {
850
+ "identifier": "attr.shiptocustomer.shiptocustomername",
851
+ "title": "Ship To Customer Name",
852
+ "folder": "Ship to Customer",
853
+ "labels": [
854
+ {
855
+ "label": {
856
+ "identifier": "label.shiptocustomer.shiptocustomername",
857
+ "title": "Ship To Customer Name",
858
+ "type": "GDC.text",
859
+ "dataType": "VARCHAR(128)"
860
+ }
861
+ }
862
+ ]
863
+ }
864
+ },
865
+ {
866
+ "attribute": {
867
+ "identifier": "attr.shiptocustomer.shiptocustomernumber",
868
+ "title": "Ship To Customer Number",
869
+ "folder": "Ship to Customer",
870
+ "labels": [
871
+ {
872
+ "label": {
873
+ "identifier": "label.shiptocustomer.shiptocustomernumber",
874
+ "title": "Ship To Customer Number",
875
+ "type": "GDC.text",
876
+ "dataType": "VARCHAR(128)"
877
+ }
878
+ }
879
+ ]
880
+ }
881
+ },
882
+ {
883
+ "attribute": {
884
+ "identifier": "attr.shiptocustomer.shiptoglobalcustomerid",
885
+ "title": "Ship To Global Customer Id",
886
+ "folder": "Ship to Customer",
887
+ "labels": [
888
+ {
889
+ "label": {
890
+ "identifier": "label.shiptocustomer.shiptoglobalcustomerid",
891
+ "title": "Ship To Global Customer Id",
892
+ "type": "GDC.text",
893
+ "dataType": "VARCHAR(128)"
894
+ }
895
+ }
896
+ ]
897
+ }
898
+ },
899
+ {
900
+ "attribute": {
901
+ "identifier": "attr.shiptocustomer.shiptoglobalcustomername",
902
+ "title": "Ship To Global Customer Name",
903
+ "folder": "Ship to Customer",
904
+ "labels": [
905
+ {
906
+ "label": {
907
+ "identifier": "label.shiptocustomer.shiptoglobalcustomername",
908
+ "title": "Ship To Global Customer Name",
909
+ "type": "GDC.text",
910
+ "dataType": "VARCHAR(128)"
911
+ }
912
+ }
913
+ ]
914
+ }
915
+ },
916
+ {
917
+ "attribute": {
918
+ "identifier": "attr.shiptocustomer.shiptohimssid",
919
+ "title": "Ship To HIMSS Id",
920
+ "folder": "Ship to Customer",
921
+ "labels": [
922
+ {
923
+ "label": {
924
+ "identifier": "label.shiptocustomer.shiptohimssid",
925
+ "title": "Ship To HIMSS Id",
926
+ "type": "GDC.text",
927
+ "dataType": "VARCHAR(128)"
928
+ }
929
+ }
930
+ ],
931
+ "defaultLabel": "label.shiptocustomer.shiptohimssid"
932
+ }
933
+ },
934
+ {
935
+ "attribute": {
936
+ "identifier": "attr.shiptocustomer.shiptohimssname",
937
+ "title": "Ship To HIMSS Name",
938
+ "folder": "Ship to Customer",
939
+ "labels": [
940
+ {
941
+ "label": {
942
+ "identifier": "label.shiptocustomer.shiptohimssname",
943
+ "title": "Ship To HIMSS Name",
944
+ "type": "GDC.text",
945
+ "dataType": "VARCHAR(128)"
946
+ }
947
+ }
948
+ ],
949
+ "defaultLabel": "label.shiptocustomer.shiptohimssname"
950
+ }
951
+ },
952
+ {
953
+ "attribute": {
954
+ "identifier": "attr.shiptocustomer.shiptohimssparentid",
955
+ "title": "Ship To HIMSS Parent Id",
956
+ "folder": "Ship to Customer",
957
+ "labels": [
958
+ {
959
+ "label": {
960
+ "identifier": "label.shiptocustomer.shiptohimssparentid",
961
+ "title": "Ship To HIMSS Parent Id",
962
+ "type": "GDC.text",
963
+ "dataType": "VARCHAR(128)"
964
+ }
965
+ }
966
+ ],
967
+ "defaultLabel": "label.shiptocustomer.shiptohimssparentid"
968
+ }
969
+ },
970
+ {
971
+ "attribute": {
972
+ "identifier": "attr.shiptocustomer.shiptohimssparentname",
973
+ "title": "Ship To HIMSS Parent Name",
974
+ "folder": "Ship to Customer",
975
+ "labels": [
976
+ {
977
+ "label": {
978
+ "identifier": "label.shiptocustomer.shiptohimssparentname",
979
+ "title": "Ship To HIMSS Parent Name",
980
+ "type": "GDC.text",
981
+ "dataType": "VARCHAR(128)"
982
+ }
983
+ }
984
+ ],
985
+ "defaultLabel": "label.shiptocustomer.shiptohimssparentname"
986
+ }
987
+ },
988
+ {
989
+ "attribute": {
990
+ "identifier": "attr.shiptocustomer.shiptoduns",
991
+ "title": "Ship To DUNS Number",
992
+ "folder": "Ship to Customer",
993
+ "labels": [
994
+ {
995
+ "label": {
996
+ "identifier": "label.shiptocustomer.shiptoduns",
997
+ "title": "Ship To DUNS Number",
998
+ "type": "GDC.text",
999
+ "dataType": "VARCHAR(128)"
1000
+ }
1001
+ }
1002
+ ]
1003
+ }
1004
+ },
1005
+ {
1006
+ "attribute": {
1007
+ "identifier": "attr.shiptocustomer.shiptocategorycode",
1008
+ "title": "Ship To Category Code",
1009
+ "folder": "Z - Under Development",
1010
+ "labels": [
1011
+ {
1012
+ "label": {
1013
+ "identifier": "label.shiptocustomer.shiptocategorycode",
1014
+ "title": "Ship To Category Code",
1015
+ "type": "GDC.text",
1016
+ "dataType": "VARCHAR(128)"
1017
+ }
1018
+ }
1019
+ ],
1020
+ "defaultLabel": "label.shiptocustomer.shiptocategorycode"
1021
+ }
1022
+ },
1023
+ {
1024
+ "attribute": {
1025
+ "identifier": "attr.shiptocustomer.shiptofacilitytype",
1026
+ "title": "Ship To Facility Type",
1027
+ "folder": "Ship to Customer",
1028
+ "labels": [
1029
+ {
1030
+ "label": {
1031
+ "identifier": "label.shiptocustomer.shiptofacilitytype",
1032
+ "title": "Ship To Facility Type",
1033
+ "type": "GDC.text",
1034
+ "dataType": "VARCHAR(128)"
1035
+ }
1036
+ }
1037
+ ]
1038
+ }
1039
+ },
1040
+ {
1041
+ "attribute": {
1042
+ "identifier": "attr.shiptocustomer.shiptoaccountid",
1043
+ "title": "Ship To Account Id",
1044
+ "folder": "Ship to Customer",
1045
+ "labels": [
1046
+ {
1047
+ "label": {
1048
+ "identifier": "label.shiptocustomer.shiptoaccountid",
1049
+ "title": "Ship To Account Id",
1050
+ "type": "GDC.text",
1051
+ "dataType": "VARCHAR(128)"
1052
+ }
1053
+ }
1054
+ ]
1055
+ }
1056
+ },
1057
+ {
1058
+ "attribute": {
1059
+ "identifier": "attr.shiptocustomersubregion.subregionname",
1060
+ "title": "Ship To Customer Sub Region",
1061
+ "folder": "Ship to Customer",
1062
+ "labels": [
1063
+ {
1064
+ "label": {
1065
+ "identifier": "label.shiptocustomersubregion.subregionname",
1066
+ "title": "Ship To Sub Region",
1067
+ "type": "GDC.text",
1068
+ "dataType": "VARCHAR(128)"
1069
+ }
1070
+ }
1071
+ ]
1072
+ }
1073
+ },
1074
+ {
1075
+ "attribute": {
1076
+ "identifier": "attr.shiptocustomer.shiptositenumber",
1077
+ "title": "Ship To Site Number",
1078
+ "folder": "Ship to Customer",
1079
+ "labels": [
1080
+ {
1081
+ "label": {
1082
+ "identifier": "label.shiptocustomer.shiptositenumber",
1083
+ "title": "Ship To Site Number",
1084
+ "type": "GDC.text",
1085
+ "dataType": "VARCHAR(128)"
1086
+ }
1087
+ }
1088
+ ]
1089
+ }
1090
+ }
1091
+ ],
1092
+ "references": [
1093
+ "dataset.shiptopartnergrouping"
1094
+ ]
1095
+ }
1096
+ },
1097
+ {
1098
+ "dataset": {
1099
+ "identifier": "dataset.billtocustomer",
1100
+ "title": "Bill To Customer",
1101
+ "anchor": {
1102
+ "attribute": {
1103
+ "identifier": "attr.billtocustomer.billtositeid",
1104
+ "title": "Bill To Site Id",
1105
+ "folder": "Bill to Customer",
1106
+ "labels": [
1107
+ {
1108
+ "label": {
1109
+ "identifier": "label.billtocustomer.billtositeid",
1110
+ "title": "Bill To Site Id",
1111
+ "type": "GDC.text",
1112
+ "dataType": "VARCHAR(128)"
1113
+ }
1114
+ }
1115
+ ]
1116
+ }
1117
+ },
1118
+ "attributes": [
1119
+ {
1120
+ "attribute": {
1121
+ "identifier": "attr.billtocustomer.billtoaddress1",
1122
+ "title": "Bill To Address1",
1123
+ "folder": "Bill to Customer",
1124
+ "labels": [
1125
+ {
1126
+ "label": {
1127
+ "identifier": "label.billtocustomer.billtoaddress1",
1128
+ "title": "Bill To Address1",
1129
+ "type": "GDC.text",
1130
+ "dataType": "VARCHAR(128)"
1131
+ }
1132
+ }
1133
+ ]
1134
+ }
1135
+ },
1136
+ {
1137
+ "attribute": {
1138
+ "identifier": "attr.billtocustomer.billtoaddress2",
1139
+ "title": "Bill To Address2",
1140
+ "folder": "Bill to Customer",
1141
+ "labels": [
1142
+ {
1143
+ "label": {
1144
+ "identifier": "label.billtocustomer.billtoaddress2",
1145
+ "title": "Bill To Address2",
1146
+ "type": "GDC.text",
1147
+ "dataType": "VARCHAR(128)"
1148
+ }
1149
+ }
1150
+ ]
1151
+ }
1152
+ },
1153
+ {
1154
+ "attribute": {
1155
+ "identifier": "attr.billtocustomer.billtoaddress3",
1156
+ "title": "Bill To Address3",
1157
+ "folder": "Bill to Customer",
1158
+ "labels": [
1159
+ {
1160
+ "label": {
1161
+ "identifier": "label.billtocustomer.billtoaddress3",
1162
+ "title": "Bill To Address3",
1163
+ "type": "GDC.text",
1164
+ "dataType": "VARCHAR(128)"
1165
+ }
1166
+ }
1167
+ ]
1168
+ }
1169
+ },
1170
+ {
1171
+ "attribute": {
1172
+ "identifier": "attr.billtocustomer.billtocity",
1173
+ "title": "Bill To City",
1174
+ "folder": "Bill to Customer",
1175
+ "labels": [
1176
+ {
1177
+ "label": {
1178
+ "identifier": "label.billtocustomer.billtocity",
1179
+ "title": "Bill To City",
1180
+ "type": "GDC.text",
1181
+ "dataType": "VARCHAR(128)"
1182
+ }
1183
+ }
1184
+ ]
1185
+ }
1186
+ },
1187
+ {
1188
+ "attribute": {
1189
+ "identifier": "attr.billtocustomer.billtostate",
1190
+ "title": "Bill To State",
1191
+ "folder": "Bill to Customer",
1192
+ "labels": [
1193
+ {
1194
+ "label": {
1195
+ "identifier": "label.billtocustomer.billtostate",
1196
+ "title": "Bill To State",
1197
+ "type": "GDC.text",
1198
+ "dataType": "VARCHAR(128)"
1199
+ }
1200
+ }
1201
+ ]
1202
+ }
1203
+ },
1204
+ {
1205
+ "attribute": {
1206
+ "identifier": "attr.billtocustomer.billtocounty",
1207
+ "title": "Bill To County",
1208
+ "folder": "Bill to Customer",
1209
+ "labels": [
1210
+ {
1211
+ "label": {
1212
+ "identifier": "label.billtocustomer.billtocounty",
1213
+ "title": "Bill To County",
1214
+ "type": "GDC.text",
1215
+ "dataType": "VARCHAR(128)"
1216
+ }
1217
+ }
1218
+ ]
1219
+ }
1220
+ },
1221
+ {
1222
+ "attribute": {
1223
+ "identifier": "attr.billtocustomer.billtocountry",
1224
+ "title": "Bill To Country",
1225
+ "folder": "Bill to Customer",
1226
+ "labels": [
1227
+ {
1228
+ "label": {
1229
+ "identifier": "label.billtocustomer.billtocountry",
1230
+ "title": "Bill To Country",
1231
+ "type": "GDC.text",
1232
+ "dataType": "VARCHAR(128)"
1233
+ }
1234
+ }
1235
+ ]
1236
+ }
1237
+ },
1238
+ {
1239
+ "attribute": {
1240
+ "identifier": "attr.billtocustomer.billtoprovince",
1241
+ "title": "Bill To Province",
1242
+ "folder": "Bill to Customer",
1243
+ "labels": [
1244
+ {
1245
+ "label": {
1246
+ "identifier": "label.billtocustomer.billtoprovince",
1247
+ "title": "Bill To Province",
1248
+ "type": "GDC.text",
1249
+ "dataType": "VARCHAR(128)"
1250
+ }
1251
+ }
1252
+ ]
1253
+ }
1254
+ },
1255
+ {
1256
+ "attribute": {
1257
+ "identifier": "attr.billtocustomer.billtopostalcode",
1258
+ "title": "Bill To Postal Code",
1259
+ "folder": "Bill to Customer",
1260
+ "labels": [
1261
+ {
1262
+ "label": {
1263
+ "identifier": "label.billtocustomer.billtopostalcode",
1264
+ "title": "Bill To Postal Code",
1265
+ "type": "GDC.text",
1266
+ "dataType": "VARCHAR(128)"
1267
+ }
1268
+ }
1269
+ ],
1270
+ "defaultLabel": "label.billtocustomer.billtopostalcode"
1271
+ }
1272
+ },
1273
+ {
1274
+ "attribute": {
1275
+ "identifier": "attr.billtocustomer.billtocustomername",
1276
+ "title": "Bill To Customer Name",
1277
+ "folder": "Bill to Customer",
1278
+ "labels": [
1279
+ {
1280
+ "label": {
1281
+ "identifier": "label.billtocustomer.billtocustomername",
1282
+ "title": "Bill To Customer Name",
1283
+ "type": "GDC.text",
1284
+ "dataType": "VARCHAR(128)"
1285
+ }
1286
+ }
1287
+ ]
1288
+ }
1289
+ },
1290
+ {
1291
+ "attribute": {
1292
+ "identifier": "attr.billtocustomer.billtocustomernumber",
1293
+ "title": "Bill To Customer Number",
1294
+ "folder": "Bill to Customer",
1295
+ "labels": [
1296
+ {
1297
+ "label": {
1298
+ "identifier": "label.billtocustomer.billtocustomernumber",
1299
+ "title": "Bill To Customer Number",
1300
+ "type": "GDC.text",
1301
+ "dataType": "VARCHAR(128)"
1302
+ }
1303
+ }
1304
+ ]
1305
+ }
1306
+ },
1307
+ {
1308
+ "attribute": {
1309
+ "identifier": "attr.billtocustomer.billtoglobalcustomerid",
1310
+ "title": "Bill To Global Customer Id",
1311
+ "folder": "Bill to Customer",
1312
+ "labels": [
1313
+ {
1314
+ "label": {
1315
+ "identifier": "label.billtocustomer.billtoglobalcustomerid",
1316
+ "title": "Bill To Global Customer Id",
1317
+ "type": "GDC.text",
1318
+ "dataType": "VARCHAR(128)"
1319
+ }
1320
+ }
1321
+ ]
1322
+ }
1323
+ },
1324
+ {
1325
+ "attribute": {
1326
+ "identifier": "attr.billtocustomer.billtoglobalcustomername",
1327
+ "title": "Bill To Global Customer Name",
1328
+ "folder": "Bill to Customer",
1329
+ "labels": [
1330
+ {
1331
+ "label": {
1332
+ "identifier": "label.billtocustomer.billtoglobalcustomername",
1333
+ "title": "Bill To Global Customer Name",
1334
+ "type": "GDC.text",
1335
+ "dataType": "VARCHAR(128)"
1336
+ }
1337
+ }
1338
+ ]
1339
+ }
1340
+ },
1341
+ {
1342
+ "attribute": {
1343
+ "identifier": "attr.billtocustomer.billtohimssid",
1344
+ "title": "Bill To HIMSS Id",
1345
+ "folder": "Bill to Customer",
1346
+ "labels": [
1347
+ {
1348
+ "label": {
1349
+ "identifier": "label.billtocustomer.billtohimssid",
1350
+ "title": "Bill To HIMSS Id",
1351
+ "type": "GDC.text",
1352
+ "dataType": "VARCHAR(128)"
1353
+ }
1354
+ }
1355
+ ],
1356
+ "defaultLabel": "label.billtocustomer.billtohimssid"
1357
+ }
1358
+ },
1359
+ {
1360
+ "attribute": {
1361
+ "identifier": "attr.billtocustomer.billtohimssname",
1362
+ "title": "Bill To HIMSS Name",
1363
+ "folder": "Bill to Customer",
1364
+ "labels": [
1365
+ {
1366
+ "label": {
1367
+ "identifier": "label.billtocustomer.billtohimssname",
1368
+ "title": "Bill To HIMSS Name",
1369
+ "type": "GDC.text",
1370
+ "dataType": "VARCHAR(128)"
1371
+ }
1372
+ }
1373
+ ],
1374
+ "defaultLabel": "label.billtocustomer.billtohimssname"
1375
+ }
1376
+ },
1377
+ {
1378
+ "attribute": {
1379
+ "identifier": "attr.billtocustomer.billtohimssparentid",
1380
+ "title": "Bill To HIMSS Parent Id",
1381
+ "folder": "Bill to Customer",
1382
+ "labels": [
1383
+ {
1384
+ "label": {
1385
+ "identifier": "label.billtocustomer.billtohimssparentid",
1386
+ "title": "Bill To HIMSS Parent Id",
1387
+ "type": "GDC.text",
1388
+ "dataType": "VARCHAR(128)"
1389
+ }
1390
+ }
1391
+ ],
1392
+ "defaultLabel": "label.billtocustomer.billtohimssparentid"
1393
+ }
1394
+ },
1395
+ {
1396
+ "attribute": {
1397
+ "identifier": "attr.billtocustomer.billtohimssparentname",
1398
+ "title": "Bill To HIMSS Parent Name",
1399
+ "folder": "Bill to Customer",
1400
+ "labels": [
1401
+ {
1402
+ "label": {
1403
+ "identifier": "label.billtocustomer.billtohimssparentname",
1404
+ "title": "Bill To HIMSS Parent Name",
1405
+ "type": "GDC.text",
1406
+ "dataType": "VARCHAR(128)"
1407
+ }
1408
+ }
1409
+ ],
1410
+ "defaultLabel": "label.billtocustomer.billtohimssparentname"
1411
+ }
1412
+ },
1413
+ {
1414
+ "attribute": {
1415
+ "identifier": "attr.billtocustomer.shiptodunsnumber",
1416
+ "title": "Bill To DUNS Number",
1417
+ "folder": "Bill to Customer",
1418
+ "labels": [
1419
+ {
1420
+ "label": {
1421
+ "identifier": "label.billtocustomer.shiptodunsnumber",
1422
+ "title": "Bill To DUNS Number",
1423
+ "type": "GDC.text",
1424
+ "dataType": "VARCHAR(128)"
1425
+ }
1426
+ }
1427
+ ],
1428
+ "defaultLabel": "label.billtocustomer.shiptodunsnumber"
1429
+ }
1430
+ },
1431
+ {
1432
+ "attribute": {
1433
+ "identifier": "attr.billtocustomer.billtocategorycode",
1434
+ "title": "Bill To Category Code",
1435
+ "folder": "Bill to Customer",
1436
+ "labels": [
1437
+ {
1438
+ "label": {
1439
+ "identifier": "label.billtocustomer.billtocategorycode",
1440
+ "title": "Bill To Category Code",
1441
+ "type": "GDC.text",
1442
+ "dataType": "VARCHAR(128)"
1443
+ }
1444
+ }
1445
+ ]
1446
+ }
1447
+ },
1448
+ {
1449
+ "attribute": {
1450
+ "identifier": "attr.billtocustomer.billtofacilitytype",
1451
+ "title": "Bill To Facility Type",
1452
+ "folder": "Bill to Customer",
1453
+ "labels": [
1454
+ {
1455
+ "label": {
1456
+ "identifier": "label.billtocustomer.billtofacilitytype",
1457
+ "title": "Bill To Facility Type",
1458
+ "type": "GDC.text",
1459
+ "dataType": "VARCHAR(128)"
1460
+ }
1461
+ }
1462
+ ]
1463
+ }
1464
+ },
1465
+ {
1466
+ "attribute": {
1467
+ "identifier": "attr.billtocustomer.shiptoaccountid",
1468
+ "title": "Bill to Account Id",
1469
+ "folder": "Bill to Customer",
1470
+ "labels": [
1471
+ {
1472
+ "label": {
1473
+ "identifier": "label.billtocustomer.shiptoaccountid",
1474
+ "title": "Bill to Account Id",
1475
+ "type": "GDC.text",
1476
+ "dataType": "VARCHAR(128)"
1477
+ }
1478
+ }
1479
+ ]
1480
+ }
1481
+ },
1482
+ {
1483
+ "attribute": {
1484
+ "identifier": "attr.billtocustomersubregion.subregionname",
1485
+ "title": "Bill To Customer Sub Region",
1486
+ "folder": "Bill to Customer",
1487
+ "labels": [
1488
+ {
1489
+ "label": {
1490
+ "identifier": "label.billtocustomersubregion.subregionname",
1491
+ "title": "Bill To Sub Region",
1492
+ "type": "GDC.text",
1493
+ "dataType": "VARCHAR(128)"
1494
+ }
1495
+ }
1496
+ ]
1497
+ }
1498
+ },
1499
+ {
1500
+ "attribute": {
1501
+ "identifier": "attr.billtocustomer.billtositenumber",
1502
+ "title": "Bill To Site Number",
1503
+ "folder": "Bill to Customer",
1504
+ "labels": [
1505
+ {
1506
+ "label": {
1507
+ "identifier": "label.billtocustomer.billtositenumber",
1508
+ "title": "Bill To Site Number",
1509
+ "type": "GDC.text",
1510
+ "dataType": "VARCHAR(128)"
1511
+ }
1512
+ }
1513
+ ]
1514
+ }
1515
+ }
1516
+ ],
1517
+ "references": [
1518
+ "dataset.shiptocustomerregion1",
1519
+ "dataset.billtopartnergrouping"
1520
+ ]
1521
+ }
1522
+ },
1523
+ {
1524
+ "dataset": {
1525
+ "identifier": "dataset.oracleebsreports",
1526
+ "title": "Oracle EBS Reports",
1527
+ "anchor": {
1528
+ "attribute": {
1529
+ "identifier": "attr.oracleebsreports.factsof",
1530
+ "title": "Records of Oracle EBS Reports"
1531
+ }
1532
+ },
1533
+ "attributes": [
1534
+ {
1535
+ "attribute": {
1536
+ "identifier": "attr.oracleebsreports.dataset",
1537
+ "title": "Dataset Name",
1538
+ "labels": [
1539
+ {
1540
+ "label": {
1541
+ "identifier": "label.oracleebsreports.dataset",
1542
+ "title": "Dataset Name",
1543
+ "type": "GDC.text",
1544
+ "dataType": "VARCHAR(128)"
1545
+ }
1546
+ }
1547
+ ]
1548
+ }
1549
+ },
1550
+ {
1551
+ "attribute": {
1552
+ "identifier": "attr.oracleebsreports.reportname",
1553
+ "title": "Report Name",
1554
+ "labels": [
1555
+ {
1556
+ "label": {
1557
+ "identifier": "label.oracleebsreports.reportname",
1558
+ "title": "Report Name",
1559
+ "type": "GDC.text",
1560
+ "dataType": "VARCHAR(128)"
1561
+ }
1562
+ }
1563
+ ]
1564
+ }
1565
+ },
1566
+ {
1567
+ "attribute": {
1568
+ "identifier": "attr.oracleebsreports.reportattribute",
1569
+ "title": "Report Attribute",
1570
+ "labels": [
1571
+ {
1572
+ "label": {
1573
+ "identifier": "label.oracleebsreports.reportattribute",
1574
+ "title": "Report Attribute",
1575
+ "type": "GDC.text",
1576
+ "dataType": "VARCHAR(128)"
1577
+ }
1578
+ }
1579
+ ]
1580
+ }
1581
+ }
1582
+ ],
1583
+ "facts": [
1584
+ {
1585
+ "fact": {
1586
+ "identifier": "fact.oracleebsreports.reportvalue",
1587
+ "title": "Report Value",
1588
+ "dataType": "DECIMAL(15,2)"
1589
+ }
1590
+ }
1591
+ ],
1592
+ "references": [
1593
+ "dataset.productfamily",
1594
+ "dataset.revenuetype",
1595
+ "dataset.shiptocustomerregion",
1596
+ "I_FDATE_DIM.fiscalOct1_dataset.dt"
1597
+ ]
1598
+ }
1599
+ },
1600
+ {
1601
+ "dataset": {
1602
+ "identifier": "dataset.parentplanbookings",
1603
+ "title": "Parent Plan Bookings",
1604
+ "anchor": {
1605
+ "attribute": {
1606
+ "identifier": "attr.parentplanbookings.factsof",
1607
+ "title": "Records of Parent Plan Bookings",
1608
+ "folder": "Parent Plan Bookings"
1609
+ }
1610
+ },
1611
+ "facts": [
1612
+ {
1613
+ "fact": {
1614
+ "identifier": "fact.parentplanbookings.planbookingamount",
1615
+ "title": "Plan Booking Amount",
1616
+ "folder": "Parent Plan Bookings",
1617
+ "dataType": "DECIMAL(12,2)"
1618
+ }
1619
+ }
1620
+ ],
1621
+ "references": [
1622
+ "dataset.productfamily",
1623
+ "dataset.shiptocustomerregion",
1624
+ "dataset.shiptocustomerregion1",
1625
+ "dataset.billtopartnergrouping",
1626
+ "dataset.shiptopartnergrouping",
1627
+ "I_FDATE_DIM.fiscalOct1_dataset.dt"
1628
+ ]
1629
+ }
1630
+ },
1631
+ {
1632
+ "dataset": {
1633
+ "identifier": "dataset.billtopartnergrouping",
1634
+ "title": "Bill To Partner Grouping",
1635
+ "anchor": {
1636
+ "attribute": {
1637
+ "identifier": "attr.billtopartnergrouping.billtoaccountid",
1638
+ "title": "Bill To Account Id",
1639
+ "folder": "Bill To Partner Grouping",
1640
+ "labels": [
1641
+ {
1642
+ "label": {
1643
+ "identifier": "label.billtopartnergrouping.billtoaccountid",
1644
+ "title": "Bill To Account Id",
1645
+ "type": "GDC.text",
1646
+ "dataType": "VARCHAR(128)"
1647
+ }
1648
+ }
1649
+ ]
1650
+ }
1651
+ },
1652
+ "attributes": [
1653
+ {
1654
+ "attribute": {
1655
+ "identifier": "attr.billtopartnergrouping.billtopartnername",
1656
+ "title": "Bill To Partner Name",
1657
+ "folder": "Bill To Partner Grouping",
1658
+ "labels": [
1659
+ {
1660
+ "label": {
1661
+ "identifier": "label.billtopartnergrouping.billtopartnername",
1662
+ "title": "Bill To Partner Name",
1663
+ "type": "GDC.text",
1664
+ "dataType": "VARCHAR(128)"
1665
+ }
1666
+ }
1667
+ ]
1668
+ }
1669
+ },
1670
+ {
1671
+ "attribute": {
1672
+ "identifier": "attr.billtopartnergrouping.billtopartnerrole",
1673
+ "title": "Bill To Partner Role",
1674
+ "folder": "Bill To Partner Grouping",
1675
+ "labels": [
1676
+ {
1677
+ "label": {
1678
+ "identifier": "label.billtopartnergrouping.billtopartnerrole",
1679
+ "title": "Bill To Partner Role",
1680
+ "type": "GDC.text",
1681
+ "dataType": "VARCHAR(128)"
1682
+ }
1683
+ }
1684
+ ]
1685
+ }
1686
+ },
1687
+ {
1688
+ "attribute": {
1689
+ "identifier": "attr.billtopartnergrouping.billtopartnerroledescription",
1690
+ "title": "Bill To Partner Role Description",
1691
+ "folder": "Bill To Partner Grouping",
1692
+ "labels": [
1693
+ {
1694
+ "label": {
1695
+ "identifier": "label.billtopartnergrouping.billtopartnerroledescription",
1696
+ "title": "Bill To Partner Role Description",
1697
+ "type": "GDC.text",
1698
+ "dataType": "VARCHAR(128)"
1699
+ }
1700
+ }
1701
+ ]
1702
+ }
1703
+ },
1704
+ {
1705
+ "attribute": {
1706
+ "identifier": "attr.billtopartnergrouping.billtopartnerfamily",
1707
+ "title": "Bill To Partner Family",
1708
+ "folder": "Bill To Partner Grouping",
1709
+ "labels": [
1710
+ {
1711
+ "label": {
1712
+ "identifier": "label.billtopartnergrouping.billtopartnerfamily",
1713
+ "title": "Bill To Partner Family",
1714
+ "type": "GDC.text",
1715
+ "dataType": "VARCHAR(128)"
1716
+ }
1717
+ }
1718
+ ]
1719
+ }
1720
+ },
1721
+ {
1722
+ "attribute": {
1723
+ "identifier": "attr.billtopartnergrouping.billtopartnerfamilydescription",
1724
+ "title": "Bill To Partner Family Description",
1725
+ "folder": "Bill To Partner Grouping",
1726
+ "labels": [
1727
+ {
1728
+ "label": {
1729
+ "identifier": "label.billtopartnergrouping.billtopartnerfamilydescription",
1730
+ "title": "Bill To Partner Family Description",
1731
+ "type": "GDC.text",
1732
+ "dataType": "VARCHAR(128)"
1733
+ }
1734
+ }
1735
+ ]
1736
+ }
1737
+ },
1738
+ {
1739
+ "attribute": {
1740
+ "identifier": "attr.billtopartnergrouping.billtopartnergroup",
1741
+ "title": "Bill To Parent Group",
1742
+ "folder": "Bill To Partner Grouping",
1743
+ "labels": [
1744
+ {
1745
+ "label": {
1746
+ "identifier": "label.billtopartnergrouping.billtopartnergroup",
1747
+ "title": "Bill To Parent Group",
1748
+ "type": "GDC.text",
1749
+ "dataType": "VARCHAR(128)"
1750
+ }
1751
+ }
1752
+ ]
1753
+ }
1754
+ },
1755
+ {
1756
+ "attribute": {
1757
+ "identifier": "attr.billtopartnergrouping.billtopartnergroupdescription",
1758
+ "title": "Bill To Parent Group Description",
1759
+ "folder": "Bill To Partner Grouping",
1760
+ "labels": [
1761
+ {
1762
+ "label": {
1763
+ "identifier": "label.billtopartnergrouping.billtopartnergroupdescription",
1764
+ "title": "Bill To Parent Group Description",
1765
+ "type": "GDC.text",
1766
+ "dataType": "VARCHAR(128)"
1767
+ }
1768
+ }
1769
+ ]
1770
+ }
1771
+ }
1772
+ ]
1773
+ }
1774
+ },
1775
+ {
1776
+ "dataset": {
1777
+ "identifier": "dataset.shiptopartnergrouping",
1778
+ "title": "Ship To Partner Grouping",
1779
+ "anchor": {
1780
+ "attribute": {
1781
+ "identifier": "attr.shiptopartnergrouping.shiptoaccountid",
1782
+ "title": "Ship To Account Id",
1783
+ "folder": "Ship To Partner Grouping",
1784
+ "labels": [
1785
+ {
1786
+ "label": {
1787
+ "identifier": "label.shiptopartnergrouping.shiptoaccountid",
1788
+ "title": "Ship To Account Id",
1789
+ "type": "GDC.text",
1790
+ "dataType": "VARCHAR(128)"
1791
+ }
1792
+ }
1793
+ ]
1794
+ }
1795
+ },
1796
+ "attributes": [
1797
+ {
1798
+ "attribute": {
1799
+ "identifier": "attr.shiptopartnergrouping.shiptopartnername",
1800
+ "title": "Ship To Partner Name",
1801
+ "folder": "Ship To Partner Grouping",
1802
+ "labels": [
1803
+ {
1804
+ "label": {
1805
+ "identifier": "label.shiptopartnergrouping.shiptopartnername",
1806
+ "title": "Ship To Partner Name",
1807
+ "type": "GDC.text",
1808
+ "dataType": "VARCHAR(128)"
1809
+ }
1810
+ }
1811
+ ]
1812
+ }
1813
+ },
1814
+ {
1815
+ "attribute": {
1816
+ "identifier": "attr.shiptopartnergrouping.shiptopartnerrole",
1817
+ "title": "Ship To Partner Role",
1818
+ "folder": "Ship To Partner Grouping",
1819
+ "labels": [
1820
+ {
1821
+ "label": {
1822
+ "identifier": "label.shiptopartnergrouping.shiptopartnerrole",
1823
+ "title": "Ship To Partner Role",
1824
+ "type": "GDC.text",
1825
+ "dataType": "VARCHAR(128)"
1826
+ }
1827
+ }
1828
+ ]
1829
+ }
1830
+ },
1831
+ {
1832
+ "attribute": {
1833
+ "identifier": "attr.shiptopartnergrouping.shiptopartnerroledescription",
1834
+ "title": "Ship To Partner Role Description",
1835
+ "folder": "Ship To Partner Grouping",
1836
+ "labels": [
1837
+ {
1838
+ "label": {
1839
+ "identifier": "label.shiptopartnergrouping.shiptopartnerroledescription",
1840
+ "title": "Ship To Partner Role Description",
1841
+ "type": "GDC.text",
1842
+ "dataType": "VARCHAR(128)"
1843
+ }
1844
+ }
1845
+ ]
1846
+ }
1847
+ },
1848
+ {
1849
+ "attribute": {
1850
+ "identifier": "attr.shiptopartnergrouping.shiptopartnerfamily",
1851
+ "title": "Ship To Partner Family",
1852
+ "folder": "Ship To Partner Grouping",
1853
+ "labels": [
1854
+ {
1855
+ "label": {
1856
+ "identifier": "label.shiptopartnergrouping.shiptopartnerfamily",
1857
+ "title": "Ship To Partner Family",
1858
+ "type": "GDC.text",
1859
+ "dataType": "VARCHAR(128)"
1860
+ }
1861
+ }
1862
+ ]
1863
+ }
1864
+ },
1865
+ {
1866
+ "attribute": {
1867
+ "identifier": "attr.shiptopartnergrouping.shiptopartnerfamilydescription",
1868
+ "title": "Ship To Partner Family Description",
1869
+ "folder": "Ship To Partner Grouping",
1870
+ "labels": [
1871
+ {
1872
+ "label": {
1873
+ "identifier": "label.shiptopartnergrouping.shiptopartnerfamilydescription",
1874
+ "title": "Ship To Partner Family Description",
1875
+ "type": "GDC.text",
1876
+ "dataType": "VARCHAR(128)"
1877
+ }
1878
+ }
1879
+ ]
1880
+ }
1881
+ },
1882
+ {
1883
+ "attribute": {
1884
+ "identifier": "attr.shiptopartnergrouping.shiptopartnergroup",
1885
+ "title": "Ship To Parent Group",
1886
+ "folder": "Ship To Partner Grouping",
1887
+ "labels": [
1888
+ {
1889
+ "label": {
1890
+ "identifier": "label.shiptopartnergrouping.shiptopartnergroup",
1891
+ "title": "Ship To Parent Group",
1892
+ "type": "GDC.text",
1893
+ "dataType": "VARCHAR(128)"
1894
+ }
1895
+ }
1896
+ ]
1897
+ }
1898
+ },
1899
+ {
1900
+ "attribute": {
1901
+ "identifier": "attr.shiptopartnergrouping.shiptopartnergroupdescription",
1902
+ "title": "Ship To Parent Group Description",
1903
+ "folder": "Ship To Partner Grouping",
1904
+ "labels": [
1905
+ {
1906
+ "label": {
1907
+ "identifier": "label.shiptopartnergrouping.shiptopartnergroupdescription",
1908
+ "title": "Ship To Parent Group Description",
1909
+ "type": "GDC.text",
1910
+ "dataType": "VARCHAR(128)"
1911
+ }
1912
+ }
1913
+ ]
1914
+ }
1915
+ }
1916
+ ]
1917
+ }
1918
+ },
1919
+ {
1920
+ "dataset": {
1921
+ "identifier": "dataset.refreshdate",
1922
+ "title": "RefreshDate",
1923
+ "anchor": {
1924
+ "attribute": {
1925
+ "identifier": "attr.dummy.lastrefreshdate",
1926
+ "title": "Last Refresh Date",
1927
+ "folder": "Z - Under Development",
1928
+ "labels": [
1929
+ {
1930
+ "label": {
1931
+ "identifier": "label.dummy.lastrefreshdate",
1932
+ "title": "Last Refresh Date",
1933
+ "type": "GDC.text",
1934
+ "dataType": "VARCHAR(128)"
1935
+ }
1936
+ }
1937
+ ]
1938
+ }
1939
+ }
1940
+ }
1941
+ },
1942
+ {
1943
+ "dataset": {
1944
+ "identifier": "dataset.hierarchy",
1945
+ "title": "Sales Hierarchy",
1946
+ "anchor": {
1947
+ "attribute": {
1948
+ "identifier": "attr.hierarchy.emailaddress",
1949
+ "title": "Sales Tier1 User Email Id",
1950
+ "folder": "Sales Hierarchy",
1951
+ "labels": [
1952
+ {
1953
+ "label": {
1954
+ "identifier": "label.hierarchy.emailaddress",
1955
+ "title": "Sales Tier1 User Email Id",
1956
+ "type": "GDC.text",
1957
+ "dataType": "VARCHAR(128)"
1958
+ }
1959
+ }
1960
+ ],
1961
+ "defaultLabel": "label.hierarchy.emailaddress"
1962
+ }
1963
+ },
1964
+ "attributes": [
1965
+ {
1966
+ "attribute": {
1967
+ "identifier": "attr.hierarchy.tier_1_user_id",
1968
+ "title": "Sales Tier1 User Id",
1969
+ "folder": "Z - Under Development",
1970
+ "labels": [
1971
+ {
1972
+ "label": {
1973
+ "identifier": "label.hierarchy.tier_1_user_id",
1974
+ "title": "Sales Tier1 User Id",
1975
+ "type": "GDC.text",
1976
+ "dataType": "VARCHAR(128)"
1977
+ }
1978
+ }
1979
+ ],
1980
+ "defaultLabel": "label.hierarchy.tier_1_user_id"
1981
+ }
1982
+ },
1983
+ {
1984
+ "attribute": {
1985
+ "identifier": "attr.hierarchy.tier_1_user_name",
1986
+ "title": "Sales Tier1 User",
1987
+ "folder": "Sales Hierarchy",
1988
+ "labels": [
1989
+ {
1990
+ "label": {
1991
+ "identifier": "label.hierarchy.tier_1_user_name",
1992
+ "title": "Sales Tier1 User",
1993
+ "type": "GDC.text",
1994
+ "dataType": "VARCHAR(128)"
1995
+ }
1996
+ }
1997
+ ],
1998
+ "defaultLabel": "label.hierarchy.tier_1_user_name"
1999
+ }
2000
+ },
2001
+ {
2002
+ "attribute": {
2003
+ "identifier": "attr.hierarchy.tier_1_role_user_concat",
2004
+ "title": "Sales Tier1 Role-User",
2005
+ "folder": "Sales Hierarchy",
2006
+ "labels": [
2007
+ {
2008
+ "label": {
2009
+ "identifier": "label.hierarchy.tier_1_role_user_concat",
2010
+ "title": "Sales Tier1 Role-User",
2011
+ "type": "GDC.text",
2012
+ "dataType": "VARCHAR(128)"
2013
+ }
2014
+ }
2015
+ ],
2016
+ "defaultLabel": "label.hierarchy.tier_1_role_user_concat"
2017
+ }
2018
+ },
2019
+ {
2020
+ "attribute": {
2021
+ "identifier": "attr.hierarchy.tier_2_role_user_concat",
2022
+ "title": "Sales Tier2 Role-User",
2023
+ "folder": "Sales Hierarchy",
2024
+ "labels": [
2025
+ {
2026
+ "label": {
2027
+ "identifier": "label.hierarchy.tier_2_role_user_concat",
2028
+ "title": "Sales Tier2 Role-User",
2029
+ "type": "GDC.text",
2030
+ "dataType": "VARCHAR(128)"
2031
+ }
2032
+ }
2033
+ ],
2034
+ "defaultLabel": "label.hierarchy.tier_2_role_user_concat"
2035
+ }
2036
+ },
2037
+ {
2038
+ "attribute": {
2039
+ "identifier": "attr.hierarchy.tier_3_role_user_concat",
2040
+ "title": "Sales Tier3 Role-User",
2041
+ "folder": "Sales Hierarchy",
2042
+ "labels": [
2043
+ {
2044
+ "label": {
2045
+ "identifier": "label.hierarchy.tier_3_role_user_concat",
2046
+ "title": "Sales Tier3 Role-User",
2047
+ "type": "GDC.text",
2048
+ "dataType": "VARCHAR(128)"
2049
+ }
2050
+ }
2051
+ ],
2052
+ "defaultLabel": "label.hierarchy.tier_3_role_user_concat"
2053
+ }
2054
+ },
2055
+ {
2056
+ "attribute": {
2057
+ "identifier": "attr.hierarchy.tier_4_role_user_concat",
2058
+ "title": "Sales Tier4 Role-User",
2059
+ "folder": "Sales Hierarchy",
2060
+ "labels": [
2061
+ {
2062
+ "label": {
2063
+ "identifier": "label.hierarchy.tier_4_role_user_concat",
2064
+ "title": "Sales Tier4 Role-User",
2065
+ "type": "GDC.text",
2066
+ "dataType": "VARCHAR(128)"
2067
+ }
2068
+ }
2069
+ ],
2070
+ "defaultLabel": "label.hierarchy.tier_4_role_user_concat"
2071
+ }
2072
+ },
2073
+ {
2074
+ "attribute": {
2075
+ "identifier": "attr.hierarchy.tier_5_role_user_concat",
2076
+ "title": "Sales Tier5 Role-User",
2077
+ "folder": "Sales Hierarchy",
2078
+ "labels": [
2079
+ {
2080
+ "label": {
2081
+ "identifier": "label.hierarchy.tier_5_role_user_concat",
2082
+ "title": "Sales Tier5 Role-User",
2083
+ "type": "GDC.text",
2084
+ "dataType": "VARCHAR(128)"
2085
+ }
2086
+ }
2087
+ ],
2088
+ "defaultLabel": "label.hierarchy.tier_5_role_user_concat"
2089
+ }
2090
+ },
2091
+ {
2092
+ "attribute": {
2093
+ "identifier": "attr.hierarchy.tier_6_role_user_concat",
2094
+ "title": "Sales Tier6 Role-User",
2095
+ "folder": "Sales Hierarchy",
2096
+ "labels": [
2097
+ {
2098
+ "label": {
2099
+ "identifier": "label.hierarchy.tier_6_role_user_concat",
2100
+ "title": "Sales Tier6 Role-User",
2101
+ "type": "GDC.text",
2102
+ "dataType": "VARCHAR(128)"
2103
+ }
2104
+ }
2105
+ ],
2106
+ "defaultLabel": "label.hierarchy.tier_6_role_user_concat"
2107
+ }
2108
+ },
2109
+ {
2110
+ "attribute": {
2111
+ "identifier": "attr.hierarchy.tier_7_role_user_concat",
2112
+ "title": "Sales Tier7 Role-User",
2113
+ "folder": "Sales Hierarchy",
2114
+ "labels": [
2115
+ {
2116
+ "label": {
2117
+ "identifier": "label.hierarchy.tier_7_role_user_concat",
2118
+ "title": "Sales Tier7 Role-User",
2119
+ "type": "GDC.text",
2120
+ "dataType": "VARCHAR(128)"
2121
+ }
2122
+ }
2123
+ ],
2124
+ "defaultLabel": "label.hierarchy.tier_7_role_user_concat"
2125
+ }
2126
+ },
2127
+ {
2128
+ "attribute": {
2129
+ "identifier": "attr.hierarchy.tier_1_user_tier",
2130
+ "title": "Sales User Tier",
2131
+ "folder": "Sales Hierarchy",
2132
+ "labels": [
2133
+ {
2134
+ "label": {
2135
+ "identifier": "label.hierarchy.tier_1_user_tier",
2136
+ "title": "Sales User Tier",
2137
+ "type": "GDC.text",
2138
+ "dataType": "VARCHAR(128)"
2139
+ }
2140
+ }
2141
+ ],
2142
+ "defaultLabel": "label.hierarchy.tier_1_user_tier"
2143
+ }
2144
+ },
2145
+ {
2146
+ "attribute": {
2147
+ "identifier": "attr.hierarchy.tier_1_role_name",
2148
+ "title": "Sales Tier2 Role",
2149
+ "folder": "Sales Hierarchy",
2150
+ "labels": [
2151
+ {
2152
+ "label": {
2153
+ "identifier": "label.hierarchy.tier_1_role_name",
2154
+ "title": "Sales Tier2 Role",
2155
+ "type": "GDC.text",
2156
+ "dataType": "VARCHAR(128)"
2157
+ }
2158
+ }
2159
+ ],
2160
+ "defaultLabel": "label.hierarchy.tier_1_role_name"
2161
+ }
2162
+ },
2163
+ {
2164
+ "attribute": {
2165
+ "identifier": "attr.hierarchy.tier_1_role_name1",
2166
+ "title": "Sales Tier3 Role",
2167
+ "folder": "Sales Hierarchy",
2168
+ "labels": [
2169
+ {
2170
+ "label": {
2171
+ "identifier": "label.hierarchy.tier_1_role_name1",
2172
+ "title": "Sales Tier3 Role",
2173
+ "type": "GDC.text",
2174
+ "dataType": "VARCHAR(128)"
2175
+ }
2176
+ }
2177
+ ],
2178
+ "defaultLabel": "label.hierarchy.tier_1_role_name1"
2179
+ }
2180
+ },
2181
+ {
2182
+ "attribute": {
2183
+ "identifier": "attr.hierarchy.tier_1_role_name2",
2184
+ "title": "Sales Tier4 Role",
2185
+ "folder": "Sales Hierarchy",
2186
+ "labels": [
2187
+ {
2188
+ "label": {
2189
+ "identifier": "label.hierarchy.tier_1_role_name2",
2190
+ "title": "Sales Tier4 Role",
2191
+ "type": "GDC.text",
2192
+ "dataType": "VARCHAR(128)"
2193
+ }
2194
+ }
2195
+ ],
2196
+ "defaultLabel": "label.hierarchy.tier_1_role_name2"
2197
+ }
2198
+ },
2199
+ {
2200
+ "attribute": {
2201
+ "identifier": "attr.hierarchy.tier_1_role_name3",
2202
+ "title": "Sales Tier5 Role",
2203
+ "folder": "Sales Hierarchy",
2204
+ "labels": [
2205
+ {
2206
+ "label": {
2207
+ "identifier": "label.hierarchy.tier_1_role_name3",
2208
+ "title": "Sales Tier5 Role",
2209
+ "type": "GDC.text",
2210
+ "dataType": "VARCHAR(128)"
2211
+ }
2212
+ }
2213
+ ],
2214
+ "defaultLabel": "label.hierarchy.tier_1_role_name3"
2215
+ }
2216
+ },
2217
+ {
2218
+ "attribute": {
2219
+ "identifier": "attr.hierarchy.tier_1_role_name4",
2220
+ "title": "Sales Tier6 Role",
2221
+ "folder": "Sales Hierarchy",
2222
+ "labels": [
2223
+ {
2224
+ "label": {
2225
+ "identifier": "label.hierarchy.tier_1_role_name4",
2226
+ "title": "Sales Tier6 Role",
2227
+ "type": "GDC.text",
2228
+ "dataType": "VARCHAR(128)"
2229
+ }
2230
+ }
2231
+ ],
2232
+ "defaultLabel": "label.hierarchy.tier_1_role_name4"
2233
+ }
2234
+ },
2235
+ {
2236
+ "attribute": {
2237
+ "identifier": "attr.hierarchy.tier_1_role_name5",
2238
+ "title": "Sales Tier7 Role",
2239
+ "folder": "Sales Hierarchy",
2240
+ "labels": [
2241
+ {
2242
+ "label": {
2243
+ "identifier": "label.hierarchy.tier_1_role_name5",
2244
+ "title": "Sales Tier7 Role",
2245
+ "type": "GDC.text",
2246
+ "dataType": "VARCHAR(128)"
2247
+ }
2248
+ }
2249
+ ],
2250
+ "defaultLabel": "label.hierarchy.tier_1_role_name5"
2251
+ }
2252
+ },
2253
+ {
2254
+ "attribute": {
2255
+ "identifier": "attr.hierarchy.tier_1_role_name6",
2256
+ "title": "Sales Tier1 Role",
2257
+ "folder": "Sales Hierarchy",
2258
+ "labels": [
2259
+ {
2260
+ "label": {
2261
+ "identifier": "label.hierarchy.tier_1_role_name6",
2262
+ "title": "Sales Tier1 Role",
2263
+ "type": "GDC.text",
2264
+ "dataType": "VARCHAR(128)"
2265
+ }
2266
+ }
2267
+ ],
2268
+ "defaultLabel": "label.hierarchy.tier_1_role_name6"
2269
+ }
2270
+ },
2271
+ {
2272
+ "attribute": {
2273
+ "identifier": "attr.hierarchy.salestier8roleuser",
2274
+ "title": "Sales Tier8 Role-User",
2275
+ "folder": "Sales Hierarchy",
2276
+ "labels": [
2277
+ {
2278
+ "label": {
2279
+ "identifier": "label.hierarchy.salestier8roleuser",
2280
+ "title": "Sales Tier8 Role-User",
2281
+ "type": "GDC.text",
2282
+ "dataType": "VARCHAR(128)"
2283
+ }
2284
+ }
2285
+ ],
2286
+ "defaultLabel": "label.hierarchy.salestier8roleuser"
2287
+ }
2288
+ },
2289
+ {
2290
+ "attribute": {
2291
+ "identifier": "attr.hierarchy.salestier9roleuser",
2292
+ "title": "Sales Tier9 Role-User",
2293
+ "folder": "Sales Hierarchy",
2294
+ "labels": [
2295
+ {
2296
+ "label": {
2297
+ "identifier": "label.hierarchy.salestier9roleuser",
2298
+ "title": "Sales Tier9 Role-User",
2299
+ "type": "GDC.text",
2300
+ "dataType": "VARCHAR(128)"
2301
+ }
2302
+ }
2303
+ ],
2304
+ "defaultLabel": "label.hierarchy.salestier9roleuser"
2305
+ }
2306
+ },
2307
+ {
2308
+ "attribute": {
2309
+ "identifier": "attr.hierarchy.salestier10roleuser",
2310
+ "title": "Sales Tier10 Role-User",
2311
+ "folder": "Sales Hierarchy",
2312
+ "labels": [
2313
+ {
2314
+ "label": {
2315
+ "identifier": "label.hierarchy.salestier10roleuser",
2316
+ "title": "Sales Tier10 Role-User",
2317
+ "type": "GDC.text",
2318
+ "dataType": "VARCHAR(128)"
2319
+ }
2320
+ }
2321
+ ],
2322
+ "defaultLabel": "label.hierarchy.salestier10roleuser"
2323
+ }
2324
+ },
2325
+ {
2326
+ "attribute": {
2327
+ "identifier": "attr.hierarchy.salestier11roleuser",
2328
+ "title": "Sales Tier11 Role-User",
2329
+ "folder": "Sales Hierarchy",
2330
+ "labels": [
2331
+ {
2332
+ "label": {
2333
+ "identifier": "label.hierarchy.salestier11roleuser",
2334
+ "title": "Sales Tier11 Role-User",
2335
+ "type": "GDC.text",
2336
+ "dataType": "VARCHAR(128)"
2337
+ }
2338
+ }
2339
+ ],
2340
+ "defaultLabel": "label.hierarchy.salestier11roleuser"
2341
+ }
2342
+ },
2343
+ {
2344
+ "attribute": {
2345
+ "identifier": "attr.hierarchy.salestier12roleuser",
2346
+ "title": "Sales Tier12 Role-User",
2347
+ "folder": "Sales Hierarchy",
2348
+ "labels": [
2349
+ {
2350
+ "label": {
2351
+ "identifier": "label.hierarchy.salestier12roleuser",
2352
+ "title": "Sales Tier12 Role-User",
2353
+ "type": "GDC.text",
2354
+ "dataType": "VARCHAR(128)"
2355
+ }
2356
+ }
2357
+ ],
2358
+ "defaultLabel": "label.hierarchy.salestier12roleuser"
2359
+ }
2360
+ },
2361
+ {
2362
+ "attribute": {
2363
+ "identifier": "attr.hierarchy.salestier8role",
2364
+ "title": "Sales Tier8 Role",
2365
+ "folder": "Sales Hierarchy",
2366
+ "labels": [
2367
+ {
2368
+ "label": {
2369
+ "identifier": "label.hierarchy.salestier8role",
2370
+ "title": "Sales Tier8 Role",
2371
+ "type": "GDC.text",
2372
+ "dataType": "VARCHAR(128)"
2373
+ }
2374
+ }
2375
+ ],
2376
+ "defaultLabel": "label.hierarchy.salestier8role"
2377
+ }
2378
+ },
2379
+ {
2380
+ "attribute": {
2381
+ "identifier": "attr.hierarchy.salestier9role",
2382
+ "title": "Sales Tier9 Role",
2383
+ "folder": "Sales Hierarchy",
2384
+ "labels": [
2385
+ {
2386
+ "label": {
2387
+ "identifier": "label.hierarchy.salestier9role",
2388
+ "title": "Sales Tier9 Role",
2389
+ "type": "GDC.text",
2390
+ "dataType": "VARCHAR(128)"
2391
+ }
2392
+ }
2393
+ ],
2394
+ "defaultLabel": "label.hierarchy.salestier9role"
2395
+ }
2396
+ },
2397
+ {
2398
+ "attribute": {
2399
+ "identifier": "attr.hierarchy.salestier10role",
2400
+ "title": "Sales Tier10 Role",
2401
+ "folder": "Sales Hierarchy",
2402
+ "labels": [
2403
+ {
2404
+ "label": {
2405
+ "identifier": "label.hierarchy.salestier10role",
2406
+ "title": "Sales Tier10 Role",
2407
+ "type": "GDC.text",
2408
+ "dataType": "VARCHAR(128)"
2409
+ }
2410
+ }
2411
+ ],
2412
+ "defaultLabel": "label.hierarchy.salestier10role"
2413
+ }
2414
+ },
2415
+ {
2416
+ "attribute": {
2417
+ "identifier": "attr.hierarchy.salestier11role",
2418
+ "title": "Sales Tier11 Role",
2419
+ "folder": "Sales Hierarchy",
2420
+ "labels": [
2421
+ {
2422
+ "label": {
2423
+ "identifier": "label.hierarchy.salestier11role",
2424
+ "title": "Sales Tier11 Role",
2425
+ "type": "GDC.text",
2426
+ "dataType": "VARCHAR(128)"
2427
+ }
2428
+ }
2429
+ ],
2430
+ "defaultLabel": "label.hierarchy.salestier11role"
2431
+ }
2432
+ },
2433
+ {
2434
+ "attribute": {
2435
+ "identifier": "attr.hierarchy.salestier12role",
2436
+ "title": "Sales Tier12 Role",
2437
+ "folder": "Sales Hierarchy",
2438
+ "labels": [
2439
+ {
2440
+ "label": {
2441
+ "identifier": "label.hierarchy.salestier12role",
2442
+ "title": "Sales Tier12 Role",
2443
+ "type": "GDC.text",
2444
+ "dataType": "VARCHAR(128)"
2445
+ }
2446
+ }
2447
+ ],
2448
+ "defaultLabel": "label.hierarchy.salestier12role"
2449
+ }
2450
+ },
2451
+ {
2452
+ "attribute": {
2453
+ "identifier": "attr.hierarchy.salestier13role",
2454
+ "title": "Sales Tier13Role",
2455
+ "folder": "Sales Hierarchy",
2456
+ "labels": [
2457
+ {
2458
+ "label": {
2459
+ "identifier": "label.hierarchy.salestier13role",
2460
+ "title": "Sales Tier13Role",
2461
+ "type": "GDC.text",
2462
+ "dataType": "VARCHAR(128)"
2463
+ }
2464
+ }
2465
+ ]
2466
+ }
2467
+ },
2468
+ {
2469
+ "attribute": {
2470
+ "identifier": "attr.hierarchy.salestier14role",
2471
+ "title": "Sales Tier14Role",
2472
+ "folder": "Sales Hierarchy",
2473
+ "labels": [
2474
+ {
2475
+ "label": {
2476
+ "identifier": "label.hierarchy.salestier14role",
2477
+ "title": "Sales Tier14Role",
2478
+ "type": "GDC.text",
2479
+ "dataType": "VARCHAR(128)"
2480
+ }
2481
+ }
2482
+ ]
2483
+ }
2484
+ },
2485
+ {
2486
+ "attribute": {
2487
+ "identifier": "attr.hierarchy.salestier15role",
2488
+ "title": "Sales Tier15Role",
2489
+ "folder": "Sales Hierarchy",
2490
+ "labels": [
2491
+ {
2492
+ "label": {
2493
+ "identifier": "label.hierarchy.salestier15role",
2494
+ "title": "Sales Tier15Role",
2495
+ "type": "GDC.text",
2496
+ "dataType": "VARCHAR(128)"
2497
+ }
2498
+ }
2499
+ ]
2500
+ }
2501
+ },
2502
+ {
2503
+ "attribute": {
2504
+ "identifier": "attr.hierarchy.salestier16role",
2505
+ "title": "Sales Tier16Role",
2506
+ "folder": "Sales Hierarchy",
2507
+ "labels": [
2508
+ {
2509
+ "label": {
2510
+ "identifier": "label.hierarchy.salestier16role",
2511
+ "title": "Sales Tier16Role",
2512
+ "type": "GDC.text",
2513
+ "dataType": "VARCHAR(128)"
2514
+ }
2515
+ }
2516
+ ]
2517
+ }
2518
+ },
2519
+ {
2520
+ "attribute": {
2521
+ "identifier": "attr.hierarchy.salestier17role",
2522
+ "title": "Sales Tier17Role",
2523
+ "folder": "Sales Hierarchy",
2524
+ "labels": [
2525
+ {
2526
+ "label": {
2527
+ "identifier": "label.hierarchy.salestier17role",
2528
+ "title": "Sales Tier17Role",
2529
+ "type": "GDC.text",
2530
+ "dataType": "VARCHAR(128)"
2531
+ }
2532
+ }
2533
+ ]
2534
+ }
2535
+ },
2536
+ {
2537
+ "attribute": {
2538
+ "identifier": "attr.hierarchy.salestier18role",
2539
+ "title": "Sales Tier18Role",
2540
+ "folder": "Sales Hierarchy",
2541
+ "labels": [
2542
+ {
2543
+ "label": {
2544
+ "identifier": "label.hierarchy.salestier18role",
2545
+ "title": "Sales Tier18Role",
2546
+ "type": "GDC.text",
2547
+ "dataType": "VARCHAR(128)"
2548
+ }
2549
+ }
2550
+ ]
2551
+ }
2552
+ },
2553
+ {
2554
+ "attribute": {
2555
+ "identifier": "attr.hierarchy.salestier19role",
2556
+ "title": "Sales Tier19Role",
2557
+ "folder": "Sales Hierarchy",
2558
+ "labels": [
2559
+ {
2560
+ "label": {
2561
+ "identifier": "label.hierarchy.salestier19role",
2562
+ "title": "Sales Tier19Role",
2563
+ "type": "GDC.text",
2564
+ "dataType": "VARCHAR(128)"
2565
+ }
2566
+ }
2567
+ ]
2568
+ }
2569
+ },
2570
+ {
2571
+ "attribute": {
2572
+ "identifier": "attr.hierarchy.salestier20role",
2573
+ "title": "Sales Tier20Role",
2574
+ "folder": "Sales Hierarchy",
2575
+ "labels": [
2576
+ {
2577
+ "label": {
2578
+ "identifier": "label.hierarchy.salestier20role",
2579
+ "title": "Sales Tier20Role",
2580
+ "type": "GDC.text",
2581
+ "dataType": "VARCHAR(128)"
2582
+ }
2583
+ }
2584
+ ]
2585
+ }
2586
+ },
2587
+ {
2588
+ "attribute": {
2589
+ "identifier": "attr.hierarchy.salestier13roleuser",
2590
+ "title": "Sales Tier13 Role-User",
2591
+ "folder": "Sales Hierarchy",
2592
+ "labels": [
2593
+ {
2594
+ "label": {
2595
+ "identifier": "label.hierarchy.salestier13roleuser",
2596
+ "title": "Sales Tier13 Role-User",
2597
+ "type": "GDC.text",
2598
+ "dataType": "VARCHAR(128)"
2599
+ }
2600
+ }
2601
+ ]
2602
+ }
2603
+ },
2604
+ {
2605
+ "attribute": {
2606
+ "identifier": "attr.hierarchy.salestier14roleuser",
2607
+ "title": "Sales Tier14 Role-User",
2608
+ "folder": "Sales Hierarchy",
2609
+ "labels": [
2610
+ {
2611
+ "label": {
2612
+ "identifier": "label.hierarchy.salestier14roleuser",
2613
+ "title": "Sales Tier14 Role-User",
2614
+ "type": "GDC.text",
2615
+ "dataType": "VARCHAR(128)"
2616
+ }
2617
+ }
2618
+ ]
2619
+ }
2620
+ },
2621
+ {
2622
+ "attribute": {
2623
+ "identifier": "attr.hierarchy.salestier15roleuser",
2624
+ "title": "Sales Tier15 Role-User",
2625
+ "folder": "Sales Hierarchy",
2626
+ "labels": [
2627
+ {
2628
+ "label": {
2629
+ "identifier": "label.hierarchy.salestier15roleuser",
2630
+ "title": "Sales Tier15 Role-User",
2631
+ "type": "GDC.text",
2632
+ "dataType": "VARCHAR(128)"
2633
+ }
2634
+ }
2635
+ ]
2636
+ }
2637
+ },
2638
+ {
2639
+ "attribute": {
2640
+ "identifier": "attr.hierarchy.salestier16roleuser",
2641
+ "title": "Sales Tier16 Role-User",
2642
+ "folder": "Sales Hierarchy",
2643
+ "labels": [
2644
+ {
2645
+ "label": {
2646
+ "identifier": "label.hierarchy.salestier16roleuser",
2647
+ "title": "Sales Tier16 Role-User",
2648
+ "type": "GDC.text",
2649
+ "dataType": "VARCHAR(128)"
2650
+ }
2651
+ }
2652
+ ]
2653
+ }
2654
+ },
2655
+ {
2656
+ "attribute": {
2657
+ "identifier": "attr.hierarchy.salestier17roleuser",
2658
+ "title": "Sales Tier17 Role-User",
2659
+ "folder": "Sales Hierarchy",
2660
+ "labels": [
2661
+ {
2662
+ "label": {
2663
+ "identifier": "label.hierarchy.salestier17roleuser",
2664
+ "title": "Sales Tier17 Role-User",
2665
+ "type": "GDC.text",
2666
+ "dataType": "VARCHAR(128)"
2667
+ }
2668
+ }
2669
+ ]
2670
+ }
2671
+ },
2672
+ {
2673
+ "attribute": {
2674
+ "identifier": "attr.hierarchy.salestier18roleuser",
2675
+ "title": "Sales Tier18 Role-User",
2676
+ "folder": "Sales Hierarchy",
2677
+ "labels": [
2678
+ {
2679
+ "label": {
2680
+ "identifier": "label.hierarchy.salestier18roleuser",
2681
+ "title": "Sales Tier18 Role-User",
2682
+ "type": "GDC.text",
2683
+ "dataType": "VARCHAR(128)"
2684
+ }
2685
+ }
2686
+ ]
2687
+ }
2688
+ },
2689
+ {
2690
+ "attribute": {
2691
+ "identifier": "attr.hierarchy.salestier19roleuser",
2692
+ "title": "Sales Tier19 Role-User",
2693
+ "folder": "Sales Hierarchy",
2694
+ "labels": [
2695
+ {
2696
+ "label": {
2697
+ "identifier": "label.hierarchy.salestier19roleuser",
2698
+ "title": "Sales Tier19 Role-User",
2699
+ "type": "GDC.text",
2700
+ "dataType": "VARCHAR(128)"
2701
+ }
2702
+ }
2703
+ ]
2704
+ }
2705
+ },
2706
+ {
2707
+ "attribute": {
2708
+ "identifier": "attr.hierarchy.salestier20roleuser",
2709
+ "title": "Sales Tier20 Role-User",
2710
+ "folder": "Sales Hierarchy",
2711
+ "labels": [
2712
+ {
2713
+ "label": {
2714
+ "identifier": "label.hierarchy.salestier20roleuser",
2715
+ "title": "Sales Tier20 Role-User",
2716
+ "type": "GDC.text",
2717
+ "dataType": "VARCHAR(128)"
2718
+ }
2719
+ }
2720
+ ]
2721
+ }
2722
+ }
2723
+ ]
2724
+ }
2725
+ },
2726
+ {
2727
+ "dataset": {
2728
+ "identifier": "dataset.asreportedbookings",
2729
+ "title": "As Reported Bookings",
2730
+ "anchor": {
2731
+ "attribute": {
2732
+ "identifier": "attr.asreportedbookings.factsof",
2733
+ "title": "Records of As Reported Bookings"
2734
+ }
2735
+ },
2736
+ "attributes": [
2737
+ {
2738
+ "attribute": {
2739
+ "identifier": "attr.asreportedbookings.snapshotdate",
2740
+ "title": "Snapshot Date",
2741
+ "folder": "Z - Under Development",
2742
+ "labels": [
2743
+ {
2744
+ "label": {
2745
+ "identifier": "label.asreportedbookings.snapshotdate",
2746
+ "title": "Snapshot Date",
2747
+ "type": "GDC.text",
2748
+ "dataType": "VARCHAR(128)"
2749
+ }
2750
+ }
2751
+ ],
2752
+ "defaultLabel": "label.asreportedbookings.snapshotdate"
2753
+ }
2754
+ },
2755
+ {
2756
+ "attribute": {
2757
+ "identifier": "attr.asreportedbookings.year",
2758
+ "title": "Year",
2759
+ "folder": "As Reported Bookings",
2760
+ "labels": [
2761
+ {
2762
+ "label": {
2763
+ "identifier": "label.asreportedbookings.year",
2764
+ "title": "Year",
2765
+ "type": "GDC.text",
2766
+ "dataType": "VARCHAR(128)"
2767
+ }
2768
+ }
2769
+ ],
2770
+ "defaultLabel": "label.asreportedbookings.year"
2771
+ }
2772
+ },
2773
+ {
2774
+ "attribute": {
2775
+ "identifier": "attr.asreportedbookings.quarteryear",
2776
+ "title": "Quarter/Year",
2777
+ "folder": "As Reported Bookings",
2778
+ "labels": [
2779
+ {
2780
+ "label": {
2781
+ "identifier": "label.asreportedbookings.quarteryear",
2782
+ "title": "Quarter/Year",
2783
+ "type": "GDC.text",
2784
+ "dataType": "VARCHAR(128)"
2785
+ }
2786
+ }
2787
+ ],
2788
+ "defaultLabel": "label.asreportedbookings.quarteryear"
2789
+ }
2790
+ },
2791
+ {
2792
+ "attribute": {
2793
+ "identifier": "attr.asreportedbookings.monthyear",
2794
+ "title": "Month/Year",
2795
+ "folder": "As Reported Bookings",
2796
+ "labels": [
2797
+ {
2798
+ "label": {
2799
+ "identifier": "label.asreportedbookings.monthyear",
2800
+ "title": "Month/Year",
2801
+ "type": "GDC.text",
2802
+ "dataType": "VARCHAR(128)"
2803
+ }
2804
+ }
2805
+ ],
2806
+ "defaultLabel": "label.asreportedbookings.monthyear"
2807
+ }
2808
+ },
2809
+ {
2810
+ "attribute": {
2811
+ "identifier": "attr.asreportedbookings.billtocustomerregion",
2812
+ "title": "Bill To Customer Region",
2813
+ "folder": "As Reported Bookings",
2814
+ "labels": [
2815
+ {
2816
+ "label": {
2817
+ "identifier": "label.asreportedbookings.billtocustomerregion",
2818
+ "title": "Bill To Customer Region",
2819
+ "type": "GDC.text",
2820
+ "dataType": "VARCHAR(128)"
2821
+ }
2822
+ }
2823
+ ],
2824
+ "defaultLabel": "label.asreportedbookings.billtocustomerregion"
2825
+ }
2826
+ },
2827
+ {
2828
+ "attribute": {
2829
+ "identifier": "attr.asreportedbookings.shiptocustomerregion",
2830
+ "title": "Ship To Customer Region",
2831
+ "folder": "As Reported Bookings",
2832
+ "labels": [
2833
+ {
2834
+ "label": {
2835
+ "identifier": "label.asreportedbookings.shiptocustomerregion",
2836
+ "title": "Ship To Customer Region",
2837
+ "type": "GDC.text",
2838
+ "dataType": "VARCHAR(128)"
2839
+ }
2840
+ }
2841
+ ],
2842
+ "defaultLabel": "label.asreportedbookings.shiptocustomerregion"
2843
+ }
2844
+ },
2845
+ {
2846
+ "attribute": {
2847
+ "identifier": "attr.asreportedbookings.revenueaccount",
2848
+ "title": "Revenue Account",
2849
+ "folder": "As Reported Bookings",
2850
+ "labels": [
2851
+ {
2852
+ "label": {
2853
+ "identifier": "label.asreportedbookings.revenueaccount",
2854
+ "title": "Revenue Account",
2855
+ "type": "GDC.text",
2856
+ "dataType": "VARCHAR(128)"
2857
+ }
2858
+ }
2859
+ ],
2860
+ "defaultLabel": "label.asreportedbookings.revenueaccount"
2861
+ }
2862
+ },
2863
+ {
2864
+ "attribute": {
2865
+ "identifier": "attr.asreportedbookings.bookingtype",
2866
+ "title": "Booking Type",
2867
+ "folder": "As Reported Bookings",
2868
+ "labels": [
2869
+ {
2870
+ "label": {
2871
+ "identifier": "label.asreportedbookings.bookingtype",
2872
+ "title": "Booking Type",
2873
+ "type": "GDC.text",
2874
+ "dataType": "VARCHAR(128)"
2875
+ }
2876
+ }
2877
+ ],
2878
+ "defaultLabel": "label.asreportedbookings.bookingtype"
2879
+ }
2880
+ },
2881
+ {
2882
+ "attribute": {
2883
+ "identifier": "attr.asreportedbookings.bookingtypedetail",
2884
+ "title": "Booking Type Detail",
2885
+ "folder": "As Reported Bookings",
2886
+ "labels": [
2887
+ {
2888
+ "label": {
2889
+ "identifier": "label.asreportedbookings.bookingtypedetail",
2890
+ "title": "Booking Type Detail",
2891
+ "type": "GDC.text",
2892
+ "dataType": "VARCHAR(128)"
2893
+ }
2894
+ }
2895
+ ],
2896
+ "defaultLabel": "label.asreportedbookings.bookingtypedetail"
2897
+ }
2898
+ },
2899
+ {
2900
+ "attribute": {
2901
+ "identifier": "attr.asreportedbookings.division",
2902
+ "title": "Division",
2903
+ "folder": "As Reported Bookings",
2904
+ "labels": [
2905
+ {
2906
+ "label": {
2907
+ "identifier": "label.asreportedbookings.division",
2908
+ "title": "Division",
2909
+ "type": "GDC.text",
2910
+ "dataType": "VARCHAR(128)"
2911
+ }
2912
+ }
2913
+ ],
2914
+ "defaultLabel": "label.asreportedbookings.division"
2915
+ }
2916
+ },
2917
+ {
2918
+ "attribute": {
2919
+ "identifier": "attr.asreportedbookings.lob",
2920
+ "title": "LOB",
2921
+ "folder": "As Reported Bookings",
2922
+ "labels": [
2923
+ {
2924
+ "label": {
2925
+ "identifier": "label.asreportedbookings.lob",
2926
+ "title": "LOB",
2927
+ "type": "GDC.text",
2928
+ "dataType": "VARCHAR(128)"
2929
+ }
2930
+ }
2931
+ ],
2932
+ "defaultLabel": "label.asreportedbookings.lob"
2933
+ }
2934
+ },
2935
+ {
2936
+ "attribute": {
2937
+ "identifier": "attr.asreportedbookings.prodgen5",
2938
+ "title": "Prod Gen5",
2939
+ "folder": "As Reported Bookings",
2940
+ "labels": [
2941
+ {
2942
+ "label": {
2943
+ "identifier": "label.asreportedbookings.prodgen5",
2944
+ "title": "Prod Gen5",
2945
+ "type": "GDC.text",
2946
+ "dataType": "VARCHAR(128)"
2947
+ }
2948
+ }
2949
+ ],
2950
+ "defaultLabel": "label.asreportedbookings.prodgen5"
2951
+ }
2952
+ },
2953
+ {
2954
+ "attribute": {
2955
+ "identifier": "attr.asreportedbookings.prodgen6",
2956
+ "title": "Prod Gen6",
2957
+ "folder": "As Reported Bookings",
2958
+ "labels": [
2959
+ {
2960
+ "label": {
2961
+ "identifier": "label.asreportedbookings.prodgen6",
2962
+ "title": "Prod Gen6",
2963
+ "type": "GDC.text",
2964
+ "dataType": "VARCHAR(128)"
2965
+ }
2966
+ }
2967
+ ],
2968
+ "defaultLabel": "label.asreportedbookings.prodgen6"
2969
+ }
2970
+ },
2971
+ {
2972
+ "attribute": {
2973
+ "identifier": "attr.asreportedbookings.productfamily",
2974
+ "title": "Product Family #",
2975
+ "folder": "As Reported Bookings",
2976
+ "labels": [
2977
+ {
2978
+ "label": {
2979
+ "identifier": "label.asreportedbookings.productfamily",
2980
+ "title": "Product Family #",
2981
+ "type": "GDC.text",
2982
+ "dataType": "VARCHAR(128)"
2983
+ }
2984
+ }
2985
+ ],
2986
+ "defaultLabel": "label.asreportedbookings.productfamily"
2987
+ }
2988
+ }
2989
+ ],
2990
+ "facts": [
2991
+ {
2992
+ "fact": {
2993
+ "identifier": "fact.asreportedbookings.bookingamountusd",
2994
+ "title": "As Reported Bookings Amount USD",
2995
+ "folder": "As Reported Bookings",
2996
+ "dataType": "DECIMAL(15,2)"
2997
+ }
2998
+ },
2999
+ {
3000
+ "fact": {
3001
+ "identifier": "fact.asreportedbookings.bookingplanusd",
3002
+ "title": "As Reported Bookings Plan USD",
3003
+ "folder": "As Reported Bookings",
3004
+ "dataType": "DECIMAL(15,2)"
3005
+ }
3006
+ }
3007
+ ]
3008
+ }
3009
+ }
3010
+ ],
3011
+ "dateDimensions": [
3012
+ {
3013
+ "dateDimension": {
3014
+ "name": "I_FDATE_DIM.fiscalOct1_dataset.dt",
3015
+ "title": "Bookings Fiscal"
3016
+ }
3017
+ },
3018
+ {
3019
+ "dateDimension": {
3020
+ "name": "dealtermactivation",
3021
+ "title": "Deal Term Activation"
3022
+ }
3023
+ },
3024
+ {
3025
+ "dateDimension": {
3026
+ "name": "dealtermexpiration",
3027
+ "title": "Deal Term Expiration"
3028
+ }
3029
+ },
3030
+ {
3031
+ "dateDimension": {
3032
+ "name": "I_FISCAL_DATE_CSD.nuance",
3033
+ "title": "Customer Signature Date"
3034
+ }
3035
+ },
3036
+ {
3037
+ "dateDimension": {
3038
+ "name": "I_FISCAL_DATE_SSD.nuance",
3039
+ "title": "Supplier Signature Date"
3040
+ }
3041
+ }
3042
+ ]
3043
+ }
3044
+ }
3045
+ }
3046
+ }