contentstack 0.0.3 → 0.3.0

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.
@@ -44,7 +44,7 @@ module Contentstack
44
44
  end
45
45
  end
46
46
 
47
- def self.find_by_uid(uid)
47
+ def fetch
48
48
  content_type = API.fetch_content_types(uid)["content_type"]
49
49
  ContentType.new(content_type.inject({}){|clone,(k,v)| clone[k.to_sym] = v; clone})
50
50
  end
@@ -1,13 +1,179 @@
1
+ require 'active_support/core_ext'
2
+
1
3
  module Contentstack
2
4
  class Entry
3
- attr_reader :fields, :content_type, :uid, :owner
5
+ attr_reader :fields, :content_type, :uid, :owner, :query, :schema, :content_type
4
6
  def initialize(attrs, content_type_uid=nil)
5
7
  setup(attrs, content_type_uid)
6
8
  end
7
9
 
10
+ # Get entries from the specified locale.
11
+ #
12
+ # @param [String] code The locale code of the entry
13
+ #
14
+ # Example
15
+ # @entry = @stack.content_type('category').entry(entry_uid)
16
+ # @entry.locale('en-us')
17
+ #
18
+ # @return [Contentstack::Entry]
19
+ def locale(code)
20
+ @query[:locale] = code
21
+ self
22
+ end
23
+
24
+ # Specifies an array of 'only' keys in BASE object that would be 'included' in the response.
25
+ #
26
+ # @param [Array] fields Array of the 'only' reference keys to be included in response.
27
+ # @param [Array] fields_with_base Can be used to denote 'only' fields of the reference class
28
+ #
29
+ # Example
30
+ # # Include only title and description field in response
31
+ # @entry = @stack.content_type('category').entry(entry_uid)
32
+ # @entry.only(['title', 'description'])
33
+ #
34
+ # # Query product and include only the title and description from category reference
35
+ # @entry = @stack.content_type('product').entry(entry_uid)
36
+ # @entry.include_reference('category')
37
+ # .only('category', ['title', 'description'])
38
+ #
39
+ # @return [Contentstack::Entry]
40
+ def only(fields, fields_with_base=nil)
41
+ q = {}
42
+ if [Array, String].include?(fields_with_base.class)
43
+ fields_with_base = [fields_with_base] if fields_with_base.class == String
44
+ q[fields.to_sym] = fields_with_base
45
+ else
46
+ fields = [fields] if fields.class == String
47
+ q = {BASE: fields}
48
+ end
49
+
50
+ @query[:only] = q
51
+ self
52
+ end
53
+
54
+ # Specifies list of field uids that would be 'excluded' from the response.
55
+ #
56
+ # @param [Array] fields Array of field uid which get 'excluded' from the response.
57
+ # @param [Array] fields_with_base Can be used to denote 'except' fields of the reference class
58
+ #
59
+ # Example
60
+ # # Exclude 'description' field in response
61
+ # @entry = @stack.content_type('category').entry(entry_uid)
62
+ # @entry.except(['description'])
63
+ #
64
+ # # Query product and exclude the 'description' from category reference
65
+ # @entry = @stack.content_type('product').entry(entry_uid)
66
+ # @entry.include_reference('category')
67
+ # .except('category', ['description'])
68
+ #
69
+ # @return [Contentstack::Entry]
70
+ def except(fields, fields_with_base=nil)
71
+ q = {}
72
+ if [Array, String].include?(fields_with_base.class)
73
+ fields_with_base = [fields_with_base] if fields_with_base.class == String
74
+ q[fields.to_sym] = fields_with_base
75
+ else
76
+ fields = [fields] if fields.class == String
77
+ q = {BASE: fields}
78
+ end
79
+
80
+ @query[:except] = q
81
+ self
82
+ end
83
+
84
+ # Add a constraint that requires a particular reference key details.
85
+ #
86
+ # @param [String/Array] reference_field_uids Pass string or array of reference fields that must be included in the response
87
+ #
88
+ # Example
89
+ #
90
+ # # Include reference of 'category'
91
+ # @entry = @stack.content_type('product').entry(entry_uid)
92
+ # @entry.include_reference('category')
93
+ #
94
+ # # Include reference of 'category' and 'reviews'
95
+ # @entry = @stack.content_type('product').entry(entry_uid)
96
+ # @entry.include_reference(['category', 'reviews'])
97
+ #
98
+ # @return [Contentstack::Entry]
99
+ def include_reference(reference_field_uids)
100
+ self.include(reference_field_uids)
101
+ end
102
+
103
+ # Include schemas of all returned objects along with objects themselves.
104
+ #
105
+ # Example
106
+ #
107
+ # @entry = @stack.content_type('product').entry(entry_uid)
108
+ # @entry.include_schema
109
+ #
110
+ # @return [Contentstack::Entry]
111
+ def include_schema(flag=true)
112
+ @query[:include_schema] = flag
113
+ self
114
+ end
115
+
116
+ # Include object owner's profile in the objects data.
117
+ #
118
+ # Example
119
+ #
120
+ # @entry = @stack.content_type('product').entry(entry_uid)
121
+ # @entry.include_owner
122
+ #
123
+ # @return [Contentstack::Entry]
124
+ def include_owner(flag=true)
125
+ @query[:include_owner] = flag
126
+ self
127
+ end
128
+
129
+ # Include object's content_type in response
130
+ #
131
+ # Example
132
+ #
133
+ # @entry = @stack.content_type('product').entry(entry_uid)
134
+ # @entry.include_content_type
135
+ #
136
+ # @return [Contentstack::Entry]
137
+ def include_content_type(flag=true)
138
+ @query[:include_content_type] = flag
139
+ self
140
+ end
141
+
142
+ # Include the fallback locale publish content, if specified locale content is not publish.
143
+ #
144
+ # Example
145
+ #
146
+ # @entry = @stack.content_type('product').entry(entry_uid)
147
+ # @entry.include_fallback
148
+ #
149
+ # @return [Contentstack::Entry]
150
+ def include_fallback(flag=true)
151
+ @query[:include_fallback] = flag
152
+ self
153
+ end
154
+
155
+ #
156
+ # @return [Contentstack::Query]
157
+ def include(field_uids)
158
+ field_uids = [field_uids] if field_uids.class == String
159
+ @query[:include] ||= []
160
+ @query[:include] = @query[:include] | field_uids
161
+ self
162
+ end
163
+
164
+ # Execute entry
165
+ #
166
+ # Example
167
+ #
168
+ # @entry = @stack.content_type('product').entry(entry_uid)
169
+ # @entry.fetch
170
+ #
171
+ # @return [Contentstack::EntryCollection]
8
172
  def fetch
9
- entry = API.fetch_entry(@content_type, self.fields[:uid])
173
+ entry = API.fetch_entry(@content_type, self.fields[:uid], @query)
10
174
  setup(entry["entry"])
175
+ @schema = entry["schema"].symbolize_keys if entry["schema"]
176
+ @content_type = entry["content_type"].symbolize_keys if entry["content_type"]
11
177
  self
12
178
  end
13
179
 
@@ -22,6 +188,7 @@ module Contentstack
22
188
  @content_type = content_type_uid if !content_type_uid.blank?
23
189
  @owner = attrs[:_owner] if attrs[:_owner]
24
190
  @uid = attrs[:uid]
191
+ @query = {}
25
192
  end
26
193
  end
27
194
  end
@@ -502,6 +502,20 @@ module Contentstack
502
502
  self
503
503
  end
504
504
 
505
+
506
+ # Include the fallback locale publish content, if specified locale content is not publish.
507
+ #
508
+ # Example
509
+ #
510
+ # @query = @stack.content_type('product').query
511
+ # @query.include_fallback
512
+ #
513
+ # @return [Contentstack::Query]
514
+ def include_fallback(flag=true)
515
+ @query[:include_fallback] = flag
516
+ self
517
+ end
518
+
505
519
  # Include objects in 'Draft' mode in response
506
520
  #
507
521
  # Example
@@ -0,0 +1,6 @@
1
+ module Contentstack
2
+ class Region
3
+ EU='eu'
4
+ US='us'
5
+ end
6
+ end
@@ -0,0 +1,30 @@
1
+ require 'active_support/core_ext'
2
+
3
+ module Contentstack
4
+ class SyncResult
5
+ attr_reader :items
6
+ attr_reader :sync_token
7
+ attr_reader :pagination_token
8
+ attr_reader :total_count
9
+ attr_reader :skip
10
+ attr_reader :limit
11
+
12
+ def initialize(sync_result)
13
+ if sync_result.nil?
14
+ @items = []
15
+ @sync_token = nil
16
+ @pagination_token = nil
17
+ @total_count = 0
18
+ @skip = 0
19
+ @limit = 100
20
+ else
21
+ @items = sync_result["items"] || []
22
+ @sync_token = sync_result["sync_token"] || nil
23
+ @pagination_token = sync_result["pagination_token"] || nil
24
+ @total_count = sync_result["total_count"] || 0
25
+ @skip = sync_result["skip"] || 0
26
+ @limit = sync_result["limit"] || 100
27
+ end
28
+ end
29
+ end
30
+ end
@@ -1,3 +1,3 @@
1
1
  module Contentstack
2
- VERSION = "0.0.3"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -3,6 +3,8 @@ require_relative '../lib/contentstack.rb'
3
3
 
4
4
  describe Contentstack::ContentType do
5
5
  let(:client) { create_client }
6
+ let(:eu_client) { create_client('DELIVERY_TOKEN', 'API_KEY', 'STACK_ENV', {region: Contentstack::Region::EU}) }
7
+ let(:custom_host_client) { create_client('DELIVERY_TOKEN', 'API_KEY', 'STACK_ENV', {host: "https://custom-cdn.contentstack.com"}) }
6
8
 
7
9
  describe "Fetch data from API" do
8
10
  it "has class as Contentstack::ContentType" do
@@ -14,6 +16,16 @@ describe Contentstack::ContentType do
14
16
  @data = client.content_types.first
15
17
  expect(@data.title).not_to be nil
16
18
  end
19
+
20
+ it "has method called title with data from eu" do
21
+ @data = eu_client.content_types.first
22
+ expect(@data.title).not_to be nil
23
+ end
24
+
25
+ it "has method called title with data from custom client" do
26
+ @data = custom_host_client.content_types.first
27
+ expect(@data.title).not_to be nil
28
+ end
17
29
 
18
30
  it "has method called uid with data" do
19
31
  @data = client.content_types.first
@@ -34,6 +46,11 @@ describe Contentstack::ContentType do
34
46
  @data = client.content_types.first
35
47
  expect(@data.attributes).not_to be nil
36
48
  end
49
+
50
+ it "Should get content type from uid" do
51
+ @data = client.content_type("category").fetch
52
+ expect(@data.attributes).not_to be nil
53
+ end
37
54
  end
38
55
 
39
56
  describe "Initialized using class" do
@@ -3,8 +3,30 @@ require_relative '../lib/contentstack.rb'
3
3
 
4
4
  describe Contentstack do
5
5
  let(:client) { create_client }
6
+ let(:eu_client) { create_client('DELIVERY_TOKEN_TOKEN', 'API_KEY', 'STACK_ENV', {region: Contentstack::Region::EU}) }
7
+ let(:custom_host_client) { create_client('DELIVERY_TOKEN_TOKEN', 'API_KEY', 'STACK_ENV', {host: "https://custom-cdn.contentstack.com"}) }
6
8
 
7
9
  it "has a version number" do
8
10
  expect(Contentstack::VERSION).not_to be nil
9
11
  end
12
+
13
+ it "has region data" do
14
+ expect(Contentstack::Region::EU).not_to be 'eu'
15
+ expect(Contentstack::Region::US).not_to be 'us'
16
+ end
17
+
18
+ it "has default host and region" do
19
+ expect(client.region).to eq Contentstack::Region::US
20
+ expect(client.host).to eq 'https://cdn.contentstack.io'
21
+ end
22
+
23
+ it "has custom region with region host" do
24
+ expect(eu_client.region).to eq Contentstack::Region::EU
25
+ expect(eu_client.host).to eq 'https://eu-cdn.contentstack.com'
26
+ end
27
+
28
+ it "has custom host" do
29
+ expect(custom_host_client.host).to eq 'https://custom-cdn.contentstack.com'
30
+ end
31
+
10
32
  end
data/spec/entry_spec.rb CHANGED
@@ -3,6 +3,10 @@ require_relative '../lib/contentstack.rb'
3
3
 
4
4
  describe Contentstack::Entry do
5
5
  let(:client) { create_client }
6
+ let(:uid) { "blt05056a2f5e0ebf76" }
7
+
8
+ let(:category) {client.content_type("category").entry(uid)}
9
+ let(:product) {client.content_type("product").entry(uid)}
6
10
 
7
11
  it "Contentstack::EntryCollection should have Contentstack::Entry instance" do
8
12
  data = client.content_type("category").query.fetch
@@ -11,13 +15,75 @@ describe Contentstack::Entry do
11
15
  end
12
16
 
13
17
  it "is an instance of Contentstack::Entry if single entry is fetched" do
14
- data = client.content_type("category").entry("blt05056a2f5e0ebf76").fetch
18
+ data = category.fetch
15
19
  expect(data.class).to eq Contentstack::Entry
16
20
  end
17
21
 
18
22
  it 'has a method `get` to get attributes data' do
19
- uid = "blt05056a2f5e0ebf76"
20
- data = client.content_type("category").entry(uid).fetch
23
+ data = category.fetch
21
24
  expect(data.get('uid')).to eq uid
22
25
  end
26
+
27
+ it "should set locale the in the request entry" do
28
+ data = category.locale('en-us')
29
+ expect(data.query[:locale]).to eq 'en-us'
30
+ end
31
+
32
+ it "should get data using `only` method with string parameter" do
33
+ data = category.fetch
34
+ expect(data.fields[:title]).not_to be nil
35
+ expect(data.fields[:uid]).not_to be nil
36
+ end
37
+
38
+ it "should get data using `only` method with array parameter" do
39
+ data = category.only(["title"]).fetch
40
+ expect(data.fields[:title]).not_to be nil
41
+ expect(data.fields[:uid]).not_to be nil
42
+ end
43
+
44
+ it "should get data using `except` method with string parameter" do
45
+ data = category.except("category_tags").fetch
46
+ expect(data.fields[:category_tags]).to be nil
47
+ end
48
+
49
+ it "should get data using `except` method with array parameter" do
50
+ data = category.except(["description"]).fetch
51
+ expect(data.fields[:description]).to be nil
52
+ end
53
+
54
+ it "should get data using `only` method for reference fields" do
55
+ data = product.include_reference('categories').only("categories", ["title", "description"]).fetch
56
+ expect(data.fields[:categories][0][:title]).to eq "Smartphones"
57
+ end
58
+
59
+ it "should get data using `except` method for reference fields" do
60
+ data = product.include_reference('categories').except("categories", "title").fetch
61
+ expect(data.fields[:categories][0][:title]).to eq 'Smartphones'
62
+ end
63
+
64
+ it "should get data using `include_schema` method" do
65
+ data = category.include_schema.fetch
66
+ expect(data.schema).not_to be nil
67
+ end
68
+
69
+ it "should get data using `include_owner` method" do
70
+ data = product.include_owner.fetch
71
+ expect(data.fields[:_owner]).not_to be nil
72
+ end
73
+
74
+ it "should get data using `include_owner` method" do
75
+ data = product.include_fallback.fetch
76
+ expect(data.fields[:locale]).not_to be nil
77
+ end
78
+
79
+ it "should get data using `include_content_type` method" do
80
+ data = category.include_content_type.fetch
81
+ expect(data.content_type).not_to be nil
82
+ end
83
+
84
+ it "should get data using `include_reference` method" do
85
+ data = product.include_reference('categories').fetch
86
+ puts data.get("categories.title")
87
+ expect(data.fields[:categories][0][:title]).not_to be nil
88
+ end
23
89
  end
@@ -0,0 +1 @@
1
+ {"content_type":{"created_at":"2017-09-28T06:04:02.500Z","updated_at":"2017-09-28T07:13:13.612Z","title":"Product","uid":"product","inbuilt_class":false,"schema":[{"display_name":"Title","uid":"title","data_type":"text","mandatory":true,"unique":true,"field_metadata":{"_default":true},"multiple":false},{"display_name":"URL","uid":"url","data_type":"text","mandatory":false,"field_metadata":{"_default":true},"multiple":false,"unique":false},{"data_type":"text","display_name":"Price","uid":"price","field_metadata":{"description":"","default_value":""},"format":"","error_messages":{"format":""},"multiple":false,"mandatory":false,"unique":false},{"data_type":"text","display_name":"Discounted Price","uid":"discounted_price","field_metadata":{"description":"","default_value":""},"format":"","error_messages":{"format":""},"multiple":false,"mandatory":false,"unique":false},{"data_type":"file","display_name":"Featured Image","uid":"featured_image","extensions":[],"field_metadata":{"description":"","rich_text_type":"standard"},"multiple":false,"mandatory":false,"unique":false},{"data_type":"file","display_name":"Product Images","uid":"product_images","extensions":[],"field_metadata":{"description":"","rich_text_type":"standard"},"multiple":true,"mandatory":false,"unique":false},{"data_type":"text","display_name":"Description","uid":"description","field_metadata":{"description":"","default_value":"","multiline":true},"format":"","error_messages":{"format":""},"multiple":false,"mandatory":false,"unique":false},{"data_type":"reference","display_name":"Categories","reference_to":"category","field_metadata":{"ref_multiple":true},"uid":"categories","multiple":false,"mandatory":false,"unique":false},{"data_type":"reference","display_name":"Related Products","reference_to":"product","field_metadata":{"ref_multiple":true},"uid":"related_products","mandatory":false,"multiple":false,"unique":false}],"last_activity":{"environments":[{"uid":"blt922581483b3573b4","details":[{"locale":"en-us","time":"2017-09-28T09:43:24.028Z"}]}]},"maintain_revisions":true,"description":"","options":{"is_page":true,"singleton":false,"title":"title","sub_title":[],"url_pattern":"/:unique_id","url_prefix":"/products/"},"abilities":{"get_one_object":true,"get_all_objects":true,"create_object":true,"update_object":true,"delete_object":true,"delete_all_objects":true},"DEFAULT_ACL":{"others":{"read":false,"create":false},"users":[{"uid":"blt249905a2fc79092e","read":true,"sub_acl":{"read":true}}]},"SYS_ACL":{"others":{"read":false,"create":false,"update":false,"delete":false,"sub_acl":{"read":false,"create":false,"update":false,"delete":false,"publish":false}},"roles":[{"uid":"bltdbf78d599f92b0c9","read":true,"create":false,"update":false,"delete":false,"sub_acl":{"read":true,"create":true,"update":true,"delete":true,"publish":true}},{"uid":"blt344db9f3f8011ce2","read":true,"create":true,"update":true,"delete":true,"sub_acl":{"read":true,"create":true,"update":true,"delete":true,"publish":true}}]}}}
@@ -1 +1 @@
1
- {"entry":{"title":"Apple Products","tags":[],"locale":"en-us","uid":"blt05056a2f5e0ebf76","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","created_at":"2017-09-28T06:08:21.276Z","updated_at":"2017-09-28T06:08:21.276Z","ACL":{},"_version":1}}
1
+ {"entry":{"title":"Apple Products","tags":[],"locale":"en-us","uid":"blt05056a2f5e0ebf76","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","created_at":"2017-09-28T06:08:21.276Z","updated_at":"2017-09-28T06:08:21.276Z","ACL":{},"_version":1}, "schema":[{"display_name":"Title","uid":"title","data_type":"text","mandatory":true,"unique":true,"field_metadata":{"_default":true},"multiple":false},{"data_type":"text","display_name":"Description","uid":"description","field_metadata":{"description":"","default_value":"","multiline":true},"format":"","error_messages":{"format":""},"multiple":false,"mandatory":false,"unique":false}],"content_type":{"created_at":"2017-08-28T11:26:16.005Z","updated_at":"2017-08-28T11:26:28.217Z","title":"Category","uid":"category","inbuilt_class":false,"schema":[{"display_name":"Title","uid":"title","data_type":"text","mandatory":true,"unique":true,"field_metadata":{"_default":true},"multiple":false},{"data_type":"text","display_name":"Description","uid":"description","field_metadata":{"description":"","default_value":"","multiline":true},"format":"","error_messages":{"format":""},"multiple":false,"mandatory":false,"unique":false}],"last_activity":{"environments":[{"uid":"bltc5173a61bc94f944","details":[{"locale":"en-us","time":"2017-09-28T09:37:14.441Z"}]}]},"maintain_revisions":true,"description":"","options":{"is_page":false,"singleton":false,"title":"title","sub_title":[]},"abilities":{"get_one_object":true,"get_all_objects":true,"create_object":true,"update_object":true,"delete_object":true,"delete_all_objects":true},"DEFAULT_ACL":{"others":{"read":false,"create":false},"users":[{"uid":"blt8360496f808a5408","read":true,"sub_acl":{"read":true}}]}}}
@@ -1 +1 @@
1
- {"entry":{"title":"Motorola Moto X4","url":"/products/blt70d3d8c86c566079","price":"500","discounted_price":"450","featured_image":{"uid":"bltcf9489a3cf1eaa00","created_at":"2017-09-28T07:02:20.745Z","updated_at":"2017-09-28T07:02:20.745Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"311812","tags":[],"filename":"1.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/bltcf9489a3cf1eaa00/59cc9e7c75d9f7760dfc33eb/download","ACL":{},"is_dir":false,"_version":1,"title":"1.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}},"product_images":[{"uid":"bltcf9489a3cf1eaa00","created_at":"2017-09-28T07:02:20.745Z","updated_at":"2017-09-28T07:02:20.745Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"311812","tags":[],"filename":"1.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/bltcf9489a3cf1eaa00/59cc9e7c75d9f7760dfc33eb/download","ACL":{},"is_dir":false,"_version":1,"title":"1.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"blt49a8b46c6839be12","created_at":"2017-09-28T07:02:30.108Z","updated_at":"2017-09-28T07:02:30.108Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"4226","tags":[],"filename":"2.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt49a8b46c6839be12/59cc9e86462a293417404402/download","ACL":{},"is_dir":false,"_version":1,"title":"2.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"bltb545ae58b0ab72bb","created_at":"2017-09-28T07:02:32.375Z","updated_at":"2017-09-28T07:02:32.375Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"5755","tags":[],"filename":"3.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/bltb545ae58b0ab72bb/59cc9e8895fd2a0a0daa742a/download","ACL":{},"is_dir":false,"_version":1,"title":"3.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"blt6af2dddde9d35e3c","created_at":"2017-09-28T07:02:36.507Z","updated_at":"2017-09-28T07:02:36.507Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"312464","tags":[],"filename":"4.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt6af2dddde9d35e3c/59cc9e8c75d9f7760dfc33f1/download","ACL":{},"is_dir":false,"_version":1,"title":"4.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}}],"description":"dual cameras.\nsingular design.\nAdvanced dual rear cameras for your best photos yet. Plus, a beautiful contoured glass and metal frame with an IP68 water resistance rating.* Coming soon.","categories":[{"title":"Smartphones","tags":[],"locale":"en-us","uid":"bltccd0ea06c1da94fd","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","created_at":"2017-09-28T06:07:37.132Z","updated_at":"2017-09-28T06:07:37.132Z","ACL":{},"_version":1,"publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.932Z","user":"sys_bltcbfe73b68603b243"},"_publish_environment":"blt922581483b3573b4","_publish_locale":"en-us","_publish_scheduled":false}],"related_products":[{"title":"OnePlus 3T A3000 64GB Gunmetal","url":"/products/bltc37f44d9bc85f3ec","price":"539","discounted_price":"499","featured_image":{"uid":"blt2f02748d62b5d9df","created_at":"2017-09-28T06:56:13.016Z","updated_at":"2017-09-28T06:56:13.016Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"40674","tags":[],"filename":"one-plus-three-1x.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt2f02748d62b5d9df/59cc9d0d95fd2a0a0daa7424/download","ACL":{},"is_dir":false,"_version":1,"title":"one-plus-three-1x.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:42:37.885Z","user":"sys_bltcbfe73b68603b243"}},"product_images":[{"uid":"blt2f02748d62b5d9df","created_at":"2017-09-28T06:56:13.016Z","updated_at":"2017-09-28T06:56:13.016Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"40674","tags":[],"filename":"one-plus-three-1x.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt2f02748d62b5d9df/59cc9d0d95fd2a0a0daa7424/download","ACL":{},"is_dir":false,"_version":1,"title":"one-plus-three-1x.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:42:37.885Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"bltf061d797179b0013","created_at":"2017-09-28T06:56:20.954Z","updated_at":"2017-09-28T06:56:20.954Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"13187","tags":[],"filename":"one-plus-3-2.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/bltf061d797179b0013/59cc9d1475d9f7760dfc33e5/download","ACL":{},"is_dir":false,"_version":1,"title":"one-plus-3-2.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:42:31.431Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"blt7469869415aa6d33","created_at":"2017-09-28T06:56:24.656Z","updated_at":"2017-09-28T06:56:24.656Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"27485","tags":[],"filename":"one-plus-3-3.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt7469869415aa6d33/59cc9d183ef8e08c0d90ce29/download","ACL":{},"is_dir":false,"_version":1,"title":"one-plus-3-3.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:42:26.882Z","user":"sys_bltcbfe73b68603b243"}}],"description":"Snapdragon 821 6gb RAM Unlocked Smartphone","categories":["bltccd0ea06c1da94fd"],"related_products":["blt6c4014da5a782a25"],"tags":[],"locale":"en-us","uid":"bltc37f44d9bc85f3ec","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","created_at":"2017-09-28T06:57:55.574Z","updated_at":"2017-09-28T06:57:55.574Z","ACL":{},"_version":1,"publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.933Z","user":"sys_bltcbfe73b68603b243"},"_publish_environment":"blt922581483b3573b4","_publish_locale":"en-us","_publish_scheduled":false}],"tags":[],"locale":"en-us","uid":"blt70d3d8c86c566079","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","created_at":"2017-09-28T07:03:11.350Z","updated_at":"2017-09-28T07:03:11.350Z","ACL":{},"_version":1}}
1
+ {"entry":{"title":"Motorola Moto X4","url":"/products/blt70d3d8c86c566079","price":"500","discounted_price":"450","featured_image":{"uid":"bltcf9489a3cf1eaa00","created_at":"2017-09-28T07:02:20.745Z","updated_at":"2017-09-28T07:02:20.745Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"311812","tags":[],"filename":"1.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/bltcf9489a3cf1eaa00/59cc9e7c75d9f7760dfc33eb/download","ACL":{},"is_dir":false,"_version":1,"title":"1.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}},"product_images":[{"uid":"bltcf9489a3cf1eaa00","created_at":"2017-09-28T07:02:20.745Z","updated_at":"2017-09-28T07:02:20.745Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"311812","tags":[],"filename":"1.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/bltcf9489a3cf1eaa00/59cc9e7c75d9f7760dfc33eb/download","ACL":{},"is_dir":false,"_version":1,"title":"1.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"blt49a8b46c6839be12","created_at":"2017-09-28T07:02:30.108Z","updated_at":"2017-09-28T07:02:30.108Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"4226","tags":[],"filename":"2.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt49a8b46c6839be12/59cc9e86462a293417404402/download","ACL":{},"is_dir":false,"_version":1,"title":"2.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"bltb545ae58b0ab72bb","created_at":"2017-09-28T07:02:32.375Z","updated_at":"2017-09-28T07:02:32.375Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"5755","tags":[],"filename":"3.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/bltb545ae58b0ab72bb/59cc9e8895fd2a0a0daa742a/download","ACL":{},"is_dir":false,"_version":1,"title":"3.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"blt6af2dddde9d35e3c","created_at":"2017-09-28T07:02:36.507Z","updated_at":"2017-09-28T07:02:36.507Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"312464","tags":[],"filename":"4.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt6af2dddde9d35e3c/59cc9e8c75d9f7760dfc33f1/download","ACL":{},"is_dir":false,"_version":1,"title":"4.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.919Z","user":"sys_bltcbfe73b68603b243"}}],"description":"dual cameras.\nsingular design.\nAdvanced dual rear cameras for your best photos yet. Plus, a beautiful contoured glass and metal frame with an IP68 water resistance rating.* Coming soon.","categories":[{"title":"Smartphones","tags":[],"locale":"en-us","uid":"bltccd0ea06c1da94fd","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","created_at":"2017-09-28T06:07:37.132Z","updated_at":"2017-09-28T06:07:37.132Z","ACL":{},"_version":1,"publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.932Z","user":"sys_bltcbfe73b68603b243"},"_publish_environment":"blt922581483b3573b4","_publish_locale":"en-us","_publish_scheduled":false}],"related_products":[{"title":"OnePlus 3T A3000 64GB Gunmetal","url":"/products/bltc37f44d9bc85f3ec","price":"539","discounted_price":"499","featured_image":{"uid":"blt2f02748d62b5d9df","created_at":"2017-09-28T06:56:13.016Z","updated_at":"2017-09-28T06:56:13.016Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"40674","tags":[],"filename":"one-plus-three-1x.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt2f02748d62b5d9df/59cc9d0d95fd2a0a0daa7424/download","ACL":{},"is_dir":false,"_version":1,"title":"one-plus-three-1x.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:42:37.885Z","user":"sys_bltcbfe73b68603b243"}},"product_images":[{"uid":"blt2f02748d62b5d9df","created_at":"2017-09-28T06:56:13.016Z","updated_at":"2017-09-28T06:56:13.016Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"40674","tags":[],"filename":"one-plus-three-1x.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt2f02748d62b5d9df/59cc9d0d95fd2a0a0daa7424/download","ACL":{},"is_dir":false,"_version":1,"title":"one-plus-three-1x.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:42:37.885Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"bltf061d797179b0013","created_at":"2017-09-28T06:56:20.954Z","updated_at":"2017-09-28T06:56:20.954Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"13187","tags":[],"filename":"one-plus-3-2.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/bltf061d797179b0013/59cc9d1475d9f7760dfc33e5/download","ACL":{},"is_dir":false,"_version":1,"title":"one-plus-3-2.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:42:31.431Z","user":"sys_bltcbfe73b68603b243"}},{"uid":"blt7469869415aa6d33","created_at":"2017-09-28T06:56:24.656Z","updated_at":"2017-09-28T06:56:24.656Z","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","content_type":"image/jpeg","file_size":"27485","tags":[],"filename":"one-plus-3-3.jpg","url":"https://images.contentstack.io/v3/assets/bltc46be1ce6b7e1e24/blt7469869415aa6d33/59cc9d183ef8e08c0d90ce29/download","ACL":{},"is_dir":false,"_version":1,"title":"one-plus-3-3.jpg","publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:42:26.882Z","user":"sys_bltcbfe73b68603b243"}}],"description":"Snapdragon 821 6gb RAM Unlocked Smartphone","categories":["bltccd0ea06c1da94fd"],"related_products":["blt6c4014da5a782a25"],"tags":[],"locale":"en-us","uid":"bltc37f44d9bc85f3ec","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","created_at":"2017-09-28T06:57:55.574Z","updated_at":"2017-09-28T06:57:55.574Z","ACL":{},"_version":1,"publish_details":{"environment":"blt922581483b3573b4","locale":"en-us","time":"2017-09-28T09:28:47.933Z","user":"sys_bltcbfe73b68603b243"},"_publish_environment":"blt922581483b3573b4","_publish_locale":"en-us","_publish_scheduled":false}],"tags":[],"locale":"en-us","uid":"blt70d3d8c86c566079","created_by":"sys_bltcbfe73b68603b243","updated_by":"sys_bltcbfe73b68603b243","created_at":"2017-09-28T07:03:11.350Z","updated_at":"2017-09-28T07:03:11.350Z","ACL":{},"_version":1, "_owner":{"uid":"sys_bltcbfe73b68603b243","created_at":"2012-11-26T09:45:10.000Z","updated_at":"2017-09-15T16:06:07.920Z","email":"rohit.sharma@raweng.com","username":"rohit.sharma_blt50c79ab1","first_name":"Rohit","last_name":"Sharma","company":"raw engineering inc.","plan_id":["cms_plan"],"org_uid":["blt821f82ffcc171fed"]}}}
@@ -0,0 +1,2975 @@
1
+ {
2
+ "items": [
3
+ {
4
+ "event_at": "2019-08-23T11:19:21.065Z",
5
+ "content_type_uid": "track",
6
+ "type": "entry_published",
7
+ "data": {
8
+ "locale": "en-us",
9
+ "title": "Software Defined Data Center",
10
+ "tags": [],
11
+ "comment": "",
12
+ "sort_order": "1",
13
+ "track_color": "#f9b100",
14
+ "description": "",
15
+ "uid": "blt5b95889e8422ffec",
16
+ "created_by": "blt4dcb45b4456bb358",
17
+ "updated_by": "blt4dcb45b4456bb358",
18
+ "created_at": "2018-10-19T06:28:53.916Z",
19
+ "updated_at": "2019-08-23T11:19:17.086Z",
20
+ "_version": 3,
21
+ "publish_details": {
22
+ "environment": "blt5f66be5a7f2a4e70",
23
+ "locale": "en-us",
24
+ "time": "2019-08-23T11:19:21.065Z",
25
+ "user": "blt4dcb45b4456bb358"
26
+ }
27
+ }
28
+ },
29
+ {
30
+ "event_at": "2019-08-23T11:19:12.663Z",
31
+ "content_type_uid": "track",
32
+ "type": "entry_published",
33
+ "data": {
34
+ "locale": "en-us",
35
+ "title": "Partner Track Vmware Employee Submissions Only",
36
+ "tags": [],
37
+ "comment": "",
38
+ "sort_order": "",
39
+ "track_color": "#00485f",
40
+ "description": "",
41
+ "uid": "bltbbf807906ceaeb47",
42
+ "created_by": "blt4dcb45b4456bb358",
43
+ "updated_by": "blt4dcb45b4456bb358",
44
+ "created_at": "2018-10-19T06:28:52.032Z",
45
+ "updated_at": "2019-08-23T11:19:08.491Z",
46
+ "_version": 3,
47
+ "publish_details": {
48
+ "environment": "blt5f66be5a7f2a4e70",
49
+ "locale": "en-us",
50
+ "time": "2019-08-23T11:19:12.663Z",
51
+ "user": "blt4dcb45b4456bb358"
52
+ }
53
+ }
54
+ },
55
+ {
56
+ "event_at": "2019-08-23T11:19:03.996Z",
57
+ "content_type_uid": "track",
58
+ "type": "entry_published",
59
+ "data": {
60
+ "locale": "en-us",
61
+ "title": "General",
62
+ "tags": [],
63
+ "comment": "",
64
+ "sort_order": "4",
65
+ "track_color": "#1a173f",
66
+ "description": "",
67
+ "uid": "blt2172b018e574e46c",
68
+ "created_by": "blt4dcb45b4456bb358",
69
+ "updated_by": "blt4dcb45b4456bb358",
70
+ "created_at": "2018-10-19T06:28:50.109Z",
71
+ "updated_at": "2019-08-23T11:18:59.737Z",
72
+ "_version": 3,
73
+ "publish_details": {
74
+ "environment": "blt5f66be5a7f2a4e70",
75
+ "locale": "en-us",
76
+ "time": "2019-08-23T11:19:03.996Z",
77
+ "user": "blt4dcb45b4456bb358"
78
+ }
79
+ }
80
+ },
81
+ {
82
+ "event_at": "2019-01-09T07:11:53.213Z",
83
+ "content_type_uid": "session",
84
+ "type": "entry_published",
85
+ "data": {
86
+ "is_popular": false,
87
+ "title": "Case Study: How to Easily and Efficiently Migrate Complex Environments to VMware and Save on Your Data Protection Plan",
88
+ "type": "Breakout Sessions",
89
+ "session_id": 3033,
90
+ "tags": [],
91
+ "locale": "en-us",
92
+ "description": "",
93
+ "track": [
94
+ "blt587e38d1959a7f26"
95
+ ],
96
+ "start_time": "2018-08-27T05:45:00.000Z",
97
+ "end_time": "2018-08-27T07:30:00.000Z",
98
+ "speakers": [
99
+ "bltf0c03015a511e1d2",
100
+ "bltc30903268ba5a959"
101
+ ],
102
+ "room": [
103
+ "blt08538dbac8f0dd13"
104
+ ],
105
+ "uid": "blt623852a6d4abefa2",
106
+ "created_by": "blt4dcb45b4456bb358",
107
+ "updated_by": "blt4dcb45b4456bb358",
108
+ "created_at": "2018-10-19T06:27:17.937Z",
109
+ "updated_at": "2018-10-19T06:29:01.652Z",
110
+ "_version": 2,
111
+ "publish_details": {
112
+ "environment": "blt5f66be5a7f2a4e70",
113
+ "locale": "en-us",
114
+ "time": "2019-01-09T07:11:53.213Z",
115
+ "user": "bltb61988b6487d77cecadb2d65"
116
+ }
117
+ }
118
+ },
119
+ {
120
+ "event_at": "2019-01-09T07:05:11.291Z",
121
+ "content_type_uid": "session",
122
+ "type": "entry_published",
123
+ "data": {
124
+ "title": "Deep dive into Android Data Binding talk",
125
+ "session_id": 5213,
126
+ "description": "<p><span style=\"background-color: rgb(238, 238, 238); color: rgb(59, 56, 53); font-family: &quot;Helvetica Neue&quot;, Helvetica, Roboto, Arial, sans-serif;\">Deep dive into Android Data Binding talk&nbsp;</span><span style=\"background-color: rgb(238, 238, 238); color: rgb(59, 56, 53); font-family: &quot;Helvetica Neue&quot;, Helvetica, Roboto, Arial, sans-serif;\">Deep dive into Android Data Binding talk</span><span style=\"background-color: initial;\"></span></p>",
127
+ "type": "Panel Session",
128
+ "is_popular": true,
129
+ "track": [
130
+ "blteae1b5172b5dc027"
131
+ ],
132
+ "start_time": "2018-09-27T23:47:19.000Z",
133
+ "end_time": "2018-09-28T22:34:11.000Z",
134
+ "speakers": [
135
+ "blt22d66879df548e87",
136
+ "blt5d09a7e07905f338",
137
+ "bltf0c03015a511e1d2",
138
+ "bltc30903268ba5a959",
139
+ "blta7c0417b53673e77",
140
+ "blt793a3fba5f131892",
141
+ "blt55defbe962060672"
142
+ ],
143
+ "room": [
144
+ "bltceafc09d2b48c2db"
145
+ ],
146
+ "tags": [
147
+ "immne",
148
+ "d3d",
149
+ "3d3"
150
+ ],
151
+ "locale": "en-us",
152
+ "uid": "blt018d3ca225815219",
153
+ "created_by": "blt4dcb45b4456bb358",
154
+ "updated_by": "blt4dcb45b4456bb358",
155
+ "created_at": "2018-10-19T06:28:08.268Z",
156
+ "updated_at": "2018-10-19T06:29:57.697Z",
157
+ "_version": 2,
158
+ "publish_details": {
159
+ "environment": "blt5f66be5a7f2a4e70",
160
+ "locale": "en-us",
161
+ "time": "2019-01-09T07:05:11.291Z",
162
+ "user": "bltb61988b6487d77cecadb2d65"
163
+ }
164
+ }
165
+ },
166
+ {
167
+ "event_at": "2018-11-28T13:43:20.076Z",
168
+ "content_type_uid": "application_theme",
169
+ "type": "entry_published",
170
+ "data": {
171
+ "title": "App theme",
172
+ "url": "/app",
173
+ "application_background": "#f0f0f0",
174
+ "navigation_bar_color": "#e44956",
175
+ "navigation_text_color": "#ffffff",
176
+ "text_color": "#090909",
177
+ "detail_text_color": "#090986",
178
+ "selection_background_color": "#f5f6f8",
179
+ "selection_text_color": "#000000",
180
+ "tags": [],
181
+ "locale": "en-us",
182
+ "signin_signup_button_back_color": "#bbccbc",
183
+ "signin_signup_button_text_color": "#223344",
184
+ "sign_out_back_color": "#E44956",
185
+ "sign_out_text_color": "#412345",
186
+ "header_back_color": "#BBBBBB",
187
+ "header_text_color": "#000000",
188
+ "uid": "bltc0547ff9a2145712",
189
+ "created_by": "blt4dcb45b4456bb358",
190
+ "updated_by": "bltaaa8bcd236b7b661bbd710d6",
191
+ "created_at": "2018-10-19T06:27:07.340Z",
192
+ "updated_at": "2018-11-28T13:43:09.266Z",
193
+ "_version": 2,
194
+ "publish_details": {
195
+ "environment": "blt5f66be5a7f2a4e70",
196
+ "locale": "en-us",
197
+ "time": "2018-11-28T13:43:20.076Z",
198
+ "user": "bltaaa8bcd236b7b661bbd710d6"
199
+ }
200
+ }
201
+ },
202
+ {
203
+ "event_at": "2018-11-01T09:24:30.700Z",
204
+ "content_type_uid": "menu",
205
+ "type": "entry_published",
206
+ "data": {
207
+ "title": "Conference",
208
+ "url": "/conference",
209
+ "sequence": 2,
210
+ "menu_items": [
211
+ "blt0a0063db9d15fe77",
212
+ "bltef3423117c4d067b",
213
+ "bltf218b4e5361c7ff3"
214
+ ],
215
+ "link": [],
216
+ "tags": [],
217
+ "locale": "en-us",
218
+ "uid": "blt310967616ed0bf7b",
219
+ "created_by": "blt4dcb45b4456bb358",
220
+ "updated_by": "blt4dcb45b4456bb358",
221
+ "created_at": "2018-10-19T06:26:54.288Z",
222
+ "updated_at": "2018-10-30T12:05:09.961Z",
223
+ "_version": 4,
224
+ "publish_details": {
225
+ "environment": "blt5f66be5a7f2a4e70",
226
+ "locale": "en-us",
227
+ "time": "2018-11-01T09:24:30.700Z",
228
+ "user": "blt4dcb45b4456bb358"
229
+ }
230
+ }
231
+ },
232
+ {
233
+ "event_at": "2018-11-01T09:20:10.715Z",
234
+ "content_type_uid": "menu_items",
235
+ "type": "entry_published",
236
+ "data": {
237
+ "title": "FAQ",
238
+ "url": "/menu/faq",
239
+ "order": 2,
240
+ "image": null,
241
+ "tags": [],
242
+ "locale": "en-us",
243
+ "uid": "bltdc353c267541841b",
244
+ "created_by": "blt4dcb45b4456bb358",
245
+ "updated_by": "blt4dcb45b4456bb358",
246
+ "created_at": "2018-10-19T06:26:56.106Z",
247
+ "updated_at": "2018-10-19T06:26:56.106Z",
248
+ "_version": 1,
249
+ "publish_details": {
250
+ "environment": "blt5f66be5a7f2a4e70",
251
+ "locale": "en-us",
252
+ "time": "2018-11-01T09:20:10.715Z",
253
+ "user": "blt4dcb45b4456bb358"
254
+ }
255
+ }
256
+ },
257
+ {
258
+ "event_at": "2018-11-01T09:20:05.449Z",
259
+ "content_type_uid": "menu_items",
260
+ "type": "entry_published",
261
+ "data": {
262
+ "title": "Sponsors & Exhibitors",
263
+ "url": "/menu/sponsors-exibitors",
264
+ "image": null,
265
+ "tags": [],
266
+ "locale": "en-us",
267
+ "order": 3,
268
+ "uid": "bltef3423117c4d067b",
269
+ "created_by": "blt4dcb45b4456bb358",
270
+ "updated_by": "blt4dcb45b4456bb358",
271
+ "created_at": "2018-10-19T06:27:01.663Z",
272
+ "updated_at": "2018-10-19T06:27:01.663Z",
273
+ "_version": 1,
274
+ "publish_details": {
275
+ "environment": "blt5f66be5a7f2a4e70",
276
+ "locale": "en-us",
277
+ "time": "2018-11-01T09:20:05.449Z",
278
+ "user": "blt4dcb45b4456bb358"
279
+ }
280
+ }
281
+ },
282
+ {
283
+ "event_at": "2018-11-01T09:20:00.044Z",
284
+ "content_type_uid": "menu_items",
285
+ "type": "entry_published",
286
+ "data": {
287
+ "title": "Speakers",
288
+ "url": "/menu/speaker",
289
+ "image": null,
290
+ "tags": [],
291
+ "locale": "en-us",
292
+ "order": 2,
293
+ "uid": "bltf218b4e5361c7ff3",
294
+ "created_by": "blt4dcb45b4456bb358",
295
+ "updated_by": "blt4dcb45b4456bb358",
296
+ "created_at": "2018-10-19T06:27:03.610Z",
297
+ "updated_at": "2018-10-19T06:27:03.610Z",
298
+ "_version": 1,
299
+ "publish_details": {
300
+ "environment": "blt5f66be5a7f2a4e70",
301
+ "locale": "en-us",
302
+ "time": "2018-11-01T09:20:00.044Z",
303
+ "user": "blt4dcb45b4456bb358"
304
+ }
305
+ }
306
+ },
307
+ {
308
+ "event_at": "2018-11-01T09:19:24.714Z",
309
+ "content_type_uid": "menu",
310
+ "type": "entry_published",
311
+ "data": {
312
+ "title": "Attend",
313
+ "url": "/attend",
314
+ "sequence": 1,
315
+ "menu_items": [
316
+ "blt795a4161593ac0dc",
317
+ "bltdc353c267541841b"
318
+ ],
319
+ "link": [],
320
+ "tags": [],
321
+ "locale": "en-us",
322
+ "uid": "blt239137a9d995ac75",
323
+ "created_by": "blt4dcb45b4456bb358",
324
+ "updated_by": "blt4dcb45b4456bb358",
325
+ "created_at": "2018-10-19T06:26:52.407Z",
326
+ "updated_at": "2018-10-19T06:28:55.942Z",
327
+ "_version": 2,
328
+ "publish_details": {
329
+ "environment": "blt5f66be5a7f2a4e70",
330
+ "locale": "en-us",
331
+ "time": "2018-11-01T09:19:24.714Z",
332
+ "user": "blt4dcb45b4456bb358"
333
+ }
334
+ }
335
+ },
336
+ {
337
+ "event_at": "2018-10-26T07:57:16.033Z",
338
+ "content_type_uid": "conference",
339
+ "type": "entry_published",
340
+ "data": {
341
+ "title": "Conference 2018",
342
+ "url": "/Conference-2018",
343
+ "start_time": "2018-08-26T01:30:00.000Z",
344
+ "end_time": "2018-08-30T14:30:00.000Z",
345
+ "timezone": "US",
346
+ "description": "<div class=\"stylizedpageheader section\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; color: rgb(51, 51, 51); font-family: proxima_novalight; background-color: rgb(255, 255, 255);\"><div class=\"stylized-header section-custom\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-top: 25px; margin-bottom: 0px; width: 1280px; display: inline-block;\"><div class=\"container-fluid \" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-right: auto; margin-bottom: 0px; margin-left: auto; max-width: 100%; padding-right: 25px !important; padding-left: 25px !important;\"><div class=\"row\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px;\"><div class=\"col-md-12\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; padding-right: 0px; padding-left: 0px; width: 1230px;\"><h1 style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; font-size: 25px; font-family: proxima_novaregular; font-weight: 500; line-height: 1.1; color: rgb(86, 86, 86);\">Learn More About Conference 2018</h1><p style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-top: 10px; margin-bottom: 0px; font-family: proxima_novaregular; color: rgb(86, 86, 86); font-size: 18px; line-height: normal; text-align: justify;\">Conference 2018 US brings you five days of innovation to accelerate your journey to a software-defined business—from mobile devices to the data center and the cloud.&nbsp; Explore Conference&nbsp;2018.</p></div></div></div></div></div><div class=\"paragraphText parbase section\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; font-size: 0px; color: rgb(51, 51, 51); font-family: proxima_novalight; background-color: rgb(255, 255, 255); text-align: justify;\"><div class=\"section-custom \" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-top: 25px; margin-bottom: 25px; width: 1280px; display: inline-block; text-align: justify;\"><div class=\"container-fluid\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-right: auto; margin-bottom: 0px; margin-left: auto; max-width: 100%; padding-right: 25px !important; padding-left: 25px !important; text-align: justify;\"><div class=\"row\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; text-align: justify;\"><div class=\"col-md-12\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; padding-right: 0px; padding-left: 0px; width: 1230px; text-align: justify;\"><p style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; font-family: proxima_novaregular; color: rgb(86, 86, 86); font-size: 18px; line-height: normal; text-align: justify;\">Technology-driven innovation&nbsp;is disrupting every market and industry. And it’s being created by people like you. You unlock value from today’s technologies while anticipating a rapidly approaching technological future. That’s why we created an event with you and your peers in mind. At Conference&nbsp;2018,&nbsp;&nbsp;premier digital infrastructure event, you can find what you need to launch the digital transformation that relies on you.</p><p style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; font-family: proxima_novaregular; color: rgb(86, 86, 86); font-size: 18px; line-height: normal; text-align: justify;\">No matter what path you’re on, you’ll discover the technology, learn the trends, and meet the people that are shaping the future of digital business and taking IT to the next level. Welcome to a world where it all begins with you. Welcome to Conference&nbsp;2018.</p></div></div></div></div></div>",
347
+ "tags": [],
348
+ "locale": "en-us",
349
+ "conferecne_images": [],
350
+ "conference_links": [],
351
+ "conference_download": [],
352
+ "uid": "blt92addfb8d844b761",
353
+ "created_by": "blt4dcb45b4456bb358",
354
+ "updated_by": "blt4dcb45b4456bb358",
355
+ "created_at": "2018-10-19T06:26:50.617Z",
356
+ "updated_at": "2018-10-19T06:26:50.617Z",
357
+ "_version": 1,
358
+ "publish_details": {
359
+ "environment": "blt5f66be5a7f2a4e70",
360
+ "locale": "en-us",
361
+ "time": "2018-10-26T07:57:16.033Z",
362
+ "user": "blt4dcb45b4456bb358"
363
+ }
364
+ }
365
+ },
366
+ {
367
+ "event_at": "2018-10-19T06:57:33.063Z",
368
+ "content_type_uid": "session",
369
+ "type": "entry_published",
370
+ "data": {
371
+ "is_popular": false,
372
+ "title": "Putting Your Marketing Strategy to Work",
373
+ "type": "Breakout Sessions",
374
+ "session_id": 1538,
375
+ "tags": [],
376
+ "locale": "en-us",
377
+ "description": "",
378
+ "track": [
379
+ "blt587e38d1959a7f26"
380
+ ],
381
+ "start_time": "2018-08-27T09:30:00.000Z",
382
+ "end_time": "2018-08-27T10:30:00.000Z",
383
+ "speakers": [
384
+ "blt793a3fba5f131892",
385
+ "blta7c0417b53673e77"
386
+ ],
387
+ "room": [
388
+ "blt94b7bf6ea417cfe7"
389
+ ],
390
+ "uid": "bltb3e746c160783663",
391
+ "created_by": "blt4dcb45b4456bb358",
392
+ "updated_by": "blt4dcb45b4456bb358",
393
+ "created_at": "2018-10-19T06:27:16.264Z",
394
+ "updated_at": "2018-10-19T06:28:59.803Z",
395
+ "_version": 2,
396
+ "publish_details": {
397
+ "environment": "blt5f66be5a7f2a4e70",
398
+ "locale": "en-us",
399
+ "time": "2018-10-19T06:57:33.063Z",
400
+ "user": "blt4dcb45b4456bb358"
401
+ }
402
+ }
403
+ },
404
+ {
405
+ "event_at": "2018-10-19T06:57:32.995Z",
406
+ "content_type_uid": "room",
407
+ "type": "entry_published",
408
+ "data": {
409
+ "title": "Room 29",
410
+ "url": "/room-29",
411
+ "attendee": 80,
412
+ "tags": [],
413
+ "locale": "en-us",
414
+ "uid": "blt37e633f9a0808f96",
415
+ "created_by": "blt4dcb45b4456bb358",
416
+ "updated_by": "blt4dcb45b4456bb358",
417
+ "created_at": "2018-10-19T06:25:53.476Z",
418
+ "updated_at": "2018-10-19T06:25:53.476Z",
419
+ "_version": 1,
420
+ "publish_details": {
421
+ "environment": "blt5f66be5a7f2a4e70",
422
+ "locale": "en-us",
423
+ "time": "2018-10-19T06:57:32.995Z",
424
+ "user": "blt4dcb45b4456bb358"
425
+ }
426
+ }
427
+ },
428
+ {
429
+ "event_at": "2018-10-19T06:57:32.993Z",
430
+ "content_type_uid": "session",
431
+ "type": "entry_published",
432
+ "data": {
433
+ "is_popular": false,
434
+ "title": "The Economic Impact of Hyperconverged Infrastructure – A Panel Discussion",
435
+ "type": "Panel Session",
436
+ "session_id": 3016,
437
+ "tags": [],
438
+ "locale": "en-us",
439
+ "description": "",
440
+ "track": [
441
+ "blt587e38d1959a7f26"
442
+ ],
443
+ "start_time": "2018-08-27T10:30:00.000Z",
444
+ "end_time": "2018-08-27T12:00:00.000Z",
445
+ "speakers": [
446
+ "blt22d66879df548e87",
447
+ "bltb413490ea5124c8c"
448
+ ],
449
+ "room": [
450
+ "blt3bdf9d0138befa47"
451
+ ],
452
+ "uid": "bltf7995a699a1a3bd6",
453
+ "created_by": "blt4dcb45b4456bb358",
454
+ "updated_by": "blt4dcb45b4456bb358",
455
+ "created_at": "2018-10-19T06:27:19.941Z",
456
+ "updated_at": "2018-10-19T06:29:03.469Z",
457
+ "_version": 2,
458
+ "publish_details": {
459
+ "environment": "blt5f66be5a7f2a4e70",
460
+ "locale": "en-us",
461
+ "time": "2018-10-19T06:57:32.993Z",
462
+ "user": "blt4dcb45b4456bb358"
463
+ }
464
+ }
465
+ },
466
+ {
467
+ "event_at": "2018-10-19T06:57:32.986Z",
468
+ "content_type_uid": "room",
469
+ "type": "entry_published",
470
+ "data": {
471
+ "title": "Room 28",
472
+ "url": "/room-28",
473
+ "attendee": 70,
474
+ "tags": [],
475
+ "locale": "en-us",
476
+ "uid": "bltd297643cb1ad9baa",
477
+ "created_by": "blt4dcb45b4456bb358",
478
+ "updated_by": "blt4dcb45b4456bb358",
479
+ "created_at": "2018-10-19T06:25:55.180Z",
480
+ "updated_at": "2018-10-19T06:25:55.180Z",
481
+ "_version": 1,
482
+ "publish_details": {
483
+ "environment": "blt5f66be5a7f2a4e70",
484
+ "locale": "en-us",
485
+ "time": "2018-10-19T06:57:32.986Z",
486
+ "user": "blt4dcb45b4456bb358"
487
+ }
488
+ }
489
+ },
490
+ {
491
+ "event_at": "2018-10-19T06:57:32.254Z",
492
+ "content_type_uid": "room",
493
+ "type": "entry_published",
494
+ "data": {
495
+ "title": "Room 27",
496
+ "url": "/room-27",
497
+ "attendee": 30,
498
+ "tags": [],
499
+ "locale": "en-us",
500
+ "uid": "blt4380b891ae8dc307",
501
+ "created_by": "blt4dcb45b4456bb358",
502
+ "updated_by": "blt4dcb45b4456bb358",
503
+ "created_at": "2018-10-19T06:25:56.912Z",
504
+ "updated_at": "2018-10-19T06:25:56.912Z",
505
+ "_version": 1,
506
+ "publish_details": {
507
+ "environment": "blt5f66be5a7f2a4e70",
508
+ "locale": "en-us",
509
+ "time": "2018-10-19T06:57:32.254Z",
510
+ "user": "blt4dcb45b4456bb358"
511
+ }
512
+ }
513
+ },
514
+ {
515
+ "event_at": "2018-10-19T06:57:32.183Z",
516
+ "content_type_uid": "session",
517
+ "type": "entry_published",
518
+ "data": {
519
+ "is_popular": false,
520
+ "title": "Advanced Network Designs for Data Center Transformation",
521
+ "type": "Breakout Session",
522
+ "session_id": 2949,
523
+ "tags": [],
524
+ "locale": "en-us",
525
+ "description": "",
526
+ "track": [
527
+ "blt60685af554899da3"
528
+ ],
529
+ "start_time": "2018-08-27T06:00:00.000Z",
530
+ "end_time": "2018-08-27T07:00:00.000Z",
531
+ "speakers": [
532
+ "blt22d66879df548e87",
533
+ "bltb413490ea5124c8c"
534
+ ],
535
+ "room": [
536
+ "bltaec151e7b111d6d9"
537
+ ],
538
+ "uid": "blt685e557fa1b4f709",
539
+ "created_by": "blt4dcb45b4456bb358",
540
+ "updated_by": "blt4dcb45b4456bb358",
541
+ "created_at": "2018-10-19T06:27:21.608Z",
542
+ "updated_at": "2018-10-19T06:29:05.297Z",
543
+ "_version": 2,
544
+ "publish_details": {
545
+ "environment": "blt5f66be5a7f2a4e70",
546
+ "locale": "en-us",
547
+ "time": "2018-10-19T06:57:32.183Z",
548
+ "user": "blt4dcb45b4456bb358"
549
+ }
550
+ }
551
+ },
552
+ {
553
+ "event_at": "2018-10-19T06:57:32.111Z",
554
+ "content_type_uid": "room",
555
+ "type": "entry_published",
556
+ "data": {
557
+ "title": "Room 26",
558
+ "url": "/room-26",
559
+ "attendee": 10,
560
+ "tags": [],
561
+ "locale": "en-us",
562
+ "uid": "blta6bf9bff111a7124",
563
+ "created_by": "blt4dcb45b4456bb358",
564
+ "updated_by": "blt4dcb45b4456bb358",
565
+ "created_at": "2018-10-19T06:25:58.908Z",
566
+ "updated_at": "2018-10-19T06:25:58.908Z",
567
+ "_version": 1,
568
+ "publish_details": {
569
+ "environment": "blt5f66be5a7f2a4e70",
570
+ "locale": "en-us",
571
+ "time": "2018-10-19T06:57:32.111Z",
572
+ "user": "blt4dcb45b4456bb358"
573
+ }
574
+ }
575
+ },
576
+ {
577
+ "event_at": "2018-10-19T06:57:31.954Z",
578
+ "content_type_uid": "room",
579
+ "type": "entry_published",
580
+ "data": {
581
+ "title": "Room 25",
582
+ "url": "/room-25",
583
+ "attendee": 90,
584
+ "tags": [],
585
+ "locale": "en-us",
586
+ "uid": "blt4858341784647509",
587
+ "created_by": "blt4dcb45b4456bb358",
588
+ "updated_by": "blt4dcb45b4456bb358",
589
+ "created_at": "2018-10-19T06:26:00.650Z",
590
+ "updated_at": "2018-10-19T06:26:00.650Z",
591
+ "_version": 1,
592
+ "publish_details": {
593
+ "environment": "blt5f66be5a7f2a4e70",
594
+ "locale": "en-us",
595
+ "time": "2018-10-19T06:57:31.954Z",
596
+ "user": "blt4dcb45b4456bb358"
597
+ }
598
+ }
599
+ },
600
+ {
601
+ "event_at": "2018-10-19T06:57:31.904Z",
602
+ "content_type_uid": "session",
603
+ "type": "entry_published",
604
+ "data": {
605
+ "is_popular": false,
606
+ "title": "Scale-Out NSX Deployments: With VMware-powered SDDC Converged Infrastructure Solution",
607
+ "type": "Breakout Session",
608
+ "session_id": 2318,
609
+ "tags": [],
610
+ "locale": "en-us",
611
+ "description": "",
612
+ "track": [
613
+ "blt8d64bab84f3a4ae7"
614
+ ],
615
+ "start_time": "2018-08-27T05:30:00.000Z",
616
+ "end_time": "2018-08-27T06:30:00.000Z",
617
+ "speakers": [
618
+ "blt967e606131235d86",
619
+ "blteabd5b85bf9202fa",
620
+ "blt29de38c9d84fa5d4"
621
+ ],
622
+ "room": [
623
+ "blt861217f125f309ab"
624
+ ],
625
+ "uid": "blt338db7d268edb93c",
626
+ "created_by": "blt4dcb45b4456bb358",
627
+ "updated_by": "blt4dcb45b4456bb358",
628
+ "created_at": "2018-10-19T06:27:23.451Z",
629
+ "updated_at": "2018-10-19T06:29:07.076Z",
630
+ "_version": 2,
631
+ "publish_details": {
632
+ "environment": "blt5f66be5a7f2a4e70",
633
+ "locale": "en-us",
634
+ "time": "2018-10-19T06:57:31.904Z",
635
+ "user": "blt4dcb45b4456bb358"
636
+ }
637
+ }
638
+ },
639
+ {
640
+ "event_at": "2018-10-19T06:57:31.386Z",
641
+ "content_type_uid": "session",
642
+ "type": "entry_published",
643
+ "data": {
644
+ "is_popular": false,
645
+ "title": "Configure vCloud Automation Center Database with Replication in Less than 30 Minutes: VMware Postgres Installation and Replication",
646
+ "type": "Breakout Session",
647
+ "session_id": 2375,
648
+ "tags": [],
649
+ "locale": "en-us",
650
+ "description": "",
651
+ "track": [
652
+ "blt18e0f69e7dfd1c61"
653
+ ],
654
+ "start_time": "2018-08-27T06:30:00.000Z",
655
+ "end_time": "2018-08-27T08:30:00.000Z",
656
+ "speakers": [
657
+ "blt4c9102a8aefda4c4",
658
+ "blt2c851a229bb6e737",
659
+ "blt967e606131235d86"
660
+ ],
661
+ "room": [
662
+ "blt16d673acd93d4bd3"
663
+ ],
664
+ "uid": "bltbe9640817efeebd2",
665
+ "created_by": "blt4dcb45b4456bb358",
666
+ "updated_by": "blt4dcb45b4456bb358",
667
+ "created_at": "2018-10-19T06:27:30.514Z",
668
+ "updated_at": "2018-10-19T06:29:15.173Z",
669
+ "_version": 2,
670
+ "publish_details": {
671
+ "environment": "blt5f66be5a7f2a4e70",
672
+ "locale": "en-us",
673
+ "time": "2018-10-19T06:57:31.386Z",
674
+ "user": "blt4dcb45b4456bb358"
675
+ }
676
+ }
677
+ },
678
+ {
679
+ "event_at": "2018-10-19T06:57:31.337Z",
680
+ "content_type_uid": "session",
681
+ "type": "entry_published",
682
+ "data": {
683
+ "is_popular": false,
684
+ "title": "Restores for any occasion: 39 restore scenarios from one Veeam backup",
685
+ "type": "Solutions Exchange Theater Booth 1901",
686
+ "session_id": 3156,
687
+ "tags": [],
688
+ "locale": "en-us",
689
+ "description": "",
690
+ "track": [
691
+ "blt8d64bab84f3a4ae7"
692
+ ],
693
+ "start_time": "2018-08-27T08:00:00.000Z",
694
+ "end_time": "2018-08-27T08:30:00.000Z",
695
+ "speakers": [
696
+ "blt55defbe962060672",
697
+ "blt1764946f6d863301",
698
+ "blt2c851a229bb6e737"
699
+ ],
700
+ "room": [
701
+ "blt78b4d02da5b52fd5"
702
+ ],
703
+ "uid": "blta25b4da778834eba",
704
+ "created_by": "blt4dcb45b4456bb358",
705
+ "updated_by": "blt4dcb45b4456bb358",
706
+ "created_at": "2018-10-19T06:27:25.189Z",
707
+ "updated_at": "2018-10-19T06:29:08.943Z",
708
+ "_version": 2,
709
+ "publish_details": {
710
+ "environment": "blt5f66be5a7f2a4e70",
711
+ "locale": "en-us",
712
+ "time": "2018-10-19T06:57:31.337Z",
713
+ "user": "blt4dcb45b4456bb358"
714
+ }
715
+ }
716
+ },
717
+ {
718
+ "event_at": "2018-10-19T06:57:31.252Z",
719
+ "content_type_uid": "room",
720
+ "type": "entry_published",
721
+ "data": {
722
+ "title": "Room 23",
723
+ "url": "/room-23",
724
+ "attendee": 80,
725
+ "tags": [],
726
+ "locale": "en-us",
727
+ "uid": "bltceafc09d2b48c2db",
728
+ "created_by": "blt4dcb45b4456bb358",
729
+ "updated_by": "blt4dcb45b4456bb358",
730
+ "created_at": "2018-10-19T06:26:04.295Z",
731
+ "updated_at": "2018-10-19T06:26:04.295Z",
732
+ "_version": 1,
733
+ "publish_details": {
734
+ "environment": "blt5f66be5a7f2a4e70",
735
+ "locale": "en-us",
736
+ "time": "2018-10-19T06:57:31.252Z",
737
+ "user": "blt4dcb45b4456bb358"
738
+ }
739
+ }
740
+ },
741
+ {
742
+ "event_at": "2018-10-19T06:57:31.252Z",
743
+ "content_type_uid": "room",
744
+ "type": "entry_published",
745
+ "data": {
746
+ "title": "Room 24",
747
+ "url": "/room-24",
748
+ "attendee": 60,
749
+ "tags": [],
750
+ "locale": "en-us",
751
+ "uid": "blt2589980af3e20643",
752
+ "created_by": "blt4dcb45b4456bb358",
753
+ "updated_by": "blt4dcb45b4456bb358",
754
+ "created_at": "2018-10-19T06:26:02.558Z",
755
+ "updated_at": "2018-10-19T06:26:02.558Z",
756
+ "_version": 1,
757
+ "publish_details": {
758
+ "environment": "blt5f66be5a7f2a4e70",
759
+ "locale": "en-us",
760
+ "time": "2018-10-19T06:57:31.252Z",
761
+ "user": "blt4dcb45b4456bb358"
762
+ }
763
+ }
764
+ },
765
+ {
766
+ "event_at": "2018-10-19T06:57:31.251Z",
767
+ "content_type_uid": "session",
768
+ "type": "entry_published",
769
+ "data": {
770
+ "is_popular": false,
771
+ "title": "Chasing the White Rabbit all the Way to Wonderland: Extending vCloud Automation Center Requests with vCenter Orchestrator",
772
+ "type": "Breakout Session",
773
+ "session_id": 2525,
774
+ "tags": [],
775
+ "locale": "en-us",
776
+ "description": "",
777
+ "track": [
778
+ "blt8d64bab84f3a4ae7"
779
+ ],
780
+ "start_time": "2018-08-27T07:30:00.000Z",
781
+ "end_time": "2018-08-27T08:00:00.000Z",
782
+ "speakers": [
783
+ "blt29de38c9d84fa5d4",
784
+ "blt49d813e013e9ca60"
785
+ ],
786
+ "room": [
787
+ "bltceafc09d2b48c2db"
788
+ ],
789
+ "uid": "blt3b965e8d65902bf6",
790
+ "created_by": "blt4dcb45b4456bb358",
791
+ "updated_by": "blt4dcb45b4456bb358",
792
+ "created_at": "2018-10-19T06:27:26.892Z",
793
+ "updated_at": "2018-10-19T06:29:10.884Z",
794
+ "_version": 2,
795
+ "publish_details": {
796
+ "environment": "blt5f66be5a7f2a4e70",
797
+ "locale": "en-us",
798
+ "time": "2018-10-19T06:57:31.251Z",
799
+ "user": "blt4dcb45b4456bb358"
800
+ }
801
+ }
802
+ },
803
+ {
804
+ "event_at": "2018-10-19T06:57:30.577Z",
805
+ "content_type_uid": "speaker",
806
+ "type": "entry_published",
807
+ "data": {
808
+ "title": "Deepak Patil",
809
+ "url": "/deepak-patil",
810
+ "full_name": "Deepak Patil",
811
+ "tags": [],
812
+ "locale": "en-us",
813
+ "organization": "",
814
+ "profile_image": "blt777dd2715f8ee4a7",
815
+ "job_title": "",
816
+ "bio": "<p><span style=\"font-size: 16px;\"></span><span style=\"font-size: 16px;\">Technology-driven innovation&nbsp;is disrupting every market and industry. And it’s being created by people like you. You unlock value from today’s technologies while anticipating a rapidly approaching technological future. That’s why we created an event with you and your peers in mind. At&nbsp;2018,&nbsp;VMware’s premier digital infrastructure event, you can find what you need to launch the digital transformation that relies on you.</span></p>",
817
+ "social_profile": [],
818
+ "is_featured": false,
819
+ "featured_order": null,
820
+ "uid": "blt47b3834af0205025",
821
+ "created_by": "blt4dcb45b4456bb358",
822
+ "updated_by": "blt4dcb45b4456bb358",
823
+ "created_at": "2018-10-19T06:25:06.489Z",
824
+ "updated_at": "2018-10-19T06:25:06.489Z",
825
+ "_version": 1,
826
+ "publish_details": {
827
+ "environment": "blt5f66be5a7f2a4e70",
828
+ "locale": "en-us",
829
+ "time": "2018-10-19T06:57:30.577Z",
830
+ "user": "blt4dcb45b4456bb358"
831
+ }
832
+ }
833
+ },
834
+ {
835
+ "event_at": "2018-10-19T06:57:30.546Z",
836
+ "content_type_uid": "room",
837
+ "type": "entry_published",
838
+ "data": {
839
+ "title": "Room 21",
840
+ "url": "/room-21",
841
+ "attendee": 60,
842
+ "tags": [],
843
+ "locale": "en-us",
844
+ "uid": "bltaec151e7b111d6d9",
845
+ "created_by": "blt4dcb45b4456bb358",
846
+ "updated_by": "blt4dcb45b4456bb358",
847
+ "created_at": "2018-10-19T06:26:08.344Z",
848
+ "updated_at": "2018-10-19T06:26:08.344Z",
849
+ "_version": 1,
850
+ "publish_details": {
851
+ "environment": "blt5f66be5a7f2a4e70",
852
+ "locale": "en-us",
853
+ "time": "2018-10-19T06:57:30.546Z",
854
+ "user": "blt4dcb45b4456bb358"
855
+ }
856
+ }
857
+ },
858
+ {
859
+ "event_at": "2018-10-19T06:57:30.446Z",
860
+ "content_type_uid": "room",
861
+ "type": "entry_published",
862
+ "data": {
863
+ "title": "Room 22",
864
+ "url": "/room-22",
865
+ "attendee": 60,
866
+ "tags": [],
867
+ "locale": "en-us",
868
+ "uid": "blt78b4d02da5b52fd5",
869
+ "created_by": "blt4dcb45b4456bb358",
870
+ "updated_by": "blt4dcb45b4456bb358",
871
+ "created_at": "2018-10-19T06:26:06.390Z",
872
+ "updated_at": "2018-10-19T06:26:06.390Z",
873
+ "_version": 1,
874
+ "publish_details": {
875
+ "environment": "blt5f66be5a7f2a4e70",
876
+ "locale": "en-us",
877
+ "time": "2018-10-19T06:57:30.446Z",
878
+ "user": "blt4dcb45b4456bb358"
879
+ }
880
+ }
881
+ },
882
+ {
883
+ "event_at": "2018-10-19T06:57:30.392Z",
884
+ "content_type_uid": "speaker",
885
+ "type": "entry_published",
886
+ "data": {
887
+ "title": "Zubair Ansari",
888
+ "url": "/zubair-ansari",
889
+ "full_name": "Zubair Ansari",
890
+ "tags": [],
891
+ "locale": "en-us",
892
+ "organization": "",
893
+ "profile_image": "bltec2436f4dfef03ae",
894
+ "job_title": "",
895
+ "bio": "",
896
+ "social_profile": [],
897
+ "is_featured": false,
898
+ "featured_order": null,
899
+ "uid": "blteeb4b7e0f6146435",
900
+ "created_by": "blt4dcb45b4456bb358",
901
+ "updated_by": "blt4dcb45b4456bb358",
902
+ "created_at": "2018-10-19T06:25:08.291Z",
903
+ "updated_at": "2018-10-19T06:25:08.291Z",
904
+ "_version": 1,
905
+ "publish_details": {
906
+ "environment": "blt5f66be5a7f2a4e70",
907
+ "locale": "en-us",
908
+ "time": "2018-10-19T06:57:30.392Z",
909
+ "user": "blt4dcb45b4456bb358"
910
+ }
911
+ }
912
+ },
913
+ {
914
+ "event_at": "2018-10-19T06:57:30.237Z",
915
+ "content_type_uid": "room",
916
+ "type": "entry_published",
917
+ "data": {
918
+ "title": "Room 17",
919
+ "url": "/room-17",
920
+ "attendee": 60,
921
+ "tags": [],
922
+ "locale": "en-us",
923
+ "uid": "blt338464bf155eb0bf",
924
+ "created_by": "blt4dcb45b4456bb358",
925
+ "updated_by": "blt4dcb45b4456bb358",
926
+ "created_at": "2018-10-19T06:26:13.503Z",
927
+ "updated_at": "2018-10-19T06:26:13.503Z",
928
+ "_version": 1,
929
+ "publish_details": {
930
+ "environment": "blt5f66be5a7f2a4e70",
931
+ "locale": "en-us",
932
+ "time": "2018-10-19T06:57:30.237Z",
933
+ "user": "blt4dcb45b4456bb358"
934
+ }
935
+ }
936
+ },
937
+ {
938
+ "event_at": "2018-10-19T06:57:30.231Z",
939
+ "content_type_uid": "session",
940
+ "type": "entry_published",
941
+ "data": {
942
+ "is_popular": false,
943
+ "title": "Successfully Achieving SDDC Goals In Spite of Dynamic Change",
944
+ "type": "Breakout Session",
945
+ "session_id": 2463,
946
+ "tags": [],
947
+ "locale": "en-us",
948
+ "description": "",
949
+ "track": [
950
+ "blt18e0f69e7dfd1c61"
951
+ ],
952
+ "start_time": "2018-08-27T08:30:00.000Z",
953
+ "end_time": "2018-08-27T09:30:00.000Z",
954
+ "speakers": [
955
+ "blte6ad40da40b67f0b",
956
+ "blt29de38c9d84fa5d4",
957
+ "blteabd5b85bf9202fa"
958
+ ],
959
+ "room": [
960
+ "blte5b4ee0d94f5af19"
961
+ ],
962
+ "uid": "blteeee16f727860cfc",
963
+ "created_by": "blt4dcb45b4456bb358",
964
+ "updated_by": "blt4dcb45b4456bb358",
965
+ "created_at": "2018-10-19T06:27:28.668Z",
966
+ "updated_at": "2018-10-19T06:29:13.117Z",
967
+ "_version": 2,
968
+ "publish_details": {
969
+ "environment": "blt5f66be5a7f2a4e70",
970
+ "locale": "en-us",
971
+ "time": "2018-10-19T06:57:30.231Z",
972
+ "user": "blt4dcb45b4456bb358"
973
+ }
974
+ }
975
+ },
976
+ {
977
+ "event_at": "2018-10-19T06:57:29.547Z",
978
+ "content_type_uid": "speaker",
979
+ "type": "entry_published",
980
+ "data": {
981
+ "title": "Tarak Parekh",
982
+ "url": "/tarak-parekh",
983
+ "full_name": "Tarak Parekh",
984
+ "tags": [],
985
+ "locale": "en-us",
986
+ "uid": "blt5d09a7e07905f338",
987
+ "created_by": "blt4dcb45b4456bb358",
988
+ "updated_by": "blt4dcb45b4456bb358",
989
+ "created_at": "2018-10-19T06:25:15.372Z",
990
+ "updated_at": "2018-10-19T06:25:15.372Z",
991
+ "_version": 1,
992
+ "is_featured": false,
993
+ "publish_details": {
994
+ "environment": "blt5f66be5a7f2a4e70",
995
+ "locale": "en-us",
996
+ "time": "2018-10-19T06:57:29.547Z",
997
+ "user": "blt4dcb45b4456bb358"
998
+ }
999
+ }
1000
+ },
1001
+ {
1002
+ "event_at": "2018-10-19T06:57:29.517Z",
1003
+ "content_type_uid": "session",
1004
+ "type": "entry_published",
1005
+ "data": {
1006
+ "title": "Are Memory and Storage Keeping up with the Cloud and Virtualization?",
1007
+ "session_id": 3108,
1008
+ "type": "Breakout Session",
1009
+ "is_popular": false,
1010
+ "tags": [],
1011
+ "locale": "en-us",
1012
+ "description": "",
1013
+ "track": [
1014
+ "blt8a1a4ec74fd7392a"
1015
+ ],
1016
+ "start_time": "2018-08-27T11:30:00.000Z",
1017
+ "end_time": "2018-08-27T12:30:00.000Z",
1018
+ "speakers": [
1019
+ "blt3a2ae762e224ecba",
1020
+ "blt30f79a6374513fd8",
1021
+ "blt2c851a229bb6e737"
1022
+ ],
1023
+ "room": [
1024
+ "blt3bdf9d0138befa47"
1025
+ ],
1026
+ "uid": "blta267b987293299c8",
1027
+ "created_by": "blt4dcb45b4456bb358",
1028
+ "updated_by": "blt4dcb45b4456bb358",
1029
+ "created_at": "2018-10-19T06:27:32.514Z",
1030
+ "updated_at": "2018-10-19T06:29:17.966Z",
1031
+ "_version": 2,
1032
+ "publish_details": {
1033
+ "environment": "blt5f66be5a7f2a4e70",
1034
+ "locale": "en-us",
1035
+ "time": "2018-10-19T06:57:29.517Z",
1036
+ "user": "blt4dcb45b4456bb358"
1037
+ }
1038
+ }
1039
+ },
1040
+ {
1041
+ "event_at": "2018-10-19T06:57:29.415Z",
1042
+ "content_type_uid": "room",
1043
+ "type": "entry_published",
1044
+ "data": {
1045
+ "title": "Room 18",
1046
+ "url": "/room-18",
1047
+ "attendee": 20,
1048
+ "tags": [],
1049
+ "locale": "en-us",
1050
+ "uid": "bltd7b95453aec2fad9",
1051
+ "created_by": "blt4dcb45b4456bb358",
1052
+ "updated_by": "blt4dcb45b4456bb358",
1053
+ "created_at": "2018-10-19T06:26:11.748Z",
1054
+ "updated_at": "2018-10-19T06:26:11.748Z",
1055
+ "_version": 1,
1056
+ "publish_details": {
1057
+ "environment": "blt5f66be5a7f2a4e70",
1058
+ "locale": "en-us",
1059
+ "time": "2018-10-19T06:57:29.415Z",
1060
+ "user": "blt4dcb45b4456bb358"
1061
+ }
1062
+ }
1063
+ },
1064
+ {
1065
+ "event_at": "2018-10-19T06:57:29.414Z",
1066
+ "content_type_uid": "room",
1067
+ "type": "entry_published",
1068
+ "data": {
1069
+ "title": "Room 12",
1070
+ "url": "/room-12",
1071
+ "attendee": 60,
1072
+ "tags": [],
1073
+ "locale": "en-us",
1074
+ "uid": "bltb6c3c6eee679753f",
1075
+ "created_by": "blt4dcb45b4456bb358",
1076
+ "updated_by": "blt4dcb45b4456bb358",
1077
+ "created_at": "2018-10-19T06:26:16.857Z",
1078
+ "updated_at": "2018-10-19T06:26:16.857Z",
1079
+ "_version": 1,
1080
+ "publish_details": {
1081
+ "environment": "blt5f66be5a7f2a4e70",
1082
+ "locale": "en-us",
1083
+ "time": "2018-10-19T06:57:29.414Z",
1084
+ "user": "blt4dcb45b4456bb358"
1085
+ }
1086
+ }
1087
+ },
1088
+ {
1089
+ "event_at": "2018-10-19T06:57:29.321Z",
1090
+ "content_type_uid": "speaker",
1091
+ "type": "entry_published",
1092
+ "data": {
1093
+ "title": "Chima Njaka",
1094
+ "url": "/product-line-manager",
1095
+ "full_name": "Chima Njaka",
1096
+ "tags": [],
1097
+ "locale": "en-us",
1098
+ "organization": "",
1099
+ "profile_image": "blt2fafa6c39f7863cd",
1100
+ "job_title": "",
1101
+ "bio": "",
1102
+ "social_profile": [],
1103
+ "is_featured": false,
1104
+ "featured_order": null,
1105
+ "uid": "bltb413490ea5124c8c",
1106
+ "created_by": "blt4dcb45b4456bb358",
1107
+ "updated_by": "blt4dcb45b4456bb358",
1108
+ "created_at": "2018-10-19T06:25:10.361Z",
1109
+ "updated_at": "2018-10-19T06:25:10.361Z",
1110
+ "_version": 1,
1111
+ "publish_details": {
1112
+ "environment": "blt5f66be5a7f2a4e70",
1113
+ "locale": "en-us",
1114
+ "time": "2018-10-19T06:57:29.321Z",
1115
+ "user": "blt4dcb45b4456bb358"
1116
+ }
1117
+ }
1118
+ },
1119
+ {
1120
+ "event_at": "2018-10-19T06:57:29.178Z",
1121
+ "content_type_uid": "speaker",
1122
+ "type": "entry_published",
1123
+ "data": {
1124
+ "title": "Luca Dell'Oca",
1125
+ "url": "/luca-dell-oca",
1126
+ "full_name": "Luca Dell'Oca",
1127
+ "tags": [],
1128
+ "locale": "en-us",
1129
+ "organization": "Moresi.Com SA",
1130
+ "profile_image": "bltcc5b6bd58eb172c7",
1131
+ "job_title": "",
1132
+ "bio": "",
1133
+ "social_profile": [],
1134
+ "is_featured": false,
1135
+ "featured_order": null,
1136
+ "uid": "blt22d66879df548e87",
1137
+ "created_by": "blt4dcb45b4456bb358",
1138
+ "updated_by": "blt4dcb45b4456bb358",
1139
+ "created_at": "2018-10-19T06:25:12.420Z",
1140
+ "updated_at": "2018-10-19T06:25:12.420Z",
1141
+ "_version": 1,
1142
+ "publish_details": {
1143
+ "environment": "blt5f66be5a7f2a4e70",
1144
+ "locale": "en-us",
1145
+ "time": "2018-10-19T06:57:29.178Z",
1146
+ "user": "blt4dcb45b4456bb358"
1147
+ }
1148
+ }
1149
+ },
1150
+ {
1151
+ "event_at": "2018-10-19T06:57:28.866Z",
1152
+ "content_type_uid": "session",
1153
+ "type": "entry_published",
1154
+ "data": {
1155
+ "is_popular": false,
1156
+ "title": "Converting your Physical Microsoft Exchange 2013 into a Highly Available and Performing Application in your Newly Virtualized Environment",
1157
+ "type": "Breakout Session",
1158
+ "session_id": 2652,
1159
+ "tags": [],
1160
+ "locale": "en-us",
1161
+ "description": "",
1162
+ "track": [
1163
+ "blt94a4fd987e420824"
1164
+ ],
1165
+ "start_time": "2018-08-27T13:30:00.000Z",
1166
+ "end_time": "2018-08-27T14:30:00.000Z",
1167
+ "speakers": [
1168
+ "blt6cd266d2cff390bb",
1169
+ "blt3a2ae762e224ecba",
1170
+ "blt30f79a6374513fd8"
1171
+ ],
1172
+ "room": [
1173
+ "blt94b7bf6ea417cfe7"
1174
+ ],
1175
+ "uid": "bltf50c9e5fbef25393",
1176
+ "created_by": "blt4dcb45b4456bb358",
1177
+ "updated_by": "blt4dcb45b4456bb358",
1178
+ "created_at": "2018-10-19T06:27:34.302Z",
1179
+ "updated_at": "2018-10-19T06:29:20.075Z",
1180
+ "_version": 2,
1181
+ "publish_details": {
1182
+ "environment": "blt5f66be5a7f2a4e70",
1183
+ "locale": "en-us",
1184
+ "time": "2018-10-19T06:57:28.866Z",
1185
+ "user": "blt4dcb45b4456bb358"
1186
+ }
1187
+ }
1188
+ },
1189
+ {
1190
+ "event_at": "2018-10-19T06:57:28.838Z",
1191
+ "content_type_uid": "speaker",
1192
+ "type": "entry_published",
1193
+ "data": {
1194
+ "title": "Benjamin Caller",
1195
+ "url": "/benjamin-caller",
1196
+ "full_name": "Benjamin Caller",
1197
+ "tags": [],
1198
+ "locale": "en-us",
1199
+ "uid": "bltf0c03015a511e1d2",
1200
+ "created_by": "blt4dcb45b4456bb358",
1201
+ "updated_by": "blt4dcb45b4456bb358",
1202
+ "created_at": "2018-10-19T06:25:17.085Z",
1203
+ "updated_at": "2018-10-19T06:25:17.085Z",
1204
+ "_version": 1,
1205
+ "is_featured": false,
1206
+ "publish_details": {
1207
+ "environment": "blt5f66be5a7f2a4e70",
1208
+ "locale": "en-us",
1209
+ "time": "2018-10-19T06:57:28.838Z",
1210
+ "user": "blt4dcb45b4456bb358"
1211
+ }
1212
+ }
1213
+ },
1214
+ {
1215
+ "event_at": "2018-10-19T06:57:28.782Z",
1216
+ "content_type_uid": "room",
1217
+ "type": "entry_published",
1218
+ "data": {
1219
+ "title": "Room 13",
1220
+ "url": "/room-13",
1221
+ "attendee": 60,
1222
+ "tags": [],
1223
+ "locale": "en-us",
1224
+ "uid": "blt16d673acd93d4bd3",
1225
+ "created_by": "blt4dcb45b4456bb358",
1226
+ "updated_by": "blt4dcb45b4456bb358",
1227
+ "created_at": "2018-10-19T06:26:15.182Z",
1228
+ "updated_at": "2018-10-19T06:26:15.182Z",
1229
+ "_version": 1,
1230
+ "publish_details": {
1231
+ "environment": "blt5f66be5a7f2a4e70",
1232
+ "locale": "en-us",
1233
+ "time": "2018-10-19T06:57:28.782Z",
1234
+ "user": "blt4dcb45b4456bb358"
1235
+ }
1236
+ }
1237
+ },
1238
+ {
1239
+ "event_at": "2018-10-19T06:57:28.706Z",
1240
+ "content_type_uid": "session",
1241
+ "type": "entry_published",
1242
+ "data": {
1243
+ "is_popular": false,
1244
+ "title": "Transforming the Enterprise to Software-Defined Enterprise",
1245
+ "type": "Breakout Session",
1246
+ "session_id": 2662,
1247
+ "tags": [],
1248
+ "locale": "en-us",
1249
+ "description": "",
1250
+ "track": [
1251
+ "blt5b95889e8422ffec"
1252
+ ],
1253
+ "start_time": "2018-08-27T07:30:00.000Z",
1254
+ "end_time": "2018-08-27T08:30:00.000Z",
1255
+ "speakers": [
1256
+ "blt793a3fba5f131892",
1257
+ "blt139ca7314f8e196c"
1258
+ ],
1259
+ "room": [
1260
+ "bltd7b95453aec2fad9"
1261
+ ],
1262
+ "uid": "bltb30cb52c2493b72e",
1263
+ "created_by": "blt4dcb45b4456bb358",
1264
+ "updated_by": "blt4dcb45b4456bb358",
1265
+ "created_at": "2018-10-19T06:27:36.426Z",
1266
+ "updated_at": "2018-10-19T06:29:23.152Z",
1267
+ "_version": 2,
1268
+ "publish_details": {
1269
+ "environment": "blt5f66be5a7f2a4e70",
1270
+ "locale": "en-us",
1271
+ "time": "2018-10-19T06:57:28.706Z",
1272
+ "user": "blt4dcb45b4456bb358"
1273
+ }
1274
+ }
1275
+ },
1276
+ {
1277
+ "event_at": "2018-10-19T06:57:28.511Z",
1278
+ "content_type_uid": "session",
1279
+ "type": "entry_published",
1280
+ "data": {
1281
+ "is_popular": false,
1282
+ "title": "Management Strategy and Roadmap",
1283
+ "type": "Breakout Session",
1284
+ "session_id": 2493,
1285
+ "tags": [],
1286
+ "locale": "en-us",
1287
+ "description": "",
1288
+ "track": [
1289
+ "blte532e0f30e7e0906"
1290
+ ],
1291
+ "start_time": "2018-08-26T08:15:00.000Z",
1292
+ "end_time": "2018-08-26T09:15:00.000Z",
1293
+ "speakers": [
1294
+ "blte6ad40da40b67f0b",
1295
+ "blt29de38c9d84fa5d4"
1296
+ ],
1297
+ "room": [
1298
+ "blt70849c0ccfaac0ad"
1299
+ ],
1300
+ "uid": "blt5c82d08362a22670",
1301
+ "created_by": "blt4dcb45b4456bb358",
1302
+ "updated_by": "blt4dcb45b4456bb358",
1303
+ "created_at": "2018-10-19T06:27:38.421Z",
1304
+ "updated_at": "2018-10-19T06:29:26.294Z",
1305
+ "_version": 2,
1306
+ "publish_details": {
1307
+ "environment": "blt5f66be5a7f2a4e70",
1308
+ "locale": "en-us",
1309
+ "time": "2018-10-19T06:57:28.511Z",
1310
+ "user": "blt4dcb45b4456bb358"
1311
+ }
1312
+ }
1313
+ },
1314
+ {
1315
+ "event_at": "2018-10-19T06:57:28.294Z",
1316
+ "content_type_uid": "track",
1317
+ "type": "entry_published",
1318
+ "data": {
1319
+ "title": "Operational Transformation",
1320
+ "tags": [],
1321
+ "comment": "",
1322
+ "locale": "en-us",
1323
+ "sort_order": "13",
1324
+ "track_color": "#76ad1f",
1325
+ "description": "",
1326
+ "uid": "blt18e0f69e7dfd1c61",
1327
+ "created_by": "blt4dcb45b4456bb358",
1328
+ "updated_by": "blt4dcb45b4456bb358",
1329
+ "created_at": "2018-10-19T06:28:27.678Z",
1330
+ "updated_at": "2018-10-19T06:28:27.678Z",
1331
+ "_version": 1,
1332
+ "publish_details": {
1333
+ "environment": "blt5f66be5a7f2a4e70",
1334
+ "locale": "en-us",
1335
+ "time": "2018-10-19T06:57:28.294Z",
1336
+ "user": "blt4dcb45b4456bb358"
1337
+ }
1338
+ }
1339
+ },
1340
+ {
1341
+ "event_at": "2018-10-19T06:57:28.204Z",
1342
+ "content_type_uid": "session",
1343
+ "type": "entry_published",
1344
+ "data": {
1345
+ "is_popular": false,
1346
+ "title": "Inexorable Forces Driving the Real-Time, Cloud-Aware Network",
1347
+ "type": "Breakout Session",
1348
+ "session_id": 2695,
1349
+ "tags": [],
1350
+ "locale": "en-us",
1351
+ "description": "",
1352
+ "track": [
1353
+ "bltdcb87d4f2ccabf44"
1354
+ ],
1355
+ "start_time": "2018-08-26T13:30:00.000Z",
1356
+ "end_time": "2018-08-26T14:15:00.000Z",
1357
+ "speakers": [
1358
+ "blt47b3834af0205025",
1359
+ "blt55defbe962060672"
1360
+ ],
1361
+ "room": [
1362
+ "bltd7b95453aec2fad9"
1363
+ ],
1364
+ "uid": "blte29010dfd28ffed6",
1365
+ "created_by": "blt4dcb45b4456bb358",
1366
+ "updated_by": "blt4dcb45b4456bb358",
1367
+ "created_at": "2018-10-19T06:27:40.235Z",
1368
+ "updated_at": "2018-10-19T06:29:28.931Z",
1369
+ "_version": 2,
1370
+ "publish_details": {
1371
+ "environment": "blt5f66be5a7f2a4e70",
1372
+ "locale": "en-us",
1373
+ "time": "2018-10-19T06:57:28.204Z",
1374
+ "user": "blt4dcb45b4456bb358"
1375
+ }
1376
+ }
1377
+ },
1378
+ {
1379
+ "event_at": "2018-10-19T06:57:28.080Z",
1380
+ "content_type_uid": "track",
1381
+ "type": "entry_published",
1382
+ "data": {
1383
+ "title": "Desktop",
1384
+ "tags": [],
1385
+ "comment": "",
1386
+ "locale": "en-us",
1387
+ "sort_order": "16",
1388
+ "track_color": "#4e64d3",
1389
+ "description": "",
1390
+ "uid": "blt1221e174781cdbdd",
1391
+ "created_by": "blt4dcb45b4456bb358",
1392
+ "updated_by": "blt4dcb45b4456bb358",
1393
+ "created_at": "2018-10-19T06:28:21.071Z",
1394
+ "updated_at": "2018-10-19T06:28:21.071Z",
1395
+ "_version": 1,
1396
+ "publish_details": {
1397
+ "environment": "blt5f66be5a7f2a4e70",
1398
+ "locale": "en-us",
1399
+ "time": "2018-10-19T06:57:28.080Z",
1400
+ "user": "blt4dcb45b4456bb358"
1401
+ }
1402
+ }
1403
+ },
1404
+ {
1405
+ "event_at": "2018-10-19T06:57:27.850Z",
1406
+ "content_type_uid": "session",
1407
+ "type": "entry_published",
1408
+ "data": {
1409
+ "is_popular": false,
1410
+ "title": "Multi-Site Data Center Solutions for Business Critical Applications with VMware NSX",
1411
+ "type": "Breakout Session",
1412
+ "session_id": 2737,
1413
+ "tags": [],
1414
+ "locale": "en-us",
1415
+ "description": "",
1416
+ "track": [
1417
+ "blt5b95889e8422ffec"
1418
+ ],
1419
+ "start_time": "2018-08-26T12:30:00.000Z",
1420
+ "end_time": "2018-08-26T13:30:00.000Z",
1421
+ "speakers": [
1422
+ "blt8fc2076a51af8a16",
1423
+ "blteabd5b85bf9202fa",
1424
+ "blt29de38c9d84fa5d4"
1425
+ ],
1426
+ "room": [
1427
+ "blt37e633f9a0808f96"
1428
+ ],
1429
+ "uid": "blt378219065d728931",
1430
+ "created_by": "blt4dcb45b4456bb358",
1431
+ "updated_by": "blt4dcb45b4456bb358",
1432
+ "created_at": "2018-10-19T06:27:42.007Z",
1433
+ "updated_at": "2018-10-19T06:29:31.401Z",
1434
+ "_version": 2,
1435
+ "publish_details": {
1436
+ "environment": "blt5f66be5a7f2a4e70",
1437
+ "locale": "en-us",
1438
+ "time": "2018-10-19T06:57:27.850Z",
1439
+ "user": "blt4dcb45b4456bb358"
1440
+ }
1441
+ }
1442
+ },
1443
+ {
1444
+ "event_at": "2018-10-19T06:57:27.792Z",
1445
+ "content_type_uid": "room",
1446
+ "type": "entry_published",
1447
+ "data": {
1448
+ "title": "Room 11",
1449
+ "url": "/room-11",
1450
+ "attendee": 60,
1451
+ "tags": [],
1452
+ "locale": "en-us",
1453
+ "uid": "blt94b7bf6ea417cfe7",
1454
+ "created_by": "blt4dcb45b4456bb358",
1455
+ "updated_by": "blt4dcb45b4456bb358",
1456
+ "created_at": "2018-10-19T06:26:18.552Z",
1457
+ "updated_at": "2018-10-19T06:26:18.552Z",
1458
+ "_version": 1,
1459
+ "publish_details": {
1460
+ "environment": "blt5f66be5a7f2a4e70",
1461
+ "locale": "en-us",
1462
+ "time": "2018-10-19T06:57:27.792Z",
1463
+ "user": "blt4dcb45b4456bb358"
1464
+ }
1465
+ }
1466
+ },
1467
+ {
1468
+ "event_at": "2018-10-19T06:57:27.777Z",
1469
+ "content_type_uid": "speaker",
1470
+ "type": "entry_published",
1471
+ "data": {
1472
+ "title": "Thirumalesh Reddy",
1473
+ "url": "/thirumalesh-reddy",
1474
+ "full_name": "Thirumalesh Reddy",
1475
+ "tags": [],
1476
+ "locale": "en-us",
1477
+ "uid": "blt55defbe962060672",
1478
+ "created_by": "blt4dcb45b4456bb358",
1479
+ "updated_by": "blt4dcb45b4456bb358",
1480
+ "created_at": "2018-10-19T06:25:24.664Z",
1481
+ "updated_at": "2018-10-19T06:25:24.664Z",
1482
+ "_version": 1,
1483
+ "is_featured": false,
1484
+ "publish_details": {
1485
+ "environment": "blt5f66be5a7f2a4e70",
1486
+ "locale": "en-us",
1487
+ "time": "2018-10-19T06:57:27.777Z",
1488
+ "user": "blt4dcb45b4456bb358"
1489
+ }
1490
+ }
1491
+ },
1492
+ {
1493
+ "event_at": "2018-10-19T06:57:27.753Z",
1494
+ "content_type_uid": "room",
1495
+ "type": "entry_published",
1496
+ "data": {
1497
+ "title": "Room 6",
1498
+ "url": "/room-6",
1499
+ "attendee": 60,
1500
+ "tags": [],
1501
+ "locale": "en-us",
1502
+ "uid": "blt70849c0ccfaac0ad",
1503
+ "created_by": "blt4dcb45b4456bb358",
1504
+ "updated_by": "blt4dcb45b4456bb358",
1505
+ "created_at": "2018-10-19T06:26:27.080Z",
1506
+ "updated_at": "2018-10-19T06:26:27.080Z",
1507
+ "_version": 1,
1508
+ "publish_details": {
1509
+ "environment": "blt5f66be5a7f2a4e70",
1510
+ "locale": "en-us",
1511
+ "time": "2018-10-19T06:57:27.753Z",
1512
+ "user": "blt4dcb45b4456bb358"
1513
+ }
1514
+ }
1515
+ },
1516
+ {
1517
+ "event_at": "2018-10-19T06:57:27.579Z",
1518
+ "content_type_uid": "speaker",
1519
+ "type": "entry_published",
1520
+ "data": {
1521
+ "title": "John Troyer",
1522
+ "url": "/john-troyer",
1523
+ "full_name": "John Troyer",
1524
+ "tags": [],
1525
+ "locale": "en-us",
1526
+ "uid": "blt7c6b3607359b9a1b",
1527
+ "created_by": "blt4dcb45b4456bb358",
1528
+ "updated_by": "blt4dcb45b4456bb358",
1529
+ "created_at": "2018-10-19T06:25:26.404Z",
1530
+ "updated_at": "2018-10-19T06:25:26.404Z",
1531
+ "_version": 1,
1532
+ "is_featured": false,
1533
+ "publish_details": {
1534
+ "environment": "blt5f66be5a7f2a4e70",
1535
+ "locale": "en-us",
1536
+ "time": "2018-10-19T06:57:27.579Z",
1537
+ "user": "blt4dcb45b4456bb358"
1538
+ }
1539
+ }
1540
+ },
1541
+ {
1542
+ "event_at": "2018-10-19T06:57:27.420Z",
1543
+ "content_type_uid": "room",
1544
+ "type": "entry_published",
1545
+ "data": {
1546
+ "title": "Room 9",
1547
+ "url": "/room-9",
1548
+ "attendee": 60,
1549
+ "tags": [],
1550
+ "locale": "en-us",
1551
+ "uid": "blt3bdf9d0138befa47",
1552
+ "created_by": "blt4dcb45b4456bb358",
1553
+ "updated_by": "blt4dcb45b4456bb358",
1554
+ "created_at": "2018-10-19T06:26:20.628Z",
1555
+ "updated_at": "2018-10-19T06:26:20.628Z",
1556
+ "_version": 1,
1557
+ "publish_details": {
1558
+ "environment": "blt5f66be5a7f2a4e70",
1559
+ "locale": "en-us",
1560
+ "time": "2018-10-19T06:57:27.420Z",
1561
+ "user": "blt4dcb45b4456bb358"
1562
+ }
1563
+ }
1564
+ },
1565
+ {
1566
+ "event_at": "2018-10-19T06:57:27.413Z",
1567
+ "content_type_uid": "speaker",
1568
+ "type": "entry_published",
1569
+ "data": {
1570
+ "title": "Allwyn Sequeira",
1571
+ "url": "/allwyn-sequeira",
1572
+ "full_name": "Allwyn Sequeira",
1573
+ "tags": [],
1574
+ "locale": "en-us",
1575
+ "uid": "blta7c0417b53673e77",
1576
+ "created_by": "blt4dcb45b4456bb358",
1577
+ "updated_by": "blt4dcb45b4456bb358",
1578
+ "created_at": "2018-10-19T06:25:20.974Z",
1579
+ "updated_at": "2018-10-19T06:25:20.974Z",
1580
+ "_version": 1,
1581
+ "is_featured": false,
1582
+ "publish_details": {
1583
+ "environment": "blt5f66be5a7f2a4e70",
1584
+ "locale": "en-us",
1585
+ "time": "2018-10-19T06:57:27.413Z",
1586
+ "user": "blt4dcb45b4456bb358"
1587
+ }
1588
+ }
1589
+ },
1590
+ {
1591
+ "event_at": "2018-10-19T06:57:27.373Z",
1592
+ "content_type_uid": "track",
1593
+ "type": "entry_published",
1594
+ "data": {
1595
+ "title": "Desktop As A Service",
1596
+ "tags": [],
1597
+ "comment": "",
1598
+ "locale": "en-us",
1599
+ "sort_order": "15",
1600
+ "track_color": "#81e8d5",
1601
+ "description": "",
1602
+ "uid": "blt94a4fd987e420824",
1603
+ "created_by": "blt4dcb45b4456bb358",
1604
+ "updated_by": "blt4dcb45b4456bb358",
1605
+ "created_at": "2018-10-19T06:28:23.690Z",
1606
+ "updated_at": "2018-10-19T06:28:23.690Z",
1607
+ "_version": 1,
1608
+ "publish_details": {
1609
+ "environment": "blt5f66be5a7f2a4e70",
1610
+ "locale": "en-us",
1611
+ "time": "2018-10-19T06:57:27.373Z",
1612
+ "user": "blt4dcb45b4456bb358"
1613
+ }
1614
+ }
1615
+ },
1616
+ {
1617
+ "event_at": "2018-10-19T06:57:27.227Z",
1618
+ "content_type_uid": "speaker",
1619
+ "type": "entry_published",
1620
+ "data": {
1621
+ "title": "Jesse St. Laurent",
1622
+ "url": "/jesse-st-laurent",
1623
+ "full_name": "Jesse St. Laurent",
1624
+ "tags": [],
1625
+ "locale": "en-us",
1626
+ "uid": "bltc30903268ba5a959",
1627
+ "created_by": "blt4dcb45b4456bb358",
1628
+ "updated_by": "blt4dcb45b4456bb358",
1629
+ "created_at": "2018-10-19T06:25:19.183Z",
1630
+ "updated_at": "2018-10-19T06:25:19.183Z",
1631
+ "_version": 1,
1632
+ "is_featured": false,
1633
+ "publish_details": {
1634
+ "environment": "blt5f66be5a7f2a4e70",
1635
+ "locale": "en-us",
1636
+ "time": "2018-10-19T06:57:27.227Z",
1637
+ "user": "blt4dcb45b4456bb358"
1638
+ }
1639
+ }
1640
+ },
1641
+ {
1642
+ "event_at": "2018-10-19T06:57:27.171Z",
1643
+ "content_type_uid": "track",
1644
+ "type": "entry_published",
1645
+ "data": {
1646
+ "title": "Technology Exchange For Alliance Partner",
1647
+ "tags": [],
1648
+ "comment": "",
1649
+ "locale": "en-us",
1650
+ "sort_order": "14",
1651
+ "track_color": "#2fc11f",
1652
+ "description": "",
1653
+ "uid": "blteae1b5172b5dc027",
1654
+ "created_by": "blt4dcb45b4456bb358",
1655
+ "updated_by": "blt4dcb45b4456bb358",
1656
+ "created_at": "2018-10-19T06:28:25.736Z",
1657
+ "updated_at": "2018-10-19T06:28:25.736Z",
1658
+ "_version": 1,
1659
+ "publish_details": {
1660
+ "environment": "blt5f66be5a7f2a4e70",
1661
+ "locale": "en-us",
1662
+ "time": "2018-10-19T06:57:27.171Z",
1663
+ "user": "blt4dcb45b4456bb358"
1664
+ }
1665
+ }
1666
+ },
1667
+ {
1668
+ "event_at": "2018-10-19T06:57:27.162Z",
1669
+ "content_type_uid": "speaker",
1670
+ "type": "entry_published",
1671
+ "data": {
1672
+ "title": "Serge Maskalik",
1673
+ "url": "/serge-maskalik",
1674
+ "full_name": "Serge Maskalik",
1675
+ "tags": [],
1676
+ "locale": "en-us",
1677
+ "uid": "blt793a3fba5f131892",
1678
+ "created_by": "blt4dcb45b4456bb358",
1679
+ "updated_by": "blt4dcb45b4456bb358",
1680
+ "created_at": "2018-10-19T06:25:22.918Z",
1681
+ "updated_at": "2018-10-19T06:25:22.918Z",
1682
+ "_version": 1,
1683
+ "is_featured": false,
1684
+ "publish_details": {
1685
+ "environment": "blt5f66be5a7f2a4e70",
1686
+ "locale": "en-us",
1687
+ "time": "2018-10-19T06:57:27.162Z",
1688
+ "user": "blt4dcb45b4456bb358"
1689
+ }
1690
+ }
1691
+ },
1692
+ {
1693
+ "event_at": "2018-10-19T06:57:27.133Z",
1694
+ "content_type_uid": "session",
1695
+ "type": "entry_published",
1696
+ "data": {
1697
+ "title": "Policy Based Storage Management with EMC ViPR and VMware Integrations",
1698
+ "session_id": 3062,
1699
+ "type": "Hands-On Labs Self-Paced Lab",
1700
+ "is_popular": false,
1701
+ "tags": [],
1702
+ "locale": "en-us",
1703
+ "description": "",
1704
+ "track": [
1705
+ "blt60685af554899da3"
1706
+ ],
1707
+ "start_time": "2018-08-26T10:30:00.000Z",
1708
+ "end_time": "2018-08-26T11:30:00.000Z",
1709
+ "speakers": [
1710
+ "blt6cd266d2cff390bb",
1711
+ "blt139ca7314f8e196c"
1712
+ ],
1713
+ "room": [
1714
+ "bltd297643cb1ad9baa"
1715
+ ],
1716
+ "uid": "blt46489897466e865b",
1717
+ "created_by": "blt4dcb45b4456bb358",
1718
+ "updated_by": "blt4dcb45b4456bb358",
1719
+ "created_at": "2018-10-19T06:27:43.824Z",
1720
+ "updated_at": "2018-10-19T06:29:33.532Z",
1721
+ "_version": 2,
1722
+ "publish_details": {
1723
+ "environment": "blt5f66be5a7f2a4e70",
1724
+ "locale": "en-us",
1725
+ "time": "2018-10-19T06:57:27.133Z",
1726
+ "user": "blt4dcb45b4456bb358"
1727
+ }
1728
+ }
1729
+ },
1730
+ {
1731
+ "event_at": "2018-10-19T06:57:27.106Z",
1732
+ "content_type_uid": "room",
1733
+ "type": "entry_published",
1734
+ "data": {
1735
+ "title": "Room 7",
1736
+ "url": "/room-7",
1737
+ "attendee": 60,
1738
+ "tags": [],
1739
+ "locale": "en-us",
1740
+ "uid": "blt92871d69396b490d",
1741
+ "created_by": "blt4dcb45b4456bb358",
1742
+ "updated_by": "blt4dcb45b4456bb358",
1743
+ "created_at": "2018-10-19T06:26:25.159Z",
1744
+ "updated_at": "2018-10-19T06:26:25.159Z",
1745
+ "_version": 1,
1746
+ "publish_details": {
1747
+ "environment": "blt5f66be5a7f2a4e70",
1748
+ "locale": "en-us",
1749
+ "time": "2018-10-19T06:57:27.106Z",
1750
+ "user": "blt4dcb45b4456bb358"
1751
+ }
1752
+ }
1753
+ },
1754
+ {
1755
+ "event_at": "2018-10-19T06:57:27.105Z",
1756
+ "content_type_uid": "room",
1757
+ "type": "entry_published",
1758
+ "data": {
1759
+ "title": "Room 8",
1760
+ "url": "/room-8",
1761
+ "attendee": 60,
1762
+ "tags": [],
1763
+ "locale": "en-us",
1764
+ "uid": "blte3e7c1aa9a8e29f1",
1765
+ "created_by": "blt4dcb45b4456bb358",
1766
+ "updated_by": "blt4dcb45b4456bb358",
1767
+ "created_at": "2018-10-19T06:26:22.411Z",
1768
+ "updated_at": "2018-10-19T06:26:22.411Z",
1769
+ "_version": 1,
1770
+ "publish_details": {
1771
+ "environment": "blt5f66be5a7f2a4e70",
1772
+ "locale": "en-us",
1773
+ "time": "2018-10-19T06:57:27.105Z",
1774
+ "user": "blt4dcb45b4456bb358"
1775
+ }
1776
+ }
1777
+ },
1778
+ {
1779
+ "event_at": "2018-10-19T06:57:26.952Z",
1780
+ "content_type_uid": "session",
1781
+ "type": "entry_published",
1782
+ "data": {
1783
+ "is_popular": false,
1784
+ "title": "Challenges and Successes in Implementing a Cloud using vCloud Suite – EA Case Study",
1785
+ "type": "Panel Session",
1786
+ "session_id": 2445,
1787
+ "tags": [],
1788
+ "locale": "en-us",
1789
+ "description": "",
1790
+ "track": [
1791
+ "blte532e0f30e7e0906"
1792
+ ],
1793
+ "start_time": "2018-08-27T04:30:00.000Z",
1794
+ "end_time": "2018-08-27T06:30:00.000Z",
1795
+ "speakers": [
1796
+ "blt8fc2076a51af8a16",
1797
+ "blteabd5b85bf9202fa"
1798
+ ],
1799
+ "room": [
1800
+ "blt1d516b9cb6da8f65"
1801
+ ],
1802
+ "uid": "blt059bdeaf0f4bc6f0",
1803
+ "created_by": "blt4dcb45b4456bb358",
1804
+ "updated_by": "blt4dcb45b4456bb358",
1805
+ "created_at": "2018-10-19T06:27:45.909Z",
1806
+ "updated_at": "2018-10-19T06:29:35.470Z",
1807
+ "_version": 2,
1808
+ "publish_details": {
1809
+ "environment": "blt5f66be5a7f2a4e70",
1810
+ "locale": "en-us",
1811
+ "time": "2018-10-19T06:57:26.952Z",
1812
+ "user": "blt4dcb45b4456bb358"
1813
+ }
1814
+ }
1815
+ },
1816
+ {
1817
+ "event_at": "2018-10-19T06:57:26.851Z",
1818
+ "content_type_uid": "track",
1819
+ "type": "entry_published",
1820
+ "data": {
1821
+ "title": "Networking And Security",
1822
+ "tags": [],
1823
+ "comment": "",
1824
+ "locale": "en-us",
1825
+ "sort_order": "12",
1826
+ "track_color": "#606311",
1827
+ "description": "",
1828
+ "uid": "blt62e67ba5f289cf9d",
1829
+ "created_by": "blt4dcb45b4456bb358",
1830
+ "updated_by": "blt4dcb45b4456bb358",
1831
+ "created_at": "2018-10-19T06:28:29.642Z",
1832
+ "updated_at": "2018-10-19T06:28:29.642Z",
1833
+ "_version": 1,
1834
+ "publish_details": {
1835
+ "environment": "blt5f66be5a7f2a4e70",
1836
+ "locale": "en-us",
1837
+ "time": "2018-10-19T06:57:26.851Z",
1838
+ "user": "blt4dcb45b4456bb358"
1839
+ }
1840
+ }
1841
+ },
1842
+ {
1843
+ "event_at": "2018-10-19T06:57:26.839Z",
1844
+ "content_type_uid": "session",
1845
+ "type": "entry_published",
1846
+ "data": {
1847
+ "is_popular": false,
1848
+ "title": "Virtualized Environment Makeovers with Data Protection Experts",
1849
+ "type": "Panel Session",
1850
+ "session_id": 2414,
1851
+ "tags": [],
1852
+ "locale": "en-us",
1853
+ "description": "",
1854
+ "track": [
1855
+ "bltdcb87d4f2ccabf44"
1856
+ ],
1857
+ "start_time": "2018-08-27T02:30:00.000Z",
1858
+ "end_time": "2018-08-27T03:30:00.000Z",
1859
+ "speakers": [
1860
+ "blt8fc2076a51af8a16",
1861
+ "blteabd5b85bf9202fa"
1862
+ ],
1863
+ "room": [
1864
+ "bltdbedf9b343ea8c41"
1865
+ ],
1866
+ "uid": "blt71441b363b3de814",
1867
+ "created_by": "blt4dcb45b4456bb358",
1868
+ "updated_by": "blt4dcb45b4456bb358",
1869
+ "created_at": "2018-10-19T06:27:47.827Z",
1870
+ "updated_at": "2018-10-19T06:29:37.739Z",
1871
+ "_version": 2,
1872
+ "publish_details": {
1873
+ "environment": "blt5f66be5a7f2a4e70",
1874
+ "locale": "en-us",
1875
+ "time": "2018-10-19T06:57:26.839Z",
1876
+ "user": "blt4dcb45b4456bb358"
1877
+ }
1878
+ }
1879
+ },
1880
+ {
1881
+ "event_at": "2018-10-19T06:57:26.530Z",
1882
+ "content_type_uid": "session",
1883
+ "type": "entry_published",
1884
+ "data": {
1885
+ "is_popular": false,
1886
+ "title": "The Cloud is Over The Top",
1887
+ "type": "Breakout Session",
1888
+ "session_id": 2684,
1889
+ "tags": [],
1890
+ "locale": "en-us",
1891
+ "description": "",
1892
+ "track": [
1893
+ "blt8a1a4ec74fd7392a"
1894
+ ],
1895
+ "start_time": "2018-08-26T10:15:00.000Z",
1896
+ "end_time": "2018-08-26T11:15:00.000Z",
1897
+ "speakers": [
1898
+ "blt793a3fba5f131892",
1899
+ "blt49d813e013e9ca60",
1900
+ "blt30f79a6374513fd8"
1901
+ ],
1902
+ "room": [
1903
+ "blt16d673acd93d4bd3"
1904
+ ],
1905
+ "uid": "bltd89e9773e7dbd8ef",
1906
+ "created_by": "blt4dcb45b4456bb358",
1907
+ "updated_by": "blt4dcb45b4456bb358",
1908
+ "created_at": "2018-10-19T06:27:49.677Z",
1909
+ "updated_at": "2018-10-19T06:29:39.946Z",
1910
+ "_version": 2,
1911
+ "publish_details": {
1912
+ "environment": "blt5f66be5a7f2a4e70",
1913
+ "locale": "en-us",
1914
+ "time": "2018-10-19T06:57:26.530Z",
1915
+ "user": "blt4dcb45b4456bb358"
1916
+ }
1917
+ }
1918
+ },
1919
+ {
1920
+ "event_at": "2018-10-19T06:57:26.269Z",
1921
+ "content_type_uid": "track",
1922
+ "type": "entry_published",
1923
+ "data": {
1924
+ "title": "Management",
1925
+ "tags": [],
1926
+ "comment": "",
1927
+ "locale": "en-us",
1928
+ "sort_order": "11",
1929
+ "track_color": "#591b0f",
1930
+ "description": "",
1931
+ "uid": "blte532e0f30e7e0906",
1932
+ "created_by": "blt4dcb45b4456bb358",
1933
+ "updated_by": "blt4dcb45b4456bb358",
1934
+ "created_at": "2018-10-19T06:28:31.551Z",
1935
+ "updated_at": "2018-10-19T06:28:31.551Z",
1936
+ "_version": 1,
1937
+ "publish_details": {
1938
+ "environment": "blt5f66be5a7f2a4e70",
1939
+ "locale": "en-us",
1940
+ "time": "2018-10-19T06:57:26.269Z",
1941
+ "user": "blt4dcb45b4456bb358"
1942
+ }
1943
+ }
1944
+ },
1945
+ {
1946
+ "event_at": "2018-10-19T06:57:26.178Z",
1947
+ "content_type_uid": "session",
1948
+ "type": "entry_published",
1949
+ "data": {
1950
+ "is_popular": false,
1951
+ "title": "Enable Anything-as-a-Service for Private and Hybrid Cloud",
1952
+ "type": "Panel Session",
1953
+ "session_id": 2494,
1954
+ "tags": [],
1955
+ "locale": "en-us",
1956
+ "description": "",
1957
+ "track": [
1958
+ "blt5366be193fc62878"
1959
+ ],
1960
+ "start_time": "2018-08-26T09:30:00.000Z",
1961
+ "end_time": "2018-08-26T10:10:00.000Z",
1962
+ "speakers": [
1963
+ "blt967e606131235d86",
1964
+ "blt2c851a229bb6e737"
1965
+ ],
1966
+ "room": [
1967
+ "blt3bdf9d0138befa47"
1968
+ ],
1969
+ "uid": "blta871f118fc831f29",
1970
+ "created_by": "blt4dcb45b4456bb358",
1971
+ "updated_by": "blt4dcb45b4456bb358",
1972
+ "created_at": "2018-10-19T06:27:51.751Z",
1973
+ "updated_at": "2018-10-19T06:29:42.768Z",
1974
+ "_version": 2,
1975
+ "publish_details": {
1976
+ "environment": "blt5f66be5a7f2a4e70",
1977
+ "locale": "en-us",
1978
+ "time": "2018-10-19T06:57:26.178Z",
1979
+ "user": "blt4dcb45b4456bb358"
1980
+ }
1981
+ }
1982
+ },
1983
+ {
1984
+ "event_at": "2018-10-19T06:57:25.986Z",
1985
+ "content_type_uid": "room",
1986
+ "type": "entry_published",
1987
+ "data": {
1988
+ "title": "Room 5",
1989
+ "url": "/room-5",
1990
+ "attendee": 60,
1991
+ "tags": [],
1992
+ "locale": "en-us",
1993
+ "uid": "bltdbedf9b343ea8c41",
1994
+ "created_by": "blt4dcb45b4456bb358",
1995
+ "updated_by": "blt4dcb45b4456bb358",
1996
+ "created_at": "2018-10-19T06:26:29.114Z",
1997
+ "updated_at": "2018-10-19T06:26:29.114Z",
1998
+ "_version": 1,
1999
+ "publish_details": {
2000
+ "environment": "blt5f66be5a7f2a4e70",
2001
+ "locale": "en-us",
2002
+ "time": "2018-10-19T06:57:25.986Z",
2003
+ "user": "blt4dcb45b4456bb358"
2004
+ }
2005
+ }
2006
+ },
2007
+ {
2008
+ "event_at": "2018-10-19T06:57:25.736Z",
2009
+ "content_type_uid": "room",
2010
+ "type": "entry_published",
2011
+ "data": {
2012
+ "title": "Room 4",
2013
+ "url": "/room-4",
2014
+ "attendee": 60,
2015
+ "tags": [],
2016
+ "locale": "en-us",
2017
+ "uid": "blt752ef85ac3fb079a",
2018
+ "created_by": "blt4dcb45b4456bb358",
2019
+ "updated_by": "blt4dcb45b4456bb358",
2020
+ "created_at": "2018-10-19T06:26:30.799Z",
2021
+ "updated_at": "2018-10-19T06:26:30.799Z",
2022
+ "_version": 1,
2023
+ "publish_details": {
2024
+ "environment": "blt5f66be5a7f2a4e70",
2025
+ "locale": "en-us",
2026
+ "time": "2018-10-19T06:57:25.736Z",
2027
+ "user": "blt4dcb45b4456bb358"
2028
+ }
2029
+ }
2030
+ },
2031
+ {
2032
+ "event_at": "2018-10-19T06:57:25.686Z",
2033
+ "content_type_uid": "track",
2034
+ "type": "entry_published",
2035
+ "data": {
2036
+ "title": "Storage and Business Continuity",
2037
+ "tags": [],
2038
+ "comment": "",
2039
+ "locale": "en-us",
2040
+ "sort_order": "8",
2041
+ "track_color": "#ffac7a",
2042
+ "description": "",
2043
+ "uid": "blt60685af554899da3",
2044
+ "created_by": "blt4dcb45b4456bb358",
2045
+ "updated_by": "blt4dcb45b4456bb358",
2046
+ "created_at": "2018-10-19T06:28:40.006Z",
2047
+ "updated_at": "2018-10-19T06:28:40.006Z",
2048
+ "_version": 1,
2049
+ "publish_details": {
2050
+ "environment": "blt5f66be5a7f2a4e70",
2051
+ "locale": "en-us",
2052
+ "time": "2018-10-19T06:57:25.686Z",
2053
+ "user": "blt4dcb45b4456bb358"
2054
+ }
2055
+ }
2056
+ },
2057
+ {
2058
+ "event_at": "2018-10-19T06:57:25.560Z",
2059
+ "content_type_uid": "speaker",
2060
+ "type": "entry_published",
2061
+ "data": {
2062
+ "title": "Vaughn Stewart",
2063
+ "url": "/vaughn-stewart",
2064
+ "full_name": "Vaughn Stewart",
2065
+ "tags": [],
2066
+ "locale": "en-us",
2067
+ "uid": "blt4c9102a8aefda4c4",
2068
+ "created_by": "blt4dcb45b4456bb358",
2069
+ "updated_by": "blt4dcb45b4456bb358",
2070
+ "created_at": "2018-10-19T06:25:28.090Z",
2071
+ "updated_at": "2018-10-19T06:25:28.090Z",
2072
+ "_version": 1,
2073
+ "is_featured": false,
2074
+ "publish_details": {
2075
+ "environment": "blt5f66be5a7f2a4e70",
2076
+ "locale": "en-us",
2077
+ "time": "2018-10-19T06:57:25.560Z",
2078
+ "user": "blt4dcb45b4456bb358"
2079
+ }
2080
+ }
2081
+ },
2082
+ {
2083
+ "event_at": "2018-10-19T06:57:25.540Z",
2084
+ "content_type_uid": "speaker",
2085
+ "type": "entry_published",
2086
+ "data": {
2087
+ "title": "Jon Owings",
2088
+ "url": "/jon-owings",
2089
+ "full_name": "Jon Owings",
2090
+ "tags": [],
2091
+ "locale": "en-us",
2092
+ "uid": "blt139ca7314f8e196c",
2093
+ "created_by": "blt4dcb45b4456bb358",
2094
+ "updated_by": "blt4dcb45b4456bb358",
2095
+ "created_at": "2018-10-19T06:25:31.673Z",
2096
+ "updated_at": "2018-10-19T06:25:31.673Z",
2097
+ "_version": 1,
2098
+ "is_featured": false,
2099
+ "publish_details": {
2100
+ "environment": "blt5f66be5a7f2a4e70",
2101
+ "locale": "en-us",
2102
+ "time": "2018-10-19T06:57:25.540Z",
2103
+ "user": "blt4dcb45b4456bb358"
2104
+ }
2105
+ }
2106
+ },
2107
+ {
2108
+ "event_at": "2018-10-19T06:57:25.484Z",
2109
+ "content_type_uid": "speaker",
2110
+ "type": "entry_published",
2111
+ "data": {
2112
+ "title": "Rawlinson Rivera",
2113
+ "url": "/rawlinson-rivera",
2114
+ "full_name": "Rawlinson Rivera",
2115
+ "tags": [],
2116
+ "locale": "en-us",
2117
+ "uid": "blt6cd266d2cff390bb",
2118
+ "created_by": "blt4dcb45b4456bb358",
2119
+ "updated_by": "blt4dcb45b4456bb358",
2120
+ "created_at": "2018-10-19T06:25:29.884Z",
2121
+ "updated_at": "2018-10-19T06:25:29.884Z",
2122
+ "_version": 1,
2123
+ "is_featured": false,
2124
+ "publish_details": {
2125
+ "environment": "blt5f66be5a7f2a4e70",
2126
+ "locale": "en-us",
2127
+ "time": "2018-10-19T06:57:25.484Z",
2128
+ "user": "blt4dcb45b4456bb358"
2129
+ }
2130
+ }
2131
+ },
2132
+ {
2133
+ "event_at": "2018-10-19T06:57:25.456Z",
2134
+ "content_type_uid": "session",
2135
+ "type": "entry_published",
2136
+ "data": {
2137
+ "is_popular": false,
2138
+ "title": "Microsoft SQL Server 2014 Backup and Recovery Best Practices with VMware DataProtection and Storage based Solutions",
2139
+ "type": "Breakout Session",
2140
+ "session_id": 2661,
2141
+ "tags": [],
2142
+ "locale": "en-us",
2143
+ "description": "",
2144
+ "track": [
2145
+ "blt62e67ba5f289cf9d"
2146
+ ],
2147
+ "start_time": "2018-08-26T09:00:00.000Z",
2148
+ "end_time": "2018-08-26T09:30:00.000Z",
2149
+ "speakers": [
2150
+ "blt49d813e013e9ca60",
2151
+ "blt967e606131235d86"
2152
+ ],
2153
+ "room": [
2154
+ "blte3e7c1aa9a8e29f1"
2155
+ ],
2156
+ "uid": "blt96b09da12fa350e1",
2157
+ "created_by": "blt4dcb45b4456bb358",
2158
+ "updated_by": "blt4dcb45b4456bb358",
2159
+ "created_at": "2018-10-19T06:27:53.684Z",
2160
+ "updated_at": "2018-10-19T06:29:45.069Z",
2161
+ "_version": 2,
2162
+ "publish_details": {
2163
+ "environment": "blt5f66be5a7f2a4e70",
2164
+ "locale": "en-us",
2165
+ "time": "2018-10-19T06:57:25.456Z",
2166
+ "user": "blt4dcb45b4456bb358"
2167
+ }
2168
+ }
2169
+ },
2170
+ {
2171
+ "event_at": "2018-10-19T06:57:25.366Z",
2172
+ "content_type_uid": "track",
2173
+ "type": "entry_published",
2174
+ "data": {
2175
+ "title": "Hybrid Could Network",
2176
+ "tags": [],
2177
+ "comment": "",
2178
+ "locale": "en-us",
2179
+ "sort_order": "10",
2180
+ "track_color": "#846c67",
2181
+ "description": "",
2182
+ "uid": "blt5366be193fc62878",
2183
+ "created_by": "blt4dcb45b4456bb358",
2184
+ "updated_by": "blt4dcb45b4456bb358",
2185
+ "created_at": "2018-10-19T06:28:34.154Z",
2186
+ "updated_at": "2018-10-19T06:28:34.154Z",
2187
+ "_version": 1,
2188
+ "publish_details": {
2189
+ "environment": "blt5f66be5a7f2a4e70",
2190
+ "locale": "en-us",
2191
+ "time": "2018-10-19T06:57:25.366Z",
2192
+ "user": "blt4dcb45b4456bb358"
2193
+ }
2194
+ }
2195
+ },
2196
+ {
2197
+ "event_at": "2018-10-19T06:57:25.341Z",
2198
+ "content_type_uid": "room",
2199
+ "type": "entry_published",
2200
+ "data": {
2201
+ "title": "Room 16",
2202
+ "url": "/room-16",
2203
+ "attendee": 60,
2204
+ "tags": [],
2205
+ "locale": "en-us",
2206
+ "uid": "blt1d516b9cb6da8f65",
2207
+ "created_by": "blt4dcb45b4456bb358",
2208
+ "updated_by": "blt4dcb45b4456bb358",
2209
+ "created_at": "2018-10-19T06:26:48.662Z",
2210
+ "updated_at": "2018-10-19T06:26:48.662Z",
2211
+ "_version": 1,
2212
+ "publish_details": {
2213
+ "environment": "blt5f66be5a7f2a4e70",
2214
+ "locale": "en-us",
2215
+ "time": "2018-10-19T06:57:25.341Z",
2216
+ "user": "blt4dcb45b4456bb358"
2217
+ }
2218
+ }
2219
+ },
2220
+ {
2221
+ "event_at": "2018-10-19T06:57:25.314Z",
2222
+ "content_type_uid": "room",
2223
+ "type": "entry_published",
2224
+ "data": {
2225
+ "title": "Room 3",
2226
+ "url": "/room-3",
2227
+ "attendee": 60,
2228
+ "tags": [],
2229
+ "locale": "en-us",
2230
+ "uid": "bltd954a3327e2f84de",
2231
+ "created_by": "blt4dcb45b4456bb358",
2232
+ "updated_by": "blt4dcb45b4456bb358",
2233
+ "created_at": "2018-10-19T06:26:33.065Z",
2234
+ "updated_at": "2018-10-19T06:26:33.065Z",
2235
+ "_version": 1,
2236
+ "publish_details": {
2237
+ "environment": "blt5f66be5a7f2a4e70",
2238
+ "locale": "en-us",
2239
+ "time": "2018-10-19T06:57:25.314Z",
2240
+ "user": "blt4dcb45b4456bb358"
2241
+ }
2242
+ }
2243
+ },
2244
+ {
2245
+ "event_at": "2018-10-19T06:57:25.304Z",
2246
+ "content_type_uid": "speaker",
2247
+ "type": "entry_published",
2248
+ "data": {
2249
+ "title": "Amy Lewis",
2250
+ "url": "/amy-lewis",
2251
+ "full_name": "Amy Lewis",
2252
+ "tags": [],
2253
+ "locale": "en-us",
2254
+ "uid": "blt3a2ae762e224ecba",
2255
+ "created_by": "blt4dcb45b4456bb358",
2256
+ "updated_by": "blt4dcb45b4456bb358",
2257
+ "created_at": "2018-10-19T06:25:33.591Z",
2258
+ "updated_at": "2018-10-19T06:25:33.591Z",
2259
+ "_version": 1,
2260
+ "is_featured": false,
2261
+ "publish_details": {
2262
+ "environment": "blt5f66be5a7f2a4e70",
2263
+ "locale": "en-us",
2264
+ "time": "2018-10-19T06:57:25.304Z",
2265
+ "user": "blt4dcb45b4456bb358"
2266
+ }
2267
+ }
2268
+ },
2269
+ {
2270
+ "event_at": "2018-10-19T06:57:25.286Z",
2271
+ "content_type_uid": "session",
2272
+ "type": "entry_published",
2273
+ "data": {
2274
+ "is_popular": false,
2275
+ "title": "Wait Less, Deliver More: Automate Your End-to-End IT Processes in the Cloud",
2276
+ "type": "Breakout Session",
2277
+ "session_id": 2523,
2278
+ "tags": [],
2279
+ "locale": "en-us",
2280
+ "description": "",
2281
+ "track": [
2282
+ "blt8a1a4ec74fd7392a"
2283
+ ],
2284
+ "start_time": "2018-08-26T12:30:00.000Z",
2285
+ "end_time": "2018-08-26T13:00:00.000Z",
2286
+ "speakers": [
2287
+ "blt793a3fba5f131892",
2288
+ "blta7c0417b53673e77"
2289
+ ],
2290
+ "room": [
2291
+ "blt338464bf155eb0bf"
2292
+ ],
2293
+ "uid": "blt23e55935275b72af",
2294
+ "created_by": "blt4dcb45b4456bb358",
2295
+ "updated_by": "blt4dcb45b4456bb358",
2296
+ "created_at": "2018-10-19T06:27:55.432Z",
2297
+ "updated_at": "2018-10-19T06:29:47.423Z",
2298
+ "_version": 2,
2299
+ "publish_details": {
2300
+ "environment": "blt5f66be5a7f2a4e70",
2301
+ "locale": "en-us",
2302
+ "time": "2018-10-19T06:57:25.286Z",
2303
+ "user": "blt4dcb45b4456bb358"
2304
+ }
2305
+ }
2306
+ },
2307
+ {
2308
+ "event_at": "2018-10-19T06:57:25.281Z",
2309
+ "content_type_uid": "track",
2310
+ "type": "entry_published",
2311
+ "data": {
2312
+ "title": "Industry Perspectives",
2313
+ "tags": [],
2314
+ "comment": "",
2315
+ "locale": "en-us",
2316
+ "sort_order": "9",
2317
+ "track_color": "#b2b2b2",
2318
+ "description": "",
2319
+ "uid": "blt8d64bab84f3a4ae7",
2320
+ "created_by": "blt4dcb45b4456bb358",
2321
+ "updated_by": "blt4dcb45b4456bb358",
2322
+ "created_at": "2018-10-19T06:28:36.660Z",
2323
+ "updated_at": "2018-10-19T06:28:36.660Z",
2324
+ "_version": 1,
2325
+ "publish_details": {
2326
+ "environment": "blt5f66be5a7f2a4e70",
2327
+ "locale": "en-us",
2328
+ "time": "2018-10-19T06:57:25.281Z",
2329
+ "user": "blt4dcb45b4456bb358"
2330
+ }
2331
+ }
2332
+ },
2333
+ {
2334
+ "event_at": "2018-10-19T06:57:25.273Z",
2335
+ "content_type_uid": "room",
2336
+ "type": "entry_published",
2337
+ "data": {
2338
+ "title": "Room 2",
2339
+ "url": "/room-2",
2340
+ "attendee": 60,
2341
+ "tags": [],
2342
+ "locale": "en-us",
2343
+ "uid": "blte5b4ee0d94f5af19",
2344
+ "created_by": "blt4dcb45b4456bb358",
2345
+ "updated_by": "blt4dcb45b4456bb358",
2346
+ "created_at": "2018-10-19T06:26:35.011Z",
2347
+ "updated_at": "2018-10-19T06:26:35.011Z",
2348
+ "_version": 1,
2349
+ "publish_details": {
2350
+ "environment": "blt5f66be5a7f2a4e70",
2351
+ "locale": "en-us",
2352
+ "time": "2018-10-19T06:57:25.273Z",
2353
+ "user": "blt4dcb45b4456bb358"
2354
+ }
2355
+ }
2356
+ },
2357
+ {
2358
+ "event_at": "2018-10-19T06:57:25.179Z",
2359
+ "content_type_uid": "session",
2360
+ "type": "entry_published",
2361
+ "data": {
2362
+ "is_popular": false,
2363
+ "title": "IT Outcomes – Faster Delivery of Infrastructure and Apps through Automation",
2364
+ "type": "Hands-On Labs Self-Paced Lab",
2365
+ "session_id": 3085,
2366
+ "tags": [],
2367
+ "locale": "en-us",
2368
+ "description": "",
2369
+ "track": [
2370
+ "blt18e0f69e7dfd1c61"
2371
+ ],
2372
+ "start_time": "2018-08-26T07:30:00.000Z",
2373
+ "end_time": "2018-08-26T08:15:00.000Z",
2374
+ "speakers": [
2375
+ "blt7c6b3607359b9a1b",
2376
+ "blt4c9102a8aefda4c4"
2377
+ ],
2378
+ "room": [
2379
+ "bltaec151e7b111d6d9"
2380
+ ],
2381
+ "uid": "blt4d9cf21018f10ca7",
2382
+ "created_by": "blt4dcb45b4456bb358",
2383
+ "updated_by": "blt4dcb45b4456bb358",
2384
+ "created_at": "2018-10-19T06:27:57.410Z",
2385
+ "updated_at": "2018-10-19T06:29:49.781Z",
2386
+ "_version": 2,
2387
+ "publish_details": {
2388
+ "environment": "blt5f66be5a7f2a4e70",
2389
+ "locale": "en-us",
2390
+ "time": "2018-10-19T06:57:25.179Z",
2391
+ "user": "blt4dcb45b4456bb358"
2392
+ }
2393
+ }
2394
+ },
2395
+ {
2396
+ "event_at": "2018-10-19T06:57:24.986Z",
2397
+ "content_type_uid": "speaker",
2398
+ "type": "entry_published",
2399
+ "data": {
2400
+ "title": "Cody Hosterman",
2401
+ "url": "/cody-hosterman",
2402
+ "full_name": "Cody Hosterman",
2403
+ "tags": [],
2404
+ "locale": "en-us",
2405
+ "uid": "blt30f79a6374513fd8",
2406
+ "created_by": "blt4dcb45b4456bb358",
2407
+ "updated_by": "blt4dcb45b4456bb358",
2408
+ "created_at": "2018-10-19T06:25:35.415Z",
2409
+ "updated_at": "2018-10-19T06:25:35.415Z",
2410
+ "_version": 1,
2411
+ "is_featured": false,
2412
+ "publish_details": {
2413
+ "environment": "blt5f66be5a7f2a4e70",
2414
+ "locale": "en-us",
2415
+ "time": "2018-10-19T06:57:24.986Z",
2416
+ "user": "blt4dcb45b4456bb358"
2417
+ }
2418
+ }
2419
+ },
2420
+ {
2421
+ "event_at": "2018-10-19T06:57:24.870Z",
2422
+ "content_type_uid": "session",
2423
+ "type": "entry_published",
2424
+ "data": {
2425
+ "is_popular": false,
2426
+ "title": "The vExpert Storage Game Show EMEA",
2427
+ "type": "Panel Session",
2428
+ "session_id": 2997,
2429
+ "tags": [],
2430
+ "locale": "en-us",
2431
+ "description": "",
2432
+ "track": [
2433
+ "blt5b95889e8422ffec"
2434
+ ],
2435
+ "start_time": "2018-08-26T08:00:00.000Z",
2436
+ "end_time": "2018-08-26T08:30:00.000Z",
2437
+ "speakers": [
2438
+ "blt4c9102a8aefda4c4",
2439
+ "blt139ca7314f8e196c"
2440
+ ],
2441
+ "room": [
2442
+ "blt16d673acd93d4bd3"
2443
+ ],
2444
+ "uid": "blt86da9d17a37732cb",
2445
+ "created_by": "blt4dcb45b4456bb358",
2446
+ "updated_by": "blt4dcb45b4456bb358",
2447
+ "created_at": "2018-10-19T06:28:00.470Z",
2448
+ "updated_at": "2018-10-19T06:29:51.999Z",
2449
+ "_version": 2,
2450
+ "publish_details": {
2451
+ "environment": "blt5f66be5a7f2a4e70",
2452
+ "locale": "en-us",
2453
+ "time": "2018-10-19T06:57:24.870Z",
2454
+ "user": "blt4dcb45b4456bb358"
2455
+ }
2456
+ }
2457
+ },
2458
+ {
2459
+ "event_at": "2018-10-19T06:57:24.547Z",
2460
+ "content_type_uid": "faq",
2461
+ "type": "entry_published",
2462
+ "data": {
2463
+ "title": "HOUSING",
2464
+ "url": "/housing",
2465
+ "faq_group": [
2466
+ {
2467
+ "sequence": 1,
2468
+ "question": "Do I need to contact the hotel to book my reservation?",
2469
+ "answer": "<p><span style=\"color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px;\">No, when you register online for VMworld, you will have an opportunity to request your hotel and your check-in and check-out dates, and will need to provide your credit card information. A hotel reservation will be made for you and guaranteed with your credit card.</span></p><div><span style=\"color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px;\"><br></span></div>"
2470
+ },
2471
+ {
2472
+ "sequence": 2,
2473
+ "question": "Do I need to give a credit card to reserve my room?",
2474
+ "answer": "<p><span style=\"color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px;\">Yes, a credit card will be needed to confirm your reservation at a designated VMworld 2018 US hotel. Please note: One night's lodging and tax will be charged by the hotel to your credit card upon reservation.</span></p><div><span style=\"color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px;\"><br></span></div>"
2475
+ },
2476
+ {
2477
+ "sequence": 3,
2478
+ "question": "Will I receive a hotel confirmation?",
2479
+ "answer": "<p><span style=\"color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px;\">Yes, your hotel confirmation will be sent to you once VMworld US registration is complete, and your hotel booking made. The hotel confirmation email will include your check-in and check-out dates, together with the hotel name and address. You will not receive a confirmation number for your booking.</span></p><div><span style=\"color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px;\"><br></span></div>"
2480
+ },
2481
+ {
2482
+ "sequence": 4,
2483
+ "question": "Which hotels offer smoking rooms?",
2484
+ "answer": "<p><span style=\"background-color: initial; color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px;\">Smoking rooms cannot be guaranteed and are only available upon request at check-in.</span></p><div class=\"anchortarget section\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; color: rgb(51, 51, 51); font-family: proxima_novalight; background-color: rgb(255, 255, 255);\"><a id=\"sesssions\" class=\"navSelecter\" style=\"box-sizing: border-box; transition: all 0s ease 0s; color: rgb(0, 105, 144); outline: none; display: block; width: 1280px; clear: both;\"></a></div><div class=\"paragraphText parbase section\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; font-size: 0px; color: rgb(51, 51, 51); font-family: proxima_novalight; background-color: rgb(255, 255, 255);\"><div class=\"section-custom \" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-top: 25px; margin-bottom: 25px; width: 1280px; display: inline-block;\"><div class=\"container-fluid\" style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-right: auto; margin-bottom: 0px; margin-left: auto; max-width: 100%; padding-right: 25px !important; padding-left: 25px !important;\"></div></div></div>"
2485
+ }
2486
+ ],
2487
+ "tags": [],
2488
+ "locale": "en-us",
2489
+ "uid": "blt342e7c5476baacc6",
2490
+ "created_by": "blt4dcb45b4456bb358",
2491
+ "updated_by": "blt4dcb45b4456bb358",
2492
+ "created_at": "2018-10-19T06:27:14.164Z",
2493
+ "updated_at": "2018-10-19T06:27:14.164Z",
2494
+ "_version": 1,
2495
+ "publish_details": {
2496
+ "environment": "blt5f66be5a7f2a4e70",
2497
+ "locale": "en-us",
2498
+ "time": "2018-10-19T06:57:24.547Z",
2499
+ "user": "blt4dcb45b4456bb358"
2500
+ }
2501
+ }
2502
+ },
2503
+ {
2504
+ "event_at": "2018-10-19T06:57:24.518Z",
2505
+ "content_type_uid": "track",
2506
+ "type": "entry_published",
2507
+ "data": {
2508
+ "title": "Hybrid Cloud",
2509
+ "tags": [],
2510
+ "comment": "",
2511
+ "locale": "en-us",
2512
+ "sort_order": "3",
2513
+ "track_color": "#f07100",
2514
+ "description": "",
2515
+ "uid": "blt9921c83ffc1009fc",
2516
+ "created_by": "blt4dcb45b4456bb358",
2517
+ "updated_by": "blt4dcb45b4456bb358",
2518
+ "created_at": "2018-10-19T06:28:48.107Z",
2519
+ "updated_at": "2018-10-19T06:28:48.107Z",
2520
+ "_version": 1,
2521
+ "publish_details": {
2522
+ "environment": "blt5f66be5a7f2a4e70",
2523
+ "locale": "en-us",
2524
+ "time": "2018-10-19T06:57:24.518Z",
2525
+ "user": "blt4dcb45b4456bb358"
2526
+ }
2527
+ }
2528
+ },
2529
+ {
2530
+ "event_at": "2018-10-19T06:57:24.515Z",
2531
+ "content_type_uid": "session",
2532
+ "type": "entry_published",
2533
+ "data": {
2534
+ "title": "SSDs – The Bacon of VMware",
2535
+ "session_id": 3172,
2536
+ "type": "Solutions Exchange Theater Booth 1901",
2537
+ "is_popular": false,
2538
+ "tags": [],
2539
+ "locale": "en-us",
2540
+ "description": "<p><span style=\"font-size: 18px;\">Technology-driven innovation&nbsp;is disrupting every market and industry. And it’s being created by people like you. You unlock value from today’s technologies while anticipating a rapidly approaching technological future. That’s why we created an event with you and your peers in mind. At&nbsp;2018,&nbsp;VMware’s premier digital infrastructure event, you can find what you need to launch the digital transformation that relies on you.</span></p>",
2541
+ "track": [
2542
+ "bltbbf807906ceaeb47"
2543
+ ],
2544
+ "start_time": "2018-08-26T02:30:00.000Z",
2545
+ "end_time": "2018-08-26T06:30:00.000Z",
2546
+ "speakers": [
2547
+ "blt47b3834af0205025",
2548
+ "blt5d09a7e07905f338"
2549
+ ],
2550
+ "room": [
2551
+ "blt37e633f9a0808f96"
2552
+ ],
2553
+ "uid": "blt6890221a965baca7",
2554
+ "created_by": "blt4dcb45b4456bb358",
2555
+ "updated_by": "blt4dcb45b4456bb358",
2556
+ "created_at": "2018-10-19T06:28:18.952Z",
2557
+ "updated_at": "2018-10-19T06:30:05.402Z",
2558
+ "_version": 2,
2559
+ "publish_details": {
2560
+ "environment": "blt5f66be5a7f2a4e70",
2561
+ "locale": "en-us",
2562
+ "time": "2018-10-19T06:57:24.515Z",
2563
+ "user": "blt4dcb45b4456bb358"
2564
+ }
2565
+ }
2566
+ },
2567
+ {
2568
+ "event_at": "2018-10-19T06:57:24.192Z",
2569
+ "content_type_uid": "room",
2570
+ "type": "entry_published",
2571
+ "data": {
2572
+ "title": "Room 14",
2573
+ "url": "/room-14",
2574
+ "attendee": 60,
2575
+ "tags": [],
2576
+ "locale": "en-us",
2577
+ "uid": "blt08538dbac8f0dd13",
2578
+ "created_by": "blt4dcb45b4456bb358",
2579
+ "updated_by": "blt4dcb45b4456bb358",
2580
+ "created_at": "2018-10-19T06:26:38.763Z",
2581
+ "updated_at": "2018-10-19T06:26:38.763Z",
2582
+ "_version": 1,
2583
+ "publish_details": {
2584
+ "environment": "blt5f66be5a7f2a4e70",
2585
+ "locale": "en-us",
2586
+ "time": "2018-10-19T06:57:24.192Z",
2587
+ "user": "blt4dcb45b4456bb358"
2588
+ }
2589
+ }
2590
+ },
2591
+ {
2592
+ "event_at": "2018-10-19T06:57:24.061Z",
2593
+ "content_type_uid": "room",
2594
+ "type": "entry_published",
2595
+ "data": {
2596
+ "title": "Room 01",
2597
+ "url": "/room-01",
2598
+ "attendee": 60,
2599
+ "tags": [],
2600
+ "locale": "en-us",
2601
+ "uid": "blt68974963bbcac550",
2602
+ "created_by": "blt4dcb45b4456bb358",
2603
+ "updated_by": "blt4dcb45b4456bb358",
2604
+ "created_at": "2018-10-19T06:26:37.015Z",
2605
+ "updated_at": "2018-10-19T06:26:37.015Z",
2606
+ "_version": 1,
2607
+ "publish_details": {
2608
+ "environment": "blt5f66be5a7f2a4e70",
2609
+ "locale": "en-us",
2610
+ "time": "2018-10-19T06:57:24.061Z",
2611
+ "user": "blt4dcb45b4456bb358"
2612
+ }
2613
+ }
2614
+ },
2615
+ {
2616
+ "event_at": "2018-10-19T06:57:23.821Z",
2617
+ "content_type_uid": "speaker",
2618
+ "type": "entry_published",
2619
+ "data": {
2620
+ "title": "Friea Berg",
2621
+ "url": "/friea-berg",
2622
+ "full_name": "Friea Berg",
2623
+ "tags": [],
2624
+ "locale": "en-us",
2625
+ "uid": "blt967e606131235d86",
2626
+ "created_by": "blt4dcb45b4456bb358",
2627
+ "updated_by": "blt4dcb45b4456bb358",
2628
+ "created_at": "2018-10-19T06:25:41.896Z",
2629
+ "updated_at": "2018-10-19T06:25:41.896Z",
2630
+ "_version": 1,
2631
+ "is_featured": false,
2632
+ "publish_details": {
2633
+ "environment": "blt5f66be5a7f2a4e70",
2634
+ "locale": "en-us",
2635
+ "time": "2018-10-19T06:57:23.821Z",
2636
+ "user": "blt4dcb45b4456bb358"
2637
+ }
2638
+ }
2639
+ },
2640
+ {
2641
+ "event_at": "2018-10-19T06:57:23.809Z",
2642
+ "content_type_uid": "speaker",
2643
+ "type": "entry_published",
2644
+ "data": {
2645
+ "title": "Cormac Hogan",
2646
+ "url": "/cormac-hogan",
2647
+ "full_name": "Cormac Hogan",
2648
+ "tags": [],
2649
+ "locale": "en-us",
2650
+ "uid": "blt1764946f6d863301",
2651
+ "created_by": "blt4dcb45b4456bb358",
2652
+ "updated_by": "blt4dcb45b4456bb358",
2653
+ "created_at": "2018-10-19T06:25:37.142Z",
2654
+ "updated_at": "2018-10-19T06:25:37.142Z",
2655
+ "_version": 1,
2656
+ "is_featured": false,
2657
+ "publish_details": {
2658
+ "environment": "blt5f66be5a7f2a4e70",
2659
+ "locale": "en-us",
2660
+ "time": "2018-10-19T06:57:23.809Z",
2661
+ "user": "blt4dcb45b4456bb358"
2662
+ }
2663
+ }
2664
+ },
2665
+ {
2666
+ "event_at": "2018-10-19T06:57:23.802Z",
2667
+ "content_type_uid": "speaker",
2668
+ "type": "entry_published",
2669
+ "data": {
2670
+ "title": "Rick Vanover",
2671
+ "url": "/rick-vanover",
2672
+ "full_name": "Rick Vanover",
2673
+ "tags": [],
2674
+ "locale": "en-us",
2675
+ "uid": "blt49d813e013e9ca60",
2676
+ "created_by": "blt4dcb45b4456bb358",
2677
+ "updated_by": "blt4dcb45b4456bb358",
2678
+ "created_at": "2018-10-19T06:25:43.708Z",
2679
+ "updated_at": "2018-10-19T06:25:43.708Z",
2680
+ "_version": 1,
2681
+ "is_featured": false,
2682
+ "publish_details": {
2683
+ "environment": "blt5f66be5a7f2a4e70",
2684
+ "locale": "en-us",
2685
+ "time": "2018-10-19T06:57:23.802Z",
2686
+ "user": "blt4dcb45b4456bb358"
2687
+ }
2688
+ }
2689
+ },
2690
+ {
2691
+ "event_at": "2018-10-19T06:57:23.790Z",
2692
+ "content_type_uid": "session",
2693
+ "type": "entry_published",
2694
+ "data": {
2695
+ "is_popular": false,
2696
+ "title": "Business Communications: In House vs. Cloud",
2697
+ "type": "Panel Session",
2698
+ "session_id": 2063,
2699
+ "tags": [],
2700
+ "locale": "en-us",
2701
+ "description": "",
2702
+ "track": [
2703
+ "blte532e0f30e7e0906"
2704
+ ],
2705
+ "start_time": "2018-08-26T05:30:00.000Z",
2706
+ "end_time": "2018-08-26T06:30:00.000Z",
2707
+ "speakers": [
2708
+ "bltc30903268ba5a959",
2709
+ "blta7c0417b53673e77"
2710
+ ],
2711
+ "room": [
2712
+ "bltd297643cb1ad9baa"
2713
+ ],
2714
+ "uid": "blt1d3db98b6cad71fe",
2715
+ "created_by": "blt4dcb45b4456bb358",
2716
+ "updated_by": "blt4dcb45b4456bb358",
2717
+ "created_at": "2018-10-19T06:28:05.459Z",
2718
+ "updated_at": "2018-10-19T06:29:55.830Z",
2719
+ "_version": 2,
2720
+ "publish_details": {
2721
+ "environment": "blt5f66be5a7f2a4e70",
2722
+ "locale": "en-us",
2723
+ "time": "2018-10-19T06:57:23.790Z",
2724
+ "user": "blt4dcb45b4456bb358"
2725
+ }
2726
+ }
2727
+ },
2728
+ {
2729
+ "event_at": "2018-10-19T06:57:23.766Z",
2730
+ "content_type_uid": "faq",
2731
+ "type": "entry_published",
2732
+ "data": {
2733
+ "title": "GENERAL CONFERENCE",
2734
+ "url": "/general-conference",
2735
+ "faq_group": [
2736
+ {
2737
+ "sequence": 1,
2738
+ "question": "Will I need a badge to get in?",
2739
+ "answer": "<p><span style=\"color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px; background-color: initial;\">Yes, a conference badge is required for entry into the conference and should be worn at all times. You'll be able to pick up your badge at the VMworld registration desk during open registration hours. For security purposes, be prepared to show identification. If you lose your badge, you may show photo identification and have it reprinted at a registration check-in desk for a $75 fee.</span></p>"
2740
+ },
2741
+ {
2742
+ "sequence": 2,
2743
+ "question": "Do I need a visa to attend the conference?",
2744
+ "answer": "<p><span style=\"color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px; background-color: initial;\">There are a few countries that require a visa for entry. We recommend checking in advance with your country's local U.S. consulate for details and requirements.</span></p>"
2745
+ },
2746
+ {
2747
+ "sequence": -1,
2748
+ "question": "How do I obtain a visa invitation letter?",
2749
+ "answer": "<p><span style=\"color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px;\">During the registration process you will be asked if you require a visa letter. In order to request a visa letter from the VMworld team, please be prepared to provide the following information:</span></p><ul style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 10px; padding-left: 0px; list-style: none; color: rgb(51, 51, 51); font-family: proxima_novalight; font-size: 0px; background-color: rgb(255, 255, 255);\"><li style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-left: 15px; color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px; line-height: normal; overflow-wrap: break-word; list-style-position: outside !important;\">Full name on passport</li><li style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-left: 15px; color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px; line-height: normal; overflow-wrap: break-word; list-style-position: outside !important;\">Date and place of birth</li><li style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-left: 15px; color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px; line-height: normal; overflow-wrap: break-word; list-style-position: outside !important;\">Gender</li><li style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-left: 15px; color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px; line-height: normal; overflow-wrap: break-word; list-style-position: outside !important;\">Nationality</li><li style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-left: 15px; color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px; line-height: normal; overflow-wrap: break-word; list-style-position: outside !important;\">Passport number, place and date of issue, and date of expiration</li><li style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-left: 15px; color: rgb(86, 86, 86); font-family: proxima_novaregular; font-size: 18px; line-height: normal; overflow-wrap: break-word; list-style-position: outside !important;\">Are you a government official [yes, no]</li></ul><p style=\"box-sizing: border-box; transition: all 0.5s ease 0s; margin-bottom: 0px; font-family: proxima_novaregular; color: rgb(86, 86, 86); font-size: 18px; line-height: normal; background-color: rgb(255, 255, 255);\">Visa invitation letters will be submitted for approval for attendees who have requested a letter and have completed registration data for a full conference pass, including payment. Please note we can only issue visa letters for fully paid attendees and you will need to allow two to three weeks for your embassy to process your request. Visa letter requests will not be accepted after July 27, 2</p>"
2750
+ }
2751
+ ],
2752
+ "tags": [],
2753
+ "locale": "en-us",
2754
+ "uid": "blt483767999fddee53",
2755
+ "created_by": "blt4dcb45b4456bb358",
2756
+ "updated_by": "blt4dcb45b4456bb358",
2757
+ "created_at": "2018-10-19T06:27:10.563Z",
2758
+ "updated_at": "2018-10-19T06:27:10.563Z",
2759
+ "_version": 1,
2760
+ "publish_details": {
2761
+ "environment": "blt5f66be5a7f2a4e70",
2762
+ "locale": "en-us",
2763
+ "time": "2018-10-19T06:57:23.766Z",
2764
+ "user": "blt4dcb45b4456bb358"
2765
+ }
2766
+ }
2767
+ },
2768
+ {
2769
+ "event_at": "2018-10-19T06:57:23.633Z",
2770
+ "content_type_uid": "speaker",
2771
+ "type": "entry_published",
2772
+ "data": {
2773
+ "title": "Duncan Epping",
2774
+ "url": "/duncan-epping",
2775
+ "full_name": "Duncan Epping",
2776
+ "tags": [],
2777
+ "locale": "en-us",
2778
+ "uid": "blt2c851a229bb6e737",
2779
+ "created_by": "blt4dcb45b4456bb358",
2780
+ "updated_by": "blt4dcb45b4456bb358",
2781
+ "created_at": "2018-10-19T06:25:38.817Z",
2782
+ "updated_at": "2018-10-19T06:25:38.817Z",
2783
+ "_version": 1,
2784
+ "is_featured": false,
2785
+ "publish_details": {
2786
+ "environment": "blt5f66be5a7f2a4e70",
2787
+ "locale": "en-us",
2788
+ "time": "2018-10-19T06:57:23.633Z",
2789
+ "user": "blt4dcb45b4456bb358"
2790
+ }
2791
+ }
2792
+ },
2793
+ {
2794
+ "event_at": "2018-10-19T06:57:23.627Z",
2795
+ "content_type_uid": "track",
2796
+ "type": "entry_published",
2797
+ "data": {
2798
+ "title": "Cloud Infrastructure",
2799
+ "tags": [],
2800
+ "comment": "",
2801
+ "locale": "en-us",
2802
+ "sort_order": "7",
2803
+ "track_color": "#e6484a",
2804
+ "description": "",
2805
+ "uid": "blt8a1a4ec74fd7392a",
2806
+ "created_by": "blt4dcb45b4456bb358",
2807
+ "updated_by": "blt4dcb45b4456bb358",
2808
+ "created_at": "2018-10-19T06:28:41.853Z",
2809
+ "updated_at": "2018-10-19T06:28:41.853Z",
2810
+ "_version": 1,
2811
+ "publish_details": {
2812
+ "environment": "blt5f66be5a7f2a4e70",
2813
+ "locale": "en-us",
2814
+ "time": "2018-10-19T06:57:23.627Z",
2815
+ "user": "blt4dcb45b4456bb358"
2816
+ }
2817
+ }
2818
+ },
2819
+ {
2820
+ "event_at": "2018-10-19T06:57:23.618Z",
2821
+ "content_type_uid": "track",
2822
+ "type": "entry_published",
2823
+ "data": {
2824
+ "title": "End User Computing",
2825
+ "tags": [],
2826
+ "comment": "",
2827
+ "locale": "en-us",
2828
+ "sort_order": "6",
2829
+ "track_color": "#22b9b5",
2830
+ "description": "",
2831
+ "uid": "blt587e38d1959a7f26",
2832
+ "created_by": "blt4dcb45b4456bb358",
2833
+ "updated_by": "blt4dcb45b4456bb358",
2834
+ "created_at": "2018-10-19T06:28:44.219Z",
2835
+ "updated_at": "2018-10-19T06:28:44.219Z",
2836
+ "_version": 1,
2837
+ "publish_details": {
2838
+ "environment": "blt5f66be5a7f2a4e70",
2839
+ "locale": "en-us",
2840
+ "time": "2018-10-19T06:57:23.618Z",
2841
+ "user": "blt4dcb45b4456bb358"
2842
+ }
2843
+ }
2844
+ },
2845
+ {
2846
+ "event_at": "2018-10-19T06:57:23.613Z",
2847
+ "content_type_uid": "session",
2848
+ "type": "entry_published",
2849
+ "data": {
2850
+ "is_popular": false,
2851
+ "title": "Beyond the Bricks: Building Custom Enterprise Class Converged Infrastructure Virtualization Platforms.",
2852
+ "type": "Breakout Session",
2853
+ "session_id": 2605,
2854
+ "tags": [],
2855
+ "locale": "en-us",
2856
+ "description": "",
2857
+ "track": [
2858
+ "blt8a1a4ec74fd7392a"
2859
+ ],
2860
+ "start_time": "2018-08-26T06:30:00.000Z",
2861
+ "end_time": "2018-08-26T07:00:00.000Z",
2862
+ "speakers": [
2863
+ "blt55defbe962060672"
2864
+ ],
2865
+ "room": [
2866
+ "bltd7b95453aec2fad9"
2867
+ ],
2868
+ "uid": "blt7a02d98ebd227dee",
2869
+ "created_by": "blt4dcb45b4456bb358",
2870
+ "updated_by": "blt4dcb45b4456bb358",
2871
+ "created_at": "2018-10-19T06:28:03.466Z",
2872
+ "updated_at": "2018-10-19T06:29:53.988Z",
2873
+ "_version": 2,
2874
+ "publish_details": {
2875
+ "environment": "blt5f66be5a7f2a4e70",
2876
+ "locale": "en-us",
2877
+ "time": "2018-10-19T06:57:23.613Z",
2878
+ "user": "blt4dcb45b4456bb358"
2879
+ }
2880
+ }
2881
+ },
2882
+ {
2883
+ "event_at": "2018-10-19T06:57:23.591Z",
2884
+ "content_type_uid": "room",
2885
+ "type": "entry_published",
2886
+ "data": {
2887
+ "title": "Room 19",
2888
+ "url": "/room-19",
2889
+ "attendee": 60,
2890
+ "tags": [],
2891
+ "locale": "en-us",
2892
+ "uid": "blt36d1c5d45bde4e35",
2893
+ "created_by": "blt4dcb45b4456bb358",
2894
+ "updated_by": "blt4dcb45b4456bb358",
2895
+ "created_at": "2018-10-19T06:26:40.668Z",
2896
+ "updated_at": "2018-10-19T06:26:40.668Z",
2897
+ "_version": 1,
2898
+ "publish_details": {
2899
+ "environment": "blt5f66be5a7f2a4e70",
2900
+ "locale": "en-us",
2901
+ "time": "2018-10-19T06:57:23.591Z",
2902
+ "user": "blt4dcb45b4456bb358"
2903
+ }
2904
+ }
2905
+ },
2906
+ {
2907
+ "event_at": "2018-10-19T06:57:23.504Z",
2908
+ "content_type_uid": "session",
2909
+ "type": "entry_published",
2910
+ "data": {
2911
+ "is_popular": false,
2912
+ "title": "Customer Case Study & Demo on Application Mobility: How to seamlessly move applications and stretch networks to vCloud Hybrid Service",
2913
+ "type": "Breakout Session",
2914
+ "session_id": 2708,
2915
+ "tags": [],
2916
+ "locale": "en-us",
2917
+ "description": "",
2918
+ "track": [
2919
+ "blt8d64bab84f3a4ae7"
2920
+ ],
2921
+ "start_time": "2018-08-27T07:30:00.000Z",
2922
+ "end_time": "2018-08-27T09:00:00.000Z",
2923
+ "speakers": [
2924
+ "blteeb4b7e0f6146435",
2925
+ "blt47b3834af0205025"
2926
+ ],
2927
+ "room": [
2928
+ "bltd7b95453aec2fad9"
2929
+ ],
2930
+ "uid": "bltca1b60577fe4c75e",
2931
+ "created_by": "blt4dcb45b4456bb358",
2932
+ "updated_by": "blt4dcb45b4456bb358",
2933
+ "created_at": "2018-10-19T06:28:13.234Z",
2934
+ "updated_at": "2018-10-19T06:30:01.559Z",
2935
+ "_version": 2,
2936
+ "publish_details": {
2937
+ "environment": "blt5f66be5a7f2a4e70",
2938
+ "locale": "en-us",
2939
+ "time": "2018-10-19T06:57:23.504Z",
2940
+ "user": "blt4dcb45b4456bb358"
2941
+ }
2942
+ }
2943
+ },
2944
+ {
2945
+ "event_at": "2018-10-19T06:57:23.341Z",
2946
+ "content_type_uid": "section",
2947
+ "type": "entry_published",
2948
+ "data": {
2949
+ "title": "Day 1",
2950
+ "url": "/day-1",
2951
+ "name": "26th Aug, 2018",
2952
+ "start_time": "2018-08-26T02:30:00.000Z",
2953
+ "end_time": "2018-08-26T14:30:00.000Z",
2954
+ "tags": [],
2955
+ "locale": "en-us",
2956
+ "uid": "blt0607e9126d133744",
2957
+ "created_by": "blt4dcb45b4456bb358",
2958
+ "updated_by": "blt4dcb45b4456bb358",
2959
+ "created_at": "2018-10-19T06:25:04.701Z",
2960
+ "updated_at": "2018-10-19T06:25:04.701Z",
2961
+ "_version": 1,
2962
+ "publish_details": {
2963
+ "environment": "blt5f66be5a7f2a4e70",
2964
+ "locale": "en-us",
2965
+ "time": "2018-10-19T06:57:23.341Z",
2966
+ "user": "blt4dcb45b4456bb358"
2967
+ }
2968
+ }
2969
+ }
2970
+ ],
2971
+ "skip": 0,
2972
+ "limit": 100,
2973
+ "total_count": 123,
2974
+ "pagination_token": "blt039eb3e8a56a272be85898"
2975
+ }