ibm-watson-ruby 0.1.2 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 15892bc1e215dd42b242c92c2bf0a5d839a1baa5
4
- data.tar.gz: 14373e54c5085c21b72b487349efa0e523cdb36a
3
+ metadata.gz: 4195043f34b44ae8e6104626cee4fef3f7a7e8f9
4
+ data.tar.gz: 6e3cf39273d65c22a80cfee04f106c9e299809ee
5
5
  SHA512:
6
- metadata.gz: e2a5ca379e49f61e6370dd72d5f1653d067dc42835e2022c4234cda18192b853bf97e5f5e8f077053dc2e0d242959a19789b30f7513d328323ab180885fd1fed
7
- data.tar.gz: a80c6431fb249a96d381699c2421de76436514fccf670e7859eb557ee4f30c29a3a429eb3936120105e0011ce1a9af67a9d0a46562540bfe1f831a6abf686daa
6
+ metadata.gz: '08675ae5595f2dadb3341e3b7e26d892007c660e3eb204e3be4965511465c0923738999f519c527b8b4ba27a15ede433e54f919ca82fe260488994dd4f26c3f4'
7
+ data.tar.gz: 46a9e4b2a0f4da53b779e38dc6d5525a2f8c0aff927eb0991c6b8e2ee6ca9c20a6141f0a0fb358c0bbafb08161b8e1be2ebad6dd2e8f5f0ca0ddd197462e93df
@@ -6,7 +6,7 @@ module IBMWatson
6
6
  QUERY_VERSION = "2017-02-03"
7
7
 
8
8
  def workspace(workspace_id:, export: false)
9
- url = build_url('workspaces', workspace_id, query: { version: QUERY_VERSION, export: export})
9
+ url = build_url('workspaces', workspace_id, query: { version: QUERY_VERSION, export: export })
10
10
  result = accept_json(basic_auth).get(url)
11
11
  verify_http_result(result)
12
12
  IBMWatson::Conversation::Workspace.new.tap do |result_object|
@@ -14,19 +14,36 @@ module IBMWatson
14
14
  end
15
15
  end
16
16
 
17
- def update_workspace(workspace_id:, workspace_data:)
18
- url = build_url('workspaces', workspace_id, query: { version: QUERY_VERSION })
19
- result = accept_json(basic_auth).post(url, json: workspace_data)
17
+ def list_workspaces
18
+ url = build_url('workspaces', query: { version: QUERY_VERSION })
19
+ result = accept_json(basic_auth).get(url)
20
20
  verify_http_result(result)
21
- IBMWatson::Conversation::Workspace.new.tap do |result_object|
22
- result_object.from_json(result)
21
+ json_result = JSON.parse(result.body)
22
+ json_result['workspaces'].map do |workspace_json|
23
+ IBMWatson::Conversation::Workspace.new(workspace_json)
23
24
  end
24
25
  end
25
26
 
27
+ def create_workspace(workspace_data:)
28
+ url = build_url('workspaces', query: { version: QUERY_VERSION })
29
+ upload_workspace(url, workspace_data)
30
+ end
31
+
32
+ def delete_workspace(workspace_id:)
33
+ url = build_url('workspaces', workspace_id, query: { version: QUERY_VERSION})
34
+ result = accept_json(basic_auth).delete(url)
35
+ verify_http_result(result)
36
+ end
37
+
38
+ def update_workspace(workspace_id:, workspace_data:)
39
+ url = build_url('workspaces', workspace_id, query: { version: QUERY_VERSION })
40
+ upload_workspace(url, workspace_data)
41
+ end
42
+
26
43
  def message(workspace_id:, input:, context:, alternate_intents: false)
27
- url = build_url('workspaces',workspace_id, 'message', query: { version: QUERY_VERSION})
44
+ url = build_url('workspaces', workspace_id, 'message', query: { version: QUERY_VERSION })
28
45
  params = {
29
- input: {text: input},
46
+ input: { text: input },
30
47
  context: context.as_json,
31
48
  alternate_intents: alternate_intents
32
49
  }
@@ -36,6 +53,16 @@ module IBMWatson
36
53
  result_object.from_json(result)
37
54
  end
38
55
  end
56
+
57
+ private
58
+
59
+ def upload_workspace(url, workspace_data)
60
+ result = accept_json(basic_auth).post(url, json: workspace_data)
61
+ verify_http_result(result)
62
+ IBMWatson::Conversation::Workspace.new.tap do |result_object|
63
+ result_object.from_json(result)
64
+ end
65
+ end
39
66
  end
40
67
  end
41
68
  end
@@ -1,3 +1,3 @@
1
1
  module IBMWatson
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -6,11 +6,12 @@ describe IBMWatson::Conversation::Service, record: :none do
6
6
  let(:username) { ENV['IBM_WATSON_CONVERSATION_USERNAME'] }
7
7
  let(:password) { ENV['IBM_WATSON_CONVERSATION_PASSWORD'] }
8
8
  let(:workspace_id) { ENV['IBM_WATSON_WORKSPACE_ID'] }
9
+ let(:delete_workspace_id) { ENV['IBM_WATSON_WORKSPACE_ID_TO_DELETE'] }
9
10
  subject(:service) do
10
11
  described_class.new(username: username, password: password)
11
12
  end
12
13
 
13
- describe "#message", record: :all do
14
+ describe "#message" do
14
15
  before do
15
16
  data = YAML.load_file('spec/assets/poc_workspace.json')
16
17
  subject.update_workspace(workspace_id: workspace_id, workspace_data: data)
@@ -49,6 +50,15 @@ describe IBMWatson::Conversation::Service, record: :none do
49
50
  end
50
51
  end
51
52
 
53
+ describe "#list_workspaces" do
54
+ let(:expected_count) { 8 }
55
+ example do
56
+ result = subject.list_workspaces
57
+ expect(result.first).to be_a_kind_of(IBMWatson::Conversation::Workspace)
58
+ expect(result.count).to eq expected_count
59
+ end
60
+ end
61
+
52
62
  describe "#workspace" do
53
63
  example do
54
64
  result = subject.workspace(workspace_id: workspace_id, export: true)
@@ -68,4 +78,25 @@ describe IBMWatson::Conversation::Service, record: :none do
68
78
  subject.update_workspace(workspace_id: workspace_id, workspace_data: workspace)
69
79
  end
70
80
  end
81
+
82
+ describe "#create_workspace" do
83
+ example do
84
+ result = subject.workspace(workspace_id: workspace_id, export: true)
85
+ workspace = {
86
+ name: 'IBM Watson Ruby Gem Spec Created Workspace',
87
+ intents: result.intents.map(&:as_json),
88
+ entities: result.entities.map(&:as_json),
89
+ dialog_nodes: result.dialog_nodes.map(&:as_json),
90
+ }
91
+ subject.create_workspace(workspace_data: workspace)
92
+ end
93
+ end
94
+
95
+ describe "#delete_workspace" do
96
+ example do
97
+ expect {
98
+ subject.delete_workspace(workspace_id: delete_workspace_id)
99
+ }.not_to raise_error
100
+ end
101
+ end
71
102
  end
@@ -0,0 +1,802 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://gateway.watsonplatform.net/conversation/api/v1/workspaces/9c9b5bb9-9841-4c08-a69b-1af8797c74c8?export=true&version=2017-02-03
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/json
12
+ Connection:
13
+ - close
14
+ User-Agent:
15
+ - http.rb/2.2.1
16
+ response:
17
+ status:
18
+ code: 404
19
+ message: Not Found
20
+ headers:
21
+ X-Backside-Transport:
22
+ - FAIL FAIL
23
+ Connection:
24
+ - close
25
+ Transfer-Encoding:
26
+ - chunked
27
+ X-Content-Type-Options:
28
+ - nosniff
29
+ X-Download-Options:
30
+ - noopen
31
+ X-Ratelimit-Reset:
32
+ - '1491520353'
33
+ Date:
34
+ - Thu, 06 Apr 2017 22:45:40 GMT
35
+ X-Frame-Options:
36
+ - SAMEORIGIN
37
+ Strict-Transport-Security:
38
+ - max-age=31536000;
39
+ X-Ratelimit-Remaining:
40
+ - '18'
41
+ Etag:
42
+ - W/"1e-EQXgN3/vZJRmPkOk8Nrjcw"
43
+ X-Dns-Prefetch-Control:
44
+ - 'off'
45
+ Vary:
46
+ - Accept-Encoding
47
+ X-Ratelimit-Limit:
48
+ - '20'
49
+ X-Xss-Protection:
50
+ - 1; mode=block
51
+ Content-Type:
52
+ - application/json;charset=utf-8
53
+ Server:
54
+ - "-"
55
+ Set-Cookie:
56
+ - Watson-DPAT=TxFLerUjuci7naObJrCMsVSg5SnkdRr39mJeofgknxLyKnzIdqUZi9YUTLu7vfuSKpwiB52VoL5yhPwiBg6eWUAZj2f9fHvvGNTJI85aO0i8inWjwuUsaGBZK3IgjT7Va1FVwu9GopEzrV7NWcpgEbltbswmACU0N0TMvVvaE2pRKtt1kBcLg6dVVGgfotB0dwX5TRP1iZa4m1uLqUZNI8hS2pt3ktY1OR65wxykMvnLFa%2FdXRptnr6nUuA3DfQJejupXAP3Qp%2FY2Bx47zGeJto42s6jQ6XUFekBMyW609Pptmb4FqvN5MpALgww4oAym6YPcWZneJXp%2FgK7rVIMnbakIEQ6Wg4aBIb0c7gGz2fv7%2FUAGHI2FoPQhxRvkwe280KcrD9LjJiDM3xCFePYKmBNJPol0D%2BPTwSKRDt6XyfJQMqz02l5KDuFuW3yllDFB2UgdhZe74%2Fe19REG9U9c1oQMUgZuop%2BtYAZ9liT3R7WqPfC2R8so%2F6F6f8g2otmVWPpM8IXB7nR83aXbdGXrfCMZ6WiRyLjwzQel9%2Bm5WKzIgBLOcDB%2FAFGfscvacAb4aiNuXpNYG%2FAdzsZkvZuVo8rvAiGfdNG%2FnVQ7zXjVtN2NfkqDVjoEywNxZUOrBsX0vIQn2VvrXYQ7ZBMCP77Pfo1zEwn%2BIEifx4LIMnXNR5SM7WKdU2fpNvjg73JsZ8HeOWBrjiDCUnE1H1YYgK6oZwNRDb77DALL0PpZzx%2FI3jlHbqsaGeDbhAowrLFZTrRIKLpbpD2Z9PYx1puhpgOJGCIp7b%2BLgu03HbvjuT9solq0Kg3v9uY6SJ6sfv%2BV72w0WsgxQoQc2LntIEAawaXQj%2FvFyLsQOwvLSKWvgFkEn9RcedyZNDPIq4s5xez2mKSmyshZDYjmYjVq5IZNzgZR8ubwXD%2Fqp%2Bt2mBnpiEaBSZ7%2Fs7fmRRTHkfOd1ZnnNq5LDJIrZnHjdhGZqhnlwi2AIjTrWlsn0St;
57
+ path=/conversation/api; secure; HttpOnly
58
+ X-Client-Ip:
59
+ - 172.218.196.173
60
+ X-Global-Transaction-Id:
61
+ - '234385052'
62
+ X-Dp-Watson-Tran-Id:
63
+ - gateway-dp01-234385052
64
+ body:
65
+ encoding: UTF-8
66
+ string: '{"error":"Resource not found"}'
67
+ http_version:
68
+ recorded_at: Thu, 06 Apr 2017 22:45:40 GMT
69
+ - request:
70
+ method: get
71
+ uri: https://gateway.watsonplatform.net/conversation/api/v1/workspaces/80738bb6-bc71-433a-b0b4-88f15ee01b3b?export=true&version=2017-02-03
72
+ body:
73
+ encoding: US-ASCII
74
+ string: ''
75
+ headers:
76
+ Accept:
77
+ - application/json
78
+ Connection:
79
+ - close
80
+ User-Agent:
81
+ - http.rb/2.2.1
82
+ response:
83
+ status:
84
+ code: 200
85
+ message: OK
86
+ headers:
87
+ X-Backside-Transport:
88
+ - OK OK
89
+ Connection:
90
+ - close
91
+ Transfer-Encoding:
92
+ - chunked
93
+ X-Content-Type-Options:
94
+ - nosniff
95
+ X-Download-Options:
96
+ - noopen
97
+ X-Ratelimit-Reset:
98
+ - '1491520353'
99
+ Date:
100
+ - Thu, 06 Apr 2017 22:46:34 GMT
101
+ X-Frame-Options:
102
+ - SAMEORIGIN
103
+ Strict-Transport-Security:
104
+ - max-age=31536000;
105
+ X-Ratelimit-Remaining:
106
+ - '17'
107
+ Etag:
108
+ - '1490402934442'
109
+ X-Dns-Prefetch-Control:
110
+ - 'off'
111
+ Vary:
112
+ - Accept-Encoding
113
+ X-Ratelimit-Limit:
114
+ - '20'
115
+ X-Xss-Protection:
116
+ - 1; mode=block
117
+ Content-Type:
118
+ - application/json;charset=utf-8
119
+ Server:
120
+ - "-"
121
+ Set-Cookie:
122
+ - Watson-DPAT=uFA902iDQQ7%2FuOj%2Bgy06a5rkUX4CDx3rxmV6rH9jl2P%2BUzM9djIGITYq2FN9aeWCAvJYmwDWO294WJc3lYUmopW2lUKMiGjjf%2FP7wgTHJqmgPywUwz2ynTeq7l5g7pWhgd53c1W1cM5WLjofKVaXtHuKDaue%2FHnsZoNe%2FXdRmz1qi6cT5DxvboMBCJeFYSoS8zu1zBzRtwmZL6%2F67vKqcZHTnmoO4QKKQxz03WQI5jzFW8HFNqYuyS1YM9R55IIJPh0u%2FMinMkBLsoGS%2FIy51P8X7jQd7ZRsAKYVGJKfK3ih4tWm8A2M36wWA1Lpy8yMSlMeK40fSSYUv3iWXgFyL8VjMeOlsCLu5iIcQxL6TpoP6veQuETEFgxJtArSfzwfPHsu2IZoh4BYJWSWW5F8FjvMdfrULLpxpdkZFuWtmqQIESuA%2Frm%2FgwNcWuA0g%2B3%2Fn4PiJKymgxoOvAzRxWwy%2Fy4Cw04RUlr9X9hPHC3VM%2FBRApb2ah8xYr0KSPzwJkxYuWkPhBuE0olOto%2BH1GEXH6IjKdvE2D8uNS8T3ok1518JDi9DMTq4nabcJa30JZYM%2FflnYdj508d6Z3Zkx07Dw6mDJL8LO2p9Q5mILgntZ3FlOLP6yNphpxa4eh4i8y%2F9VluEti1fCS8xaZudFHG3FAn2P2%2Bea4w1mGuP57R9TAbZ1zLtcWtHDBWqygdtpFQWMTwMgUBBqKC%2BZzO671W%2Fllnr5SP7T4GVCq6Slcizwmc%2FnKBGPyGIpsXGwQvxwtQhAkDCftxzOveQeYggKq99OC2SUUyFXvhvXl7lFbpEbWABgyVKLcWIptuNYRib9u78CvTuYp4lZzS%2FaeT7LWJzuTPgbQER9sLDBY%2BJbDPU4V7c6f690abnYnYJ4%2Bo1ZlMdnGH3NEmShUDp2daXArJbukyx8o4vkh76yelAQ2MWN5pJ6rBXjDjF6FjKuyDAWcLnCDO400w4UQn%2FdavlHP0Ftqkj75tO5LyL;
123
+ path=/conversation/api; secure; HttpOnly
124
+ X-Client-Ip:
125
+ - 172.218.196.173
126
+ X-Global-Transaction-Id:
127
+ - '234462796'
128
+ X-Dp-Watson-Tran-Id:
129
+ - gateway-dp01-234462796
130
+ body:
131
+ encoding: UTF-8
132
+ string: '{"name":"POC","created":"2017-03-25T00:48:38.808Z","intents":[{"intent":"ask_about_property","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Can
133
+ I enquire about the home on willows road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
134
+ you tell me about the house on willows?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
135
+ do you know about 1003 brothers place?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
136
+ do you know about 3520 Willows Road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
137
+ do you know about the place on drake street?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_mls_number","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Does
138
+ it have an MLS number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
139
+ am interested in the MLS number.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"mls?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"mls
140
+ number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What''s
141
+ the mls number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_pets","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Are
142
+ dogs allowed?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Are
143
+ pets allowed?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Are
144
+ there any animal restrictions?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
145
+ I bring a pet?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
146
+ I have a cat?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
147
+ have a dog, is that allowed?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_photos","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Can
148
+ I see photos?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
149
+ I see photos of the house on willows road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
150
+ you have pictures?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
151
+ you have pictures of the place at 3520 Willows Road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Pictures?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_the_price","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Can
152
+ you tell me what the list price is?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
153
+ much?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
154
+ much does it cost?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
155
+ much does the property cost?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
156
+ much is it?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
157
+ much is the home?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
158
+ much is the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
159
+ much is the property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"List
160
+ price?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Selling
161
+ price?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
162
+ is the asking price?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
163
+ is the list price?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
164
+ is the price of the home?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
165
+ is the price of the house on willows road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_unit_number","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Is
166
+ there a unit number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"unit?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
167
+ is the unit number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What''s
168
+ the unit?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
169
+ unit number is it?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_unknown","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Age
170
+ and condition of the roof?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Condition
171
+ of property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Did
172
+ the property have a home inspection done when the present owners bought it?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
173
+ you have the the furnace type and service history?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Has
174
+ anybody else made an offer on this property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
175
+ close is public transit?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
176
+ energy efficient is the property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
177
+ long has the property been on the market?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
178
+ long have the owners lived there?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
179
+ long they have owned the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
180
+ many bathrooms are on the basement?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
181
+ many bedrooms are on the basement?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
182
+ much are utility bills in the area?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
183
+ much can it rent for?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
184
+ new or how sturdy are the drains and guttering?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
185
+ old is the roof","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"peak
186
+ a boo view?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Size
187
+ of backyard?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
188
+ me about the basement.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
189
+ home repairs/improvements have been made?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
190
+ is the crime rate like in the neighbourhood?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
191
+ is the electrical panel size?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
192
+ is the furnace age?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
193
+ was the boiler last replaced?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_what_i_can_do","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"ask
194
+ what I can do","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
195
+ you answer my real estate questions?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
196
+ can you help me?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
197
+ are your abilities?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
198
+ are your capabilities?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
199
+ can you do?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
200
+ kinds of questions can you answer?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_who_i_am","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Ask
201
+ who I am","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
202
+ you have a name?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
203
+ do I call you?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
204
+ do your friends call you?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
205
+ is your name?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Who
206
+ are you?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_zoning","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Current
207
+ zoning?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
208
+ is the property zoning?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
209
+ is the zone?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
210
+ is the zoning?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
211
+ zone is it in?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Zoning?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"confused","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"help
212
+ me","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
213
+ don''t get it","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
214
+ don''t understand","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
215
+ don''t understand.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
216
+ confused","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
217
+ confused.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What''s
218
+ happening?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"enquire_about_homes","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Do
219
+ have homes under 700k?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
220
+ you have a condo for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
221
+ you have any condos?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
222
+ you have any home where I can have a dog?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
223
+ you have any houses for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
224
+ you have any pet friendly homes?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
225
+ you have condos with 2 bathrooms?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
226
+ you have houses with 5 bedrooms?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''d
227
+ like a place where I can bring my cat.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
228
+ interested in a duplex.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
229
+ interested in a house.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
230
+ looking for a home where I can have a dog.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
231
+ want to know about your apartments for sale.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
232
+ homes do you have for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
233
+ properties do you have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"express_delight","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":";-)","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":";)","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":":-)","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":":)","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"☺","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Awesome!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Excellent!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Express
234
+ delight","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Great!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
235
+ like it!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Nice!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":":smile:","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":":wink:","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Wow!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"greeting","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"hello","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"hello?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"hey","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"hi","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"is
236
+ anyone home?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"is
237
+ someone there?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"how_are_you","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"are
238
+ you doing okay?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"are
239
+ you okay?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"how
240
+ are things?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"how
241
+ are you?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"how''s
242
+ it going?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"like_this","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"like
243
+ this","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Like
244
+ this?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"so
245
+ like this?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"no_problem","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Don''t
246
+ mention it.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Don''t
247
+ worry about it.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"No
248
+ worries.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Oh
249
+ that''s okay.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Sure.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
250
+ me there''s no problem","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"open_house","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Appointment?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Appointment
251
+ time?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
252
+ I see the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
253
+ I view the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Is
254
+ there an open house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Is
255
+ there a private viewing?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Make
256
+ an appointment","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"open
257
+ house","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Open
258
+ house times","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"private
259
+ viewing","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"see
260
+ it today","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"see
261
+ it tomorrow","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"viewing","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
262
+ can I see it?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
263
+ can I view the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
264
+ is the next open house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
265
+ is the next viewing?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"switch_listings","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Any
266
+ other homes for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Any
267
+ other listing?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
268
+ you give me some infromation on a listing?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
269
+ am interested in another listing.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Let''s
270
+ talk about another listing.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Let''s
271
+ talk about another property.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Other
272
+ listings for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Other
273
+ properties?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Property
274
+ list?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Show
275
+ me different properties.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Show
276
+ me listings.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Show
277
+ me the realtor''s listings.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Show
278
+ me your other properties.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Talk
279
+ about a different property.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
280
+ me about a different property.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
281
+ about other properties?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
282
+ listing does he have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
283
+ listing does she have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
284
+ listings do you currently have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
285
+ listings do you have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
286
+ other listings do you have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
287
+ other properties do you have for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"talk_to_my_boss","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Call
288
+ agent.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Call
289
+ someone.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Call
290
+ you boss now.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Call
291
+ your boss.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
292
+ I talk to a human?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Contact
293
+ the realtor.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
294
+ a phone call.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Speak
295
+ to your boss.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Talk
296
+ to a human.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Talk
297
+ to the realtor.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"tell_me_something","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Can
298
+ you tell me about the property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
299
+ am interested in the house.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
300
+ me more.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
301
+ me something else.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
302
+ me something new about the property.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
303
+ can you tell me about the property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
304
+ else can you tell me?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"thanks_and_goodbye","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Adios","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"All
305
+ right then.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Bye!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Bye
306
+ bye!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Catch
307
+ you later.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Ciao.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Farewell","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Good
308
+ night.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
309
+ must be going.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''ve
310
+ got to get going.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Later!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Sayonara!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"So
311
+ long.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Take
312
+ care.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Take
313
+ it easy.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Talk
314
+ to you later.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thanks.
315
+ Goodbye.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thanks.
316
+ Good night.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thank
317
+ you. Goodbye.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thank
318
+ you. Good night.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thank
319
+ you. Have a good one.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"thumbs_down","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":":-1:","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"bad","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"i
320
+ don''t like it","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"no","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"nope","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"not
321
+ good","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"thumbs_up","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":":+1:","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"alright","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"great","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"okay","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"yes","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null}],"updated":"2017-03-25T00:48:54.442Z","entities":[{"type":null,"entity":"amenities","source":null,"values":[{"value":"bathroom","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["bathrooms","toilets"]},{"value":"gym","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["gym","workout
322
+ area"]},{"value":"pets","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["animals","cat","cats","dog","dogs","pet","pets"]},{"value":"pool","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["pool","swimming"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"filter-thing","source":null,"values":[{"value":"bathroom","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["bathroom","bathrooms","showers","toilets"]},{"value":"bedrooms","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["bedroom","bedrooms","beds"]},{"value":"price","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["cost","price","value"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"listing","source":null,"values":[{"value":"1003
323
+ Brothers Place","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["1003
324
+ brothers","1003 brothers place","brothers place duplex","brothers property","duplex
325
+ on brothers","property on brothers"]},{"value":"3520 Willow Street","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["3520
326
+ Willow","3520 willows road","House on Willows","house on willows road","Willow
327
+ Listing","Willows House","Willow Street House"]},{"value":"578 Main St","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["578
328
+ Main","condo on main","main st condo","place on main"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"numeric-filter","source":null,"values":[{"value":"between","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["between","inbetween","less
329
+ than and greater than"]},{"value":"over","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["above","more
330
+ than","over","starting at"]},{"value":"under","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["below","less
331
+ than","under"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"property-type","source":null,"values":[{"value":"apartment","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["apartment","apartments"]},{"value":"condo","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["condo","condos"]},{"value":"duplex","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["duplex"]},{"value":"home","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["home","homes","house"]},{"value":"property","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["property"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"sys-currency","source":"system.entities","values":[],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"sys-number","source":"system.entities","values":[],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null}],"language":"en","metadata":null,"description":"Realtor
332
+ bot that uses the Watson Conversation Service","dialog_nodes":[{"go_to":null,"output":{},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_who_i_am","description":null,"dialog_node":"Ask
333
+ who I am","previous_sibling":"Talk to my boss"},{"go_to":null,"output":{},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#enquire_about_homes","description":null,"dialog_node":"Ask
334
+ about homes","previous_sibling":"Switch listings"},{"go_to":null,"output":{},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#express_delight","description":null,"dialog_node":"Tell
335
+ me you are happy","previous_sibling":"Repeat the initial question"},{"go_to":null,"output":{},"parent":"Repeat
336
+ the initial question","context":{"initial_question":"none"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":null,"description":null,"dialog_node":"Clear
337
+ initial question","previous_sibling":null},{"go_to":null,"output":{"action":"talk_to_my_boss"},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#talk_to_my_boss","description":null,"dialog_node":"Talk
338
+ to my boss","previous_sibling":"Conversation Starts"},{"go_to":null,"output":{"boolean":{"template":"realtor/intro_question_two"}},"parent":"Introduce
339
+ the Bot","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#like_this","description":null,"dialog_node":"Like
340
+ that.","previous_sibling":null},{"go_to":null,"output":{"text":{"values":["I
341
+ didn''t quite understand that. You can say \"call my boss\" if you want to
342
+ talk to a human."],"selection_policy":"sequential"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#confused","description":null,"dialog_node":"Say
343
+ you are confused","previous_sibling":"Ask about homes"},{"go_to":null,"output":{"text":{"values":["I
344
+ don''t have an answer for that right now."],"selection_policy":"sequential"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#known_unknown","description":null,"dialog_node":"Cannot
345
+ answer","previous_sibling":"Ask how I am"},{"go_to":null,"output":{"text":{"values":["I
346
+ don''t think I understood what you''re asking for."],"selection_policy":"sequential"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"true","description":null,"dialog_node":"Fallback","previous_sibling":"Cannot
347
+ answer"},{"go_to":null,"output":{"text":{"values":["It is zone B."],"selection_policy":"sequential"}},"parent":"Asks
348
+ a property question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_zoning","description":null,"dialog_node":"Answer
349
+ zoning","previous_sibling":"Answer price"},{"go_to":null,"output":{"text":{"values":["Oh
350
+ sorry, photos are coming soon!"],"selection_policy":"sequential"}},"parent":"Asks
351
+ a property question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_photos","description":null,"dialog_node":"Answer
352
+ photos","previous_sibling":"Figure out the property"},{"go_to":null,"output":{"text":{"values":["Okay,
353
+ which property would you like to know about? You can say \"the house on willows\",
354
+ for example."],"selection_policy":"sequential"}},"parent":"Asks a property
355
+ question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"$listing
356
+ == ''none''","description":null,"dialog_node":"Figure out the property","previous_sibling":null},{"go_to":null,"output":{"text":{"values":["One
357
+ million CAD."],"selection_policy":"sequential"}},"parent":"Asks a property
358
+ question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_the_price","description":null,"dialog_node":"Answer
359
+ price","previous_sibling":"Answer photos"},{"go_to":null,"output":{"text":{"values":["Yes
360
+ you can have pets and there are no restrictions."],"selection_policy":"sequential"}},"parent":"Asks
361
+ a property question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_pets","description":null,"dialog_node":"Answer
362
+ pets","previous_sibling":"Answer zoning"},{"go_to":null,"output":{"text":{"values":["Hello
363
+ there!","Hi!"],"selection_policy":"random"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#greeting","description":null,"dialog_node":"Say
364
+ hello","previous_sibling":"Tell me everything is okay"},{"go_to":null,"output":{"text":{"values":["I''m
365
+ well.","Doing just fine.","Things are good."],"selection_policy":"random"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#how_are_you","description":null,"dialog_node":"Ask
366
+ how I am","previous_sibling":"Say hello"},{"go_to":null,"output":{"text":{"values":["Sure.
367
+ Sounds good.","Okay. No problem.","Glad to hear it."],"selection_policy":"random"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#no_problem","description":null,"dialog_node":"Tell
368
+ me everything is okay","previous_sibling":"Asks a property question"},{"go_to":null,"output":{"choices":{"choices":[{"body":"Like
369
+ this?"}],"template":"realtor/intro_question_one"},"template":"realtor/intro"},"parent":null,"context":{"introduced":true,"initial_question":"<?input.text?>"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"$introduced
370
+ == false","description":null,"dialog_node":"Introduce the Bot","previous_sibling":"Ask
371
+ who I am"},{"go_to":{"return":null,"selector":"body","dialog_node":"Clear
372
+ initial question"},"output":{"text":{"values":["Sure! You asked ''$initial_question'',
373
+ answering that now...."],"selection_policy":"sequential"},"repeat_input":"$initial_question"},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"$initial_question
374
+ != ''none''","description":null,"dialog_node":"Repeat the initial question","previous_sibling":"Introduce
375
+ the Bot"},{"go_to":{"return":null,"selector":"body","dialog_node":"Figure
376
+ out the property"},"output":{"text":{"values":[""],"selection_policy":"sequential"}},"parent":null,"context":{"listing":"none"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#switch_listings","description":null,"dialog_node":"Switch
377
+ listings","previous_sibling":"Tell me you are happy"},{"go_to":{"return":null,"selector":"condition","dialog_node":"Asks
378
+ a property question"},"output":{"text":{"values":["Great! Yes I know about
379
+ @listing."],"selection_policy":"sequential"}},"parent":null,"context":{"listing":"@listing"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"@listing
380
+ || #ask_about_property","description":null,"dialog_node":"Mentions a property","previous_sibling":"Say
381
+ you are confused"},{"go_to":{"return":null,"selector":"condition","dialog_node":"Figure
382
+ out the property"},"output":{},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_photos
383
+ || #ask_the_price || #ask_zoning || #ask_pets","description":null,"dialog_node":"Asks
384
+ a property question","previous_sibling":"Mentions a property"},{"go_to":{"return":null,"selector":"condition","dialog_node":"Repeat
385
+ the initial question"},"output":{},"parent":"Like that.","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#thumbs_up","description":null,"dialog_node":"Thumbs
386
+ Up","previous_sibling":null},{"go_to":{"return":null,"selector":"condition","dialog_node":"Repeat
387
+ the initial question"},"output":{"text":{"values":[":frown: Sorry you don''t
388
+ approve. I''m ready for your questions now."],"selection_policy":"sequential"}},"parent":"Like
389
+ that.","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#thumbs_down","description":null,"dialog_node":"Thumbs
390
+ Down","previous_sibling":"Thumbs Up"},{"go_to":{"return":null,"selector":"condition","dialog_node":"Talk
391
+ to my boss"},"output":{"message_template":"realtor/intro"},"parent":null,"context":{"listing":"none","introduced":false,"initial_question":"<?input.text?>"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"conversation_start","description":null,"dialog_node":"Conversation
392
+ Starts","previous_sibling":null},{"go_to":{"return":null,"selector":"condition","dialog_node":"Talk
393
+ to my boss"},"output":{"text":{"values":[],"selection_policy":"sequential"}},"parent":"Introduce
394
+ the Bot","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#talk_to_my_boss","description":null,"dialog_node":"Talk
395
+ to boss","previous_sibling":"Like that."},{"go_to":{"return":null,"selector":"user_input","dialog_node":"Like
396
+ that."},"output":{"choices":{"text":"I''m not sure what to do here. Can you
397
+ help me get unstuck by tapping the response below?","choices":[{"body":"Like
398
+ this?"}]}},"parent":"Introduce the Bot","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"true
399
+ || #confused","description":null,"dialog_node":"Else","previous_sibling":"Talk
400
+ to boss"},{"go_to":{"return":null,"selector":"user_input","dialog_node":"Thumbs
401
+ Up"},"output":{"text":{"values":["Oh, I''m not too sure about that. Just give
402
+ me a :+1: or :-1: to let me know whether you approve or not."],"selection_policy":"sequential"}},"parent":"Like
403
+ that.","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"true
404
+ || #confused","description":null,"dialog_node":"node_1_1489017858351","previous_sibling":"Thumbs
405
+ Down"},{"type":"response_condition","go_to":null,"output":{"action":"filter_properties"},"parent":"Ask
406
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":null,"description":null,"dialog_node":"node_5_1489443715571","previous_sibling":"node_11_1489424404852"},{"type":"response_condition","go_to":null,"output":{"text":{"values":["Great!
407
+ I''m ready for your realty questions now."],"selection_policy":"sequential"}},"parent":"Thumbs
408
+ Up","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"","description":null,"dialog_node":"node_4_1489422975792","previous_sibling":null},{"type":"response_condition","go_to":null,"output":{"text":{"values":["I
409
+ am {{bot.name}}."],"selection_policy":"sequential"}},"parent":"Ask who I am","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"","description":null,"dialog_node":"node_1_1488314813965","previous_sibling":null},{"type":"response_condition","go_to":null,"output":{"text":{"values":["I
410
+ don''t have any condos for sale."],"selection_policy":"sequential"}},"parent":"Ask
411
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"
412
+ @property-type:condo","description":null,"dialog_node":"node_8_1489424344276","previous_sibling":"node_7_1489424322746"},{"type":"response_condition","go_to":null,"output":{"text":{"values":["I
413
+ have two properties for sale. 3520 Willows Road and 1003 Brothers Place."],"selection_policy":"sequential"}},"parent":"Ask
414
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":null,"description":null,"dialog_node":"node_11_1489424404852","previous_sibling":"node_12_1489425270434"},{"type":"response_condition","go_to":null,"output":{"text":{"values":["I
415
+ understand you want me to find a home that can have pets, but I can''t do
416
+ that right now."],"selection_policy":"sequential"}},"parent":"Ask about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"
417
+ @amenities:pets","description":null,"dialog_node":"node_12_1489425270434","previous_sibling":"node_10_1489424380168"},{"type":"response_condition","go_to":null,"output":{"text":{"values":["Oh
418
+ sorry, I don''t have any apartments."],"selection_policy":"sequential"}},"parent":"Ask
419
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"
420
+ @property-type:apartment","description":null,"dialog_node":"node_7_1489424322746","previous_sibling":null},{"type":"response_condition","go_to":null,"output":{"text":{"values":["Okay,
421
+ I''ll search for @property-type less than than @sys-number for you. Might
422
+ be a few minutes."],"selection_policy":"sequential"}},"parent":"Ask about
423
+ homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"@property-type:home
424
+ && @under-filter:under && @sys-number","description":null,"dialog_node":"node_4_1489443566378","previous_sibling":"node_8_1489424344276"},{"type":"response_condition","go_to":null,"output":{"text":{"values":["The
425
+ home I have for sale is 3520 willows road."],"selection_policy":"sequential"}},"parent":"Ask
426
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"
427
+ @property-type:home","description":null,"dialog_node":"node_9_1489424359166","previous_sibling":"node_4_1489443566378"},{"type":"response_condition","go_to":null,"output":{"text":{"values":["Yes,
428
+ I have 1003 Brothers Place for sale."],"selection_policy":"sequential"}},"parent":"Ask
429
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"@property-type:duplex","description":null,"dialog_node":"node_10_1489424380168","previous_sibling":"node_9_1489424359166"},{"type":"response_condition","go_to":null,"output":{"text":{"values":["Glad
430
+ you like.","I''m happy that you''re happy!",":smile:"],"selection_policy":"random"}},"parent":"Tell
431
+ me you are happy","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"","description":null,"dialog_node":"node_3_1487714591359","previous_sibling":null}],"workspace_id":"80738bb6-bc71-433a-b0b4-88f15ee01b3b","counterexamples":[],"status":"Available"}'
432
+ http_version:
433
+ recorded_at: Thu, 06 Apr 2017 22:46:35 GMT
434
+ - request:
435
+ method: post
436
+ uri: https://gateway.watsonplatform.net/conversation/api/v1/workspaces?version=2017-02-03
437
+ body:
438
+ encoding: UTF-8
439
+ string: '{"name":"IBM Watson Ruby Gem Spec Created Workspace","intents":[{"intent":"ask_about_property","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Can
440
+ I enquire about the home on willows road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
441
+ you tell me about the house on willows?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
442
+ do you know about 1003 brothers place?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
443
+ do you know about 3520 Willows Road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
444
+ do you know about the place on drake street?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_mls_number","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Does
445
+ it have an MLS number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
446
+ am interested in the MLS number.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"mls?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"mls
447
+ number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What''s
448
+ the mls number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_pets","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Are
449
+ dogs allowed?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Are
450
+ pets allowed?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Are
451
+ there any animal restrictions?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
452
+ I bring a pet?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
453
+ I have a cat?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
454
+ have a dog, is that allowed?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_photos","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Can
455
+ I see photos?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
456
+ I see photos of the house on willows road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
457
+ you have pictures?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
458
+ you have pictures of the place at 3520 Willows Road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Pictures?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_the_price","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Can
459
+ you tell me what the list price is?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
460
+ much?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
461
+ much does it cost?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
462
+ much does the property cost?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
463
+ much is it?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
464
+ much is the home?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
465
+ much is the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
466
+ much is the property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"List
467
+ price?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Selling
468
+ price?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
469
+ is the asking price?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
470
+ is the list price?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
471
+ is the price of the home?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
472
+ is the price of the house on willows road?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_unit_number","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Is
473
+ there a unit number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"unit?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
474
+ is the unit number?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What''s
475
+ the unit?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
476
+ unit number is it?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_unknown","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Age
477
+ and condition of the roof?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Condition
478
+ of property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Did
479
+ the property have a home inspection done when the present owners bought it?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
480
+ you have the the furnace type and service history?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Has
481
+ anybody else made an offer on this property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
482
+ close is public transit?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
483
+ energy efficient is the property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
484
+ long has the property been on the market?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
485
+ long have the owners lived there?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
486
+ long they have owned the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
487
+ many bathrooms are on the basement?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
488
+ many bedrooms are on the basement?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
489
+ much are utility bills in the area?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
490
+ much can it rent for?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
491
+ new or how sturdy are the drains and guttering?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
492
+ old is the roof","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"peak
493
+ a boo view?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Size
494
+ of backyard?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
495
+ me about the basement.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
496
+ home repairs/improvements have been made?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
497
+ is the crime rate like in the neighbourhood?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
498
+ is the electrical panel size?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
499
+ is the furnace age?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
500
+ was the boiler last replaced?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_what_i_can_do","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"ask
501
+ what I can do","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
502
+ you answer my real estate questions?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"How
503
+ can you help me?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
504
+ are your abilities?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
505
+ are your capabilities?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
506
+ can you do?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
507
+ kinds of questions can you answer?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_who_i_am","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Ask
508
+ who I am","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
509
+ you have a name?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
510
+ do I call you?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
511
+ do your friends call you?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
512
+ is your name?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Who
513
+ are you?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"ask_zoning","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Current
514
+ zoning?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
515
+ is the property zoning?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
516
+ is the zone?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
517
+ is the zoning?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
518
+ zone is it in?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Zoning?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"confused","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"help
519
+ me","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
520
+ don''t get it","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
521
+ don''t understand","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
522
+ don''t understand.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
523
+ confused","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
524
+ confused.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What''s
525
+ happening?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"enquire_about_homes","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Do
526
+ have homes under 700k?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
527
+ you have a condo for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
528
+ you have any condos?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
529
+ you have any home where I can have a dog?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
530
+ you have any houses for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
531
+ you have any pet friendly homes?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
532
+ you have condos with 2 bathrooms?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
533
+ you have houses with 5 bedrooms?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''d
534
+ like a place where I can bring my cat.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
535
+ interested in a duplex.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
536
+ interested in a house.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''m
537
+ looking for a home where I can have a dog.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
538
+ want to know about your apartments for sale.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
539
+ homes do you have for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
540
+ properties do you have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"express_delight","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":";-)","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":";)","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":":-)","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":":)","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"☺","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Awesome!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Excellent!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Express
541
+ delight","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Great!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
542
+ like it!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Nice!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":":smile:","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":":wink:","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Wow!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"greeting","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"hello","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"hello?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"hey","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"hi","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"is
543
+ anyone home?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"is
544
+ someone there?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"how_are_you","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"are
545
+ you doing okay?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"are
546
+ you okay?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"how
547
+ are things?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"how
548
+ are you?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"how''s
549
+ it going?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"like_this","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"like
550
+ this","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Like
551
+ this?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"so
552
+ like this?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"no_problem","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Don''t
553
+ mention it.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Don''t
554
+ worry about it.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"No
555
+ worries.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Oh
556
+ that''s okay.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Sure.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
557
+ me there''s no problem","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"open_house","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Appointment?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Appointment
558
+ time?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
559
+ I see the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
560
+ I view the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Is
561
+ there an open house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Is
562
+ there a private viewing?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Make
563
+ an appointment","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"open
564
+ house","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Open
565
+ house times","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"private
566
+ viewing","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"see
567
+ it today","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"see
568
+ it tomorrow","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"viewing","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
569
+ can I see it?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
570
+ can I view the house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
571
+ is the next open house?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"When
572
+ is the next viewing?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"switch_listings","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Any
573
+ other homes for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Any
574
+ other listing?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
575
+ you give me some infromation on a listing?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
576
+ am interested in another listing.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Let''s
577
+ talk about another listing.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Let''s
578
+ talk about another property.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Other
579
+ listings for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Other
580
+ properties?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Property
581
+ list?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Show
582
+ me different properties.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Show
583
+ me listings.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Show
584
+ me the realtor''s listings.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Show
585
+ me your other properties.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Talk
586
+ about a different property.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
587
+ me about a different property.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
588
+ about other properties?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
589
+ listing does he have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
590
+ listing does she have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
591
+ listings do you currently have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
592
+ listings do you have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
593
+ other listings do you have?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
594
+ other properties do you have for sale?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"talk_to_my_boss","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Call
595
+ agent.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Call
596
+ someone.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Call
597
+ you boss now.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Call
598
+ your boss.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Can
599
+ I talk to a human?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Contact
600
+ the realtor.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Do
601
+ a phone call.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Speak
602
+ to your boss.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Talk
603
+ to a human.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Talk
604
+ to the realtor.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"tell_me_something","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Can
605
+ you tell me about the property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
606
+ am interested in the house.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
607
+ me more.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
608
+ me something else.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Tell
609
+ me something new about the property.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
610
+ can you tell me about the property?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"What
611
+ else can you tell me?","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"thanks_and_goodbye","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":"Adios","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"All
612
+ right then.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Bye!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Bye
613
+ bye!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Catch
614
+ you later.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Ciao.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Farewell","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Good
615
+ night.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I
616
+ must be going.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"I''ve
617
+ got to get going.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Later!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Sayonara!","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"So
618
+ long.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Take
619
+ care.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Take
620
+ it easy.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Talk
621
+ to you later.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thanks.
622
+ Goodbye.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thanks.
623
+ Good night.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thank
624
+ you. Goodbye.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thank
625
+ you. Good night.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"Thank
626
+ you. Have a good one.","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"thumbs_down","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":":-1:","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"bad","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"i
627
+ don''t like it","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"no","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"nope","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"not
628
+ good","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null},{"intent":"thumbs_up","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","examples":[{"text":":+1:","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"alright","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"great","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"okay","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"},{"text":"yes","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z"}],"description":null}],"entities":[{"type":null,"entity":"amenities","source":null,"values":[{"value":"bathroom","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["bathrooms","toilets"]},{"value":"gym","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["gym","workout
629
+ area"]},{"value":"pets","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["animals","cat","cats","dog","dogs","pet","pets"]},{"value":"pool","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["pool","swimming"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"filter-thing","source":null,"values":[{"value":"bathroom","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["bathroom","bathrooms","showers","toilets"]},{"value":"bedrooms","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["bedroom","bedrooms","beds"]},{"value":"price","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["cost","price","value"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"listing","source":null,"values":[{"value":"1003
630
+ Brothers Place","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["1003
631
+ brothers","1003 brothers place","brothers place duplex","brothers property","duplex
632
+ on brothers","property on brothers"]},{"value":"3520 Willow Street","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["3520
633
+ Willow","3520 willows road","House on Willows","house on willows road","Willow
634
+ Listing","Willows House","Willow Street House"]},{"value":"578 Main St","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["578
635
+ Main","condo on main","main st condo","place on main"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"numeric-filter","source":null,"values":[{"value":"between","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["between","inbetween","less
636
+ than and greater than"]},{"value":"over","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["above","more
637
+ than","over","starting at"]},{"value":"under","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["below","less
638
+ than","under"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"property-type","source":null,"values":[{"value":"apartment","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["apartment","apartments"]},{"value":"condo","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["condo","condos"]},{"value":"duplex","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["duplex"]},{"value":"home","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["home","homes","house"]},{"value":"property","created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"synonyms":["property"]}],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"sys-currency","source":"system.entities","values":[],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null},{"type":null,"entity":"sys-number","source":"system.entities","values":[],"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","open_list":false,"description":null}],"dialog_nodes":[{"go_to":null,"output":{},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_who_i_am","description":null,"dialog_node":"Ask
639
+ who I am","previous_sibling":"Talk to my boss"},{"go_to":null,"output":{},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#enquire_about_homes","description":null,"dialog_node":"Ask
640
+ about homes","previous_sibling":"Switch listings"},{"go_to":null,"output":{},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#express_delight","description":null,"dialog_node":"Tell
641
+ me you are happy","previous_sibling":"Repeat the initial question"},{"go_to":null,"output":{},"parent":"Repeat
642
+ the initial question","context":{"initial_question":"none"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":null,"description":null,"dialog_node":"Clear
643
+ initial question","previous_sibling":null},{"go_to":null,"output":{"action":"talk_to_my_boss"},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#talk_to_my_boss","description":null,"dialog_node":"Talk
644
+ to my boss","previous_sibling":"Conversation Starts"},{"go_to":null,"output":{"boolean":{"template":"realtor/intro_question_two"}},"parent":"Introduce
645
+ the Bot","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#like_this","description":null,"dialog_node":"Like
646
+ that.","previous_sibling":null},{"go_to":null,"output":{"text":{"values":["I
647
+ didn''t quite understand that. You can say \"call my boss\" if you want to
648
+ talk to a human."],"selection_policy":"sequential"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#confused","description":null,"dialog_node":"Say
649
+ you are confused","previous_sibling":"Ask about homes"},{"go_to":null,"output":{"text":{"values":["I
650
+ don''t have an answer for that right now."],"selection_policy":"sequential"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#known_unknown","description":null,"dialog_node":"Cannot
651
+ answer","previous_sibling":"Ask how I am"},{"go_to":null,"output":{"text":{"values":["I
652
+ don''t think I understood what you''re asking for."],"selection_policy":"sequential"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"true","description":null,"dialog_node":"Fallback","previous_sibling":"Cannot
653
+ answer"},{"go_to":null,"output":{"text":{"values":["It is zone B."],"selection_policy":"sequential"}},"parent":"Asks
654
+ a property question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_zoning","description":null,"dialog_node":"Answer
655
+ zoning","previous_sibling":"Answer price"},{"go_to":null,"output":{"text":{"values":["Oh
656
+ sorry, photos are coming soon!"],"selection_policy":"sequential"}},"parent":"Asks
657
+ a property question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_photos","description":null,"dialog_node":"Answer
658
+ photos","previous_sibling":"Figure out the property"},{"go_to":null,"output":{"text":{"values":["Okay,
659
+ which property would you like to know about? You can say \"the house on willows\",
660
+ for example."],"selection_policy":"sequential"}},"parent":"Asks a property
661
+ question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"$listing
662
+ == ''none''","description":null,"dialog_node":"Figure out the property","previous_sibling":null},{"go_to":null,"output":{"text":{"values":["One
663
+ million CAD."],"selection_policy":"sequential"}},"parent":"Asks a property
664
+ question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_the_price","description":null,"dialog_node":"Answer
665
+ price","previous_sibling":"Answer photos"},{"go_to":null,"output":{"text":{"values":["Yes
666
+ you can have pets and there are no restrictions."],"selection_policy":"sequential"}},"parent":"Asks
667
+ a property question","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_pets","description":null,"dialog_node":"Answer
668
+ pets","previous_sibling":"Answer zoning"},{"go_to":null,"output":{"text":{"values":["Hello
669
+ there!","Hi!"],"selection_policy":"random"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#greeting","description":null,"dialog_node":"Say
670
+ hello","previous_sibling":"Tell me everything is okay"},{"go_to":null,"output":{"text":{"values":["I''m
671
+ well.","Doing just fine.","Things are good."],"selection_policy":"random"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#how_are_you","description":null,"dialog_node":"Ask
672
+ how I am","previous_sibling":"Say hello"},{"go_to":null,"output":{"text":{"values":["Sure.
673
+ Sounds good.","Okay. No problem.","Glad to hear it."],"selection_policy":"random"}},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#no_problem","description":null,"dialog_node":"Tell
674
+ me everything is okay","previous_sibling":"Asks a property question"},{"go_to":null,"output":{"choices":{"choices":[{"body":"Like
675
+ this?"}],"template":"realtor/intro_question_one"},"template":"realtor/intro"},"parent":null,"context":{"introduced":true,"initial_question":"\u003c?input.text?\u003e"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"$introduced
676
+ == false","description":null,"dialog_node":"Introduce the Bot","previous_sibling":"Ask
677
+ who I am"},{"go_to":{"return":null,"selector":"body","dialog_node":"Clear
678
+ initial question"},"output":{"text":{"values":["Sure! You asked ''$initial_question'',
679
+ answering that now...."],"selection_policy":"sequential"},"repeat_input":"$initial_question"},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"$initial_question
680
+ != ''none''","description":null,"dialog_node":"Repeat the initial question","previous_sibling":"Introduce
681
+ the Bot"},{"go_to":{"return":null,"selector":"body","dialog_node":"Figure
682
+ out the property"},"output":{"text":{"values":[""],"selection_policy":"sequential"}},"parent":null,"context":{"listing":"none"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#switch_listings","description":null,"dialog_node":"Switch
683
+ listings","previous_sibling":"Tell me you are happy"},{"go_to":{"return":null,"selector":"condition","dialog_node":"Asks
684
+ a property question"},"output":{"text":{"values":["Great! Yes I know about
685
+ @listing."],"selection_policy":"sequential"}},"parent":null,"context":{"listing":"@listing"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"@listing
686
+ || #ask_about_property","description":null,"dialog_node":"Mentions a property","previous_sibling":"Say
687
+ you are confused"},{"go_to":{"return":null,"selector":"condition","dialog_node":"Figure
688
+ out the property"},"output":{},"parent":null,"context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#ask_photos
689
+ || #ask_the_price || #ask_zoning || #ask_pets","description":null,"dialog_node":"Asks
690
+ a property question","previous_sibling":"Mentions a property"},{"go_to":{"return":null,"selector":"condition","dialog_node":"Repeat
691
+ the initial question"},"output":{},"parent":"Like that.","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#thumbs_up","description":null,"dialog_node":"Thumbs
692
+ Up","previous_sibling":null},{"go_to":{"return":null,"selector":"condition","dialog_node":"Repeat
693
+ the initial question"},"output":{"text":{"values":[":frown: Sorry you don''t
694
+ approve. I''m ready for your questions now."],"selection_policy":"sequential"}},"parent":"Like
695
+ that.","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#thumbs_down","description":null,"dialog_node":"Thumbs
696
+ Down","previous_sibling":"Thumbs Up"},{"go_to":{"return":null,"selector":"condition","dialog_node":"Talk
697
+ to my boss"},"output":{"message_template":"realtor/intro"},"parent":null,"context":{"listing":"none","introduced":false,"initial_question":"\u003c?input.text?\u003e"},"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"conversation_start","description":null,"dialog_node":"Conversation
698
+ Starts","previous_sibling":null},{"go_to":{"return":null,"selector":"condition","dialog_node":"Talk
699
+ to my boss"},"output":{"text":{"values":[],"selection_policy":"sequential"}},"parent":"Introduce
700
+ the Bot","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"#talk_to_my_boss","description":null,"dialog_node":"Talk
701
+ to boss","previous_sibling":"Like that."},{"go_to":{"return":null,"selector":"user_input","dialog_node":"Like
702
+ that."},"output":{"choices":{"text":"I''m not sure what to do here. Can you
703
+ help me get unstuck by tapping the response below?","choices":[{"body":"Like
704
+ this?"}]}},"parent":"Introduce the Bot","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"true
705
+ || #confused","description":null,"dialog_node":"Else","previous_sibling":"Talk
706
+ to boss"},{"go_to":{"return":null,"selector":"user_input","dialog_node":"Thumbs
707
+ Up"},"output":{"text":{"values":["Oh, I''m not too sure about that. Just give
708
+ me a :+1: or :-1: to let me know whether you approve or not."],"selection_policy":"sequential"}},"parent":"Like
709
+ that.","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"true
710
+ || #confused","description":null,"dialog_node":"node_1_1489017858351","previous_sibling":"Thumbs
711
+ Down"},{"go_to":null,"output":{"action":"filter_properties"},"parent":"Ask
712
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":null,"description":null,"dialog_node":"node_5_1489443715571","previous_sibling":"node_11_1489424404852"},{"go_to":null,"output":{"text":{"values":["Great!
713
+ I''m ready for your realty questions now."],"selection_policy":"sequential"}},"parent":"Thumbs
714
+ Up","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"","description":null,"dialog_node":"node_4_1489422975792","previous_sibling":null},{"go_to":null,"output":{"text":{"values":["I
715
+ am {{bot.name}}."],"selection_policy":"sequential"}},"parent":"Ask who I am","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"","description":null,"dialog_node":"node_1_1488314813965","previous_sibling":null},{"go_to":null,"output":{"text":{"values":["I
716
+ don''t have any condos for sale."],"selection_policy":"sequential"}},"parent":"Ask
717
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"
718
+ @property-type:condo","description":null,"dialog_node":"node_8_1489424344276","previous_sibling":"node_7_1489424322746"},{"go_to":null,"output":{"text":{"values":["I
719
+ have two properties for sale. 3520 Willows Road and 1003 Brothers Place."],"selection_policy":"sequential"}},"parent":"Ask
720
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":null,"description":null,"dialog_node":"node_11_1489424404852","previous_sibling":"node_12_1489425270434"},{"go_to":null,"output":{"text":{"values":["I
721
+ understand you want me to find a home that can have pets, but I can''t do
722
+ that right now."],"selection_policy":"sequential"}},"parent":"Ask about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"
723
+ @amenities:pets","description":null,"dialog_node":"node_12_1489425270434","previous_sibling":"node_10_1489424380168"},{"go_to":null,"output":{"text":{"values":["Oh
724
+ sorry, I don''t have any apartments."],"selection_policy":"sequential"}},"parent":"Ask
725
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"
726
+ @property-type:apartment","description":null,"dialog_node":"node_7_1489424322746","previous_sibling":null},{"go_to":null,"output":{"text":{"values":["Okay,
727
+ I''ll search for @property-type less than than @sys-number for you. Might
728
+ be a few minutes."],"selection_policy":"sequential"}},"parent":"Ask about
729
+ homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"@property-type:home
730
+ \u0026\u0026 @under-filter:under \u0026\u0026 @sys-number","description":null,"dialog_node":"node_4_1489443566378","previous_sibling":"node_8_1489424344276"},{"go_to":null,"output":{"text":{"values":["The
731
+ home I have for sale is 3520 willows road."],"selection_policy":"sequential"}},"parent":"Ask
732
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"
733
+ @property-type:home","description":null,"dialog_node":"node_9_1489424359166","previous_sibling":"node_4_1489443566378"},{"go_to":null,"output":{"text":{"values":["Yes,
734
+ I have 1003 Brothers Place for sale."],"selection_policy":"sequential"}},"parent":"Ask
735
+ about homes","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"@property-type:duplex","description":null,"dialog_node":"node_10_1489424380168","previous_sibling":"node_9_1489424359166"},{"go_to":null,"output":{"text":{"values":["Glad
736
+ you like.","I''m happy that you''re happy!",":smile:"],"selection_policy":"random"}},"parent":"Tell
737
+ me you are happy","context":null,"created":"2017-03-25T00:48:38.808Z","updated":"2017-03-25T00:48:38.808Z","metadata":null,"conditions":"","description":null,"dialog_node":"node_3_1487714591359","previous_sibling":null}]}'
738
+ headers:
739
+ Accept:
740
+ - application/json
741
+ Connection:
742
+ - close
743
+ Content-Type:
744
+ - application/json; charset=UTF-8
745
+ User-Agent:
746
+ - http.rb/2.2.1
747
+ response:
748
+ status:
749
+ code: 201
750
+ message: Created
751
+ headers:
752
+ X-Backside-Transport:
753
+ - OK OK
754
+ Connection:
755
+ - close
756
+ Transfer-Encoding:
757
+ - chunked
758
+ X-Content-Type-Options:
759
+ - nosniff
760
+ X-Download-Options:
761
+ - noopen
762
+ X-Ratelimit-Reset:
763
+ - '1491520596'
764
+ Date:
765
+ - Thu, 06 Apr 2017 22:46:36 GMT
766
+ X-Frame-Options:
767
+ - SAMEORIGIN
768
+ Strict-Transport-Security:
769
+ - max-age=86400
770
+ X-Ratelimit-Remaining:
771
+ - '29'
772
+ Etag:
773
+ - '1491518796092'
774
+ X-Dns-Prefetch-Control:
775
+ - 'off'
776
+ Vary:
777
+ - Accept-Encoding
778
+ X-Ratelimit-Limit:
779
+ - '30'
780
+ X-Xss-Protection:
781
+ - 1; mode=block
782
+ Location:
783
+ - "/v1/workspaces"
784
+ Content-Type:
785
+ - application/json;charset=utf-8
786
+ Server:
787
+ - "-"
788
+ Set-Cookie:
789
+ - Watson-DPAT=AgxmM0Ccn2ie%2FZBIv0EI%2FdmFQ7HhOt1UhwCSR4B7UC49dsOpxTGOyFIDSxFBBFJuYjrEfQ%2FiADgFOKmCfhOj%2FWY9ulGp4p3ewR%2BC1MfMMeP8EgIVU5XSbfhjrYTFL3BgXPF6IrmFUQG8Psccdsu4qZff9QvrAhWi47QMB2e95Ya9uUT9R5GzzA%2F7j3ZiZFaiOwms1tEmaCYW52NZIGr0eAQSDJWpIeETZuks%2B8%2BgkB9xei0uT9NnG8j%2FyyQ%2BmsMHSUmSnQP5BVERz5JiMfVjoWzWKw6G9WmfK3H9R0qhfeWWAinOi0ih%2FS9l2OvRn3RAX766pOiiUWJa0ATsS7gNwlcyCJysYk%2BVjFxIOGylDhmvoNoHWzkMuJh2%2FtAPt9rPge0qiWnftifY%2FHpTgdPKTfFimjr2PLIrPmob%2B0rZfcisCoHC0aEkHY4XmuT89YYve7u%2BFZlMOmoOToxF8lRXXtSCI%2FR%2F7jiL6AgNCWpz%2BbfUzePuXx6S8uAOLxCqFAgZFFteRpaKgcCTeDJ4vFF4B2uDzWmLzaWgxgMn1uwDw3B3S%2BsSz6mUvKh3lL0pdiHgT9DVf6AJe5XNk442oCFlxEiWtRJfGAMRJ3EX5wbYkAUpOsmgx%2Bc6SImcVAm%2B5eSnzgmmdkIMIk8dvoaT8rYN9Dl73MBr8MdM2VETY6CdwVT6FR9trt3CB7CHLMOQlwqqNbNJ0t5WBeyW8cpZp%2F6a7nwM499F9on31SWe%2B8iE5NMvz142fNbtaw4oOr4auML6lXMObNQBzKYzHFPzXXrgHSERg233oiU0iIgqDFEtV6vmEWoecXAZg%2FKmHJGdnb5f1QS5CgvPIhYYfHlWhXRa64LSmVocG7jKYliZT3jYMsvz%2BnaGDTZVjIilxqUTC9ccM37WZ2N9xpL3nCrBIZAP9g8dvqEeuN31;
790
+ path=/conversation/api; secure; HttpOnly
791
+ X-Client-Ip:
792
+ - 172.218.196.173
793
+ X-Global-Transaction-Id:
794
+ - '249049020'
795
+ X-Dp-Watson-Tran-Id:
796
+ - gateway-dp02-249049020
797
+ body:
798
+ encoding: UTF-8
799
+ string: '{"name":"IBM Watson Ruby Gem Spec Created Workspace","created":"2017-04-06T22:46:36.092Z","updated":"2017-04-06T22:46:36.092Z","language":"en","metadata":null,"description":null,"workspace_id":"e8c1caa7-2e28-4c7c-be5a-5422c420c899"}'
800
+ http_version:
801
+ recorded_at: Thu, 06 Apr 2017 22:46:36 GMT
802
+ recorded_with: VCR 3.0.3