wordnik 4.06.05 → 4.06.06
Sign up to get free protection for your applications and to get access to all the features.
- data/.rspec +1 -0
- data/Gemfile.lock +22 -16
- data/Rakefile +29 -166
- data/api_docs/account.json +1 -1
- data/api_docs/analytics.json +1 -0
- data/api_docs/corpus.json +1 -1
- data/api_docs/document.json +1 -1
- data/api_docs/partner.json +1 -0
- data/api_docs/partners.json +1 -1
- data/api_docs/suggest.json +1 -0
- data/api_docs/system.json +1 -0
- data/api_docs/tag.json +1 -1
- data/api_docs/user.json +1 -1
- data/api_docs/users.json +1 -1
- data/api_docs/word.json +1 -1
- data/api_docs/wordList.json +1 -1
- data/api_docs/wordLists.json +1 -1
- data/api_docs/words.json +1 -1
- data/lib/wordnik.rb +58 -17
- data/lib/wordnik/configuration.rb +21 -6
- data/lib/wordnik/operation.rb +3 -2
- data/lib/wordnik/operation_parameter.rb +4 -6
- data/lib/wordnik/request.rb +53 -53
- data/lib/wordnik/resource.rb +68 -3
- data/lib/wordnik/resource_modules/account.rb +0 -26
- data/lib/wordnik/resource_modules/analytics.rb +89 -0
- data/lib/wordnik/resource_modules/corpus.rb +26 -26
- data/lib/wordnik/resource_modules/document.rb +0 -26
- data/lib/wordnik/resource_modules/partner.rb +140 -0
- data/lib/wordnik/resource_modules/partners.rb +0 -26
- data/lib/wordnik/resource_modules/suggest.rb +33 -0
- data/lib/wordnik/resource_modules/system.rb +192 -0
- data/lib/wordnik/resource_modules/tag.rb +0 -26
- data/lib/wordnik/resource_modules/user.rb +0 -26
- data/lib/wordnik/resource_modules/users.rb +12 -38
- data/lib/wordnik/resource_modules/word.rb +23 -49
- data/lib/wordnik/resource_modules/word_list.rb +0 -26
- data/lib/wordnik/resource_modules/word_lists.rb +0 -26
- data/lib/wordnik/resource_modules/words.rb +0 -26
- data/lib/wordnik/response.rb +3 -5
- data/lib/wordnik/version.rb +1 -1
- data/spec/endpoint_spec.rb +2 -5
- data/spec/operation_parameter_spec.rb +32 -11
- data/spec/operation_spec.rb +2 -5
- data/spec/request_spec.rb +9 -30
- data/spec/resource_spec.rb +7 -7
- data/spec/response_spec.rb +13 -19
- data/spec/spec_helper.rb +14 -2
- data/spec/vcr/crazier_json_request.yml +31 -0
- data/spec/vcr/default_response.yml +25 -0
- data/spec/vcr/get_word_dynamo.yml +33 -0
- data/spec/vcr/unauthorized_response.yml +25 -0
- data/spec/vcr/wordnik_authenticate.yml +31 -0
- data/spec/vcr/wordnik_authenticate_fail.yml +172 -0
- data/spec/vcr/xml_response_request.yml +25 -0
- data/spec/wordnik_spec.rb +68 -17
- data/wordnik.gemspec +2 -0
- metadata +48 -5
data/spec/operation_spec.rb
CHANGED
@@ -3,10 +3,7 @@ require 'spec_helper'
|
|
3
3
|
describe Wordnik::Operation do
|
4
4
|
|
5
5
|
before(:each) do
|
6
|
-
|
7
|
-
@response = Typhoeus::Request.get("http://beta.wordnik.com/v4/word.json")
|
8
|
-
end
|
9
|
-
@resource = Wordnik::Resource.new(:name => "word", :raw_data => JSON.parse(@response.body))
|
6
|
+
@resource = Wordnik::Resource.new(:name => "word", :raw_data => JSON.parse(sample_resource_body))
|
10
7
|
@endpoint = @resource.endpoints.first
|
11
8
|
@operation = @endpoint.operations.first
|
12
9
|
end
|
@@ -14,7 +11,7 @@ describe Wordnik::Operation do
|
|
14
11
|
describe "initialization" do
|
15
12
|
|
16
13
|
it "successfully initializes" do
|
17
|
-
@operation.summary.
|
14
|
+
@operation.summary.should_not be_nil
|
18
15
|
end
|
19
16
|
|
20
17
|
it "sets parameters" do
|
data/spec/request_spec.rb
CHANGED
@@ -13,11 +13,7 @@ describe Wordnik::Request do
|
|
13
13
|
|
14
14
|
describe "initialization" do
|
15
15
|
it "sets default response format to json" do
|
16
|
-
@request.format.should ==
|
17
|
-
end
|
18
|
-
|
19
|
-
it "gets default host from Wordnik.configuration" do
|
20
|
-
@request.host.should == Wordnik.configuration.base_uri
|
16
|
+
@request.format.should == :json
|
21
17
|
end
|
22
18
|
|
23
19
|
it "allows params to be nil" do
|
@@ -30,8 +26,7 @@ describe Wordnik::Request do
|
|
30
26
|
describe "attr_accessors" do
|
31
27
|
|
32
28
|
it "has working attributes" do
|
33
|
-
@request.
|
34
|
-
@request.path.should == "words/fancy"
|
29
|
+
@request.format.to_s.should == 'json'
|
35
30
|
end
|
36
31
|
|
37
32
|
it "allows attributes to be overwritten" do
|
@@ -44,23 +39,12 @@ describe Wordnik::Request do
|
|
44
39
|
|
45
40
|
describe "url" do
|
46
41
|
|
47
|
-
it "constructs a base URL" do
|
48
|
-
@request.url.should == "http://beta.wordnik.com/v4/words.json/fancy"
|
49
|
-
end
|
50
|
-
|
51
42
|
it "constructs a query string" do
|
52
43
|
@request.query_string.should == "?bar=2&foo=1"
|
53
44
|
end
|
54
45
|
|
55
46
|
it "constructs a full url" do
|
56
|
-
@request.
|
57
|
-
end
|
58
|
-
|
59
|
-
it "accounts for excessive slashes" do
|
60
|
-
@request = Wordnik::Request.new(:get, "andBurn", @default_params.merge({
|
61
|
-
:host => "slash.com/"
|
62
|
-
}))
|
63
|
-
@request.url.should == "http://slash.com/andBurn.json"
|
47
|
+
@request.url.should == "http://localhost:8001/admin/api/words.json/fancy?bar=2&foo=1"
|
64
48
|
end
|
65
49
|
|
66
50
|
end
|
@@ -88,7 +72,7 @@ describe Wordnik::Request do
|
|
88
72
|
:word => "cat"
|
89
73
|
}
|
90
74
|
}))
|
91
|
-
@request.url.should == "http://
|
75
|
+
@request.url.should == "http://localhost:8001/admin/api/word.xml/cat/entries"
|
92
76
|
end
|
93
77
|
|
94
78
|
it "does string substitution on path params" do
|
@@ -98,7 +82,7 @@ describe Wordnik::Request do
|
|
98
82
|
:word => "cat"
|
99
83
|
}
|
100
84
|
}))
|
101
|
-
@request.url.should == "http://
|
85
|
+
@request.url.should == "http://localhost:8001/admin/api/word.xml/cat/entries"
|
102
86
|
end
|
103
87
|
|
104
88
|
it "leaves path-bound params out of the query string" do
|
@@ -149,7 +133,7 @@ describe Wordnik::Request do
|
|
149
133
|
|
150
134
|
@request.interpreted_path.should_not be_nil
|
151
135
|
@request.query_string.should =~ /\?limit=100/
|
152
|
-
@request.
|
136
|
+
@request.url.should =~ /\?limit=100/
|
153
137
|
end
|
154
138
|
|
155
139
|
it "camelCases parameters" do
|
@@ -177,21 +161,16 @@ describe Wordnik::Request do
|
|
177
161
|
Wordnik::Request.new(:get, "word/json").headers[:api_key].should == "xyz"
|
178
162
|
end
|
179
163
|
|
180
|
-
it "
|
164
|
+
it "can be obfuscated for public display" do
|
181
165
|
@request = Wordnik::Request.new(:get, "words/fancy", @default_params.merge({
|
182
166
|
:params => {
|
183
167
|
:word => "dog",
|
184
168
|
:api_key => "123456"
|
185
169
|
}
|
186
170
|
}))
|
187
|
-
@request.query_string_params.should == {:word => "dog", :api_key => "123456"}
|
188
|
-
@request.query_string_params(true).should == {:word => "dog", :api_key => "YOUR_API_KEY"}
|
189
|
-
|
190
|
-
@request.query_string.should == "?api_key=123456&word=dog"
|
191
|
-
@request.query_string(:obfuscated => true).should == "?api_key=YOUR_API_KEY&word=dog"
|
192
171
|
|
193
|
-
@request.
|
194
|
-
@request.
|
172
|
+
@request.url.should =~ /api\_key=123456/
|
173
|
+
@request.url(:obfuscated => true).should =~ /api\_key=YOUR\_API\_KEY/
|
195
174
|
end
|
196
175
|
|
197
176
|
it "allows a key in the params to override the configuration-level key, even if it's blank" do
|
data/spec/resource_spec.rb
CHANGED
@@ -3,13 +3,9 @@ require 'spec_helper'
|
|
3
3
|
describe Wordnik::Resource do
|
4
4
|
|
5
5
|
before(:each) do
|
6
|
-
VCR.use_cassette('words', :record => :new_episodes) do
|
7
|
-
@response = Typhoeus::Request.get("http://beta.wordnik.com/v4/word.json")
|
8
|
-
end
|
9
|
-
|
10
6
|
@default_params = {
|
11
7
|
:name => "word",
|
12
|
-
:raw_data => JSON.parse(
|
8
|
+
:raw_data => JSON.parse(sample_resource_body)
|
13
9
|
}
|
14
10
|
|
15
11
|
@resource = Wordnik::Resource.new(@default_params)
|
@@ -39,7 +35,9 @@ describe Wordnik::Resource do
|
|
39
35
|
|
40
36
|
before(:each) do
|
41
37
|
configure_wordnik
|
42
|
-
|
38
|
+
VCR.use_cassette('wordnik_authenticate', :record => :new_episodes) do
|
39
|
+
Wordnik.authenticate
|
40
|
+
end
|
43
41
|
end
|
44
42
|
|
45
43
|
it "builds requests but doesn't run them if :request_only is passed" do
|
@@ -48,7 +46,9 @@ describe Wordnik::Resource do
|
|
48
46
|
end
|
49
47
|
|
50
48
|
it "runs requests and returns their body if :request_only is absent" do
|
51
|
-
|
49
|
+
VCR.use_cassette('get_word_dynamo', :record => :new_episodes) do
|
50
|
+
@response_body = Wordnik.word.get_word('dynamo')
|
51
|
+
end
|
52
52
|
@response_body.class.should == Hash
|
53
53
|
@response_body.keys.sort.should == %w(canonicalForm word)
|
54
54
|
end
|
data/spec/response_spec.rb
CHANGED
@@ -4,8 +4,8 @@ describe Wordnik::Response do
|
|
4
4
|
|
5
5
|
before(:each) do
|
6
6
|
|
7
|
-
VCR.use_cassette('
|
8
|
-
@raw = Typhoeus::Request.get("http://
|
7
|
+
VCR.use_cassette('word_resource', :record => :new_episodes) do
|
8
|
+
@raw = Typhoeus::Request.get("http://localhost:8001/admin/api/word.json")
|
9
9
|
end
|
10
10
|
|
11
11
|
@response = Wordnik::Response.new(@raw)
|
@@ -14,7 +14,7 @@ describe Wordnik::Response do
|
|
14
14
|
describe "initialization" do
|
15
15
|
it "sets body" do
|
16
16
|
@response.body.class.should == Hash
|
17
|
-
@response.body.has_key?('
|
17
|
+
@response.body.has_key?('apis').should == true
|
18
18
|
end
|
19
19
|
|
20
20
|
it "sets code" do
|
@@ -25,21 +25,15 @@ describe Wordnik::Response do
|
|
25
25
|
@response.headers.class.should == Hash
|
26
26
|
@response.headers['Wordnik-Api-Version'].to_s.should =~ /4\.0/
|
27
27
|
end
|
28
|
-
|
29
28
|
end
|
30
29
|
|
31
|
-
describe "unauthorized" do
|
32
|
-
|
33
|
-
before do
|
34
|
-
VCR.use_cassette('unauthorized_response', :record => :new_episodes) do
|
35
|
-
@unauthorized_raw = Typhoeus::Request.get("http://beta.wordnik.com/v4/word.json/dog/images/flickr")
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
30
|
+
describe "unauthorized" do
|
39
31
|
it "raises an error when initialized" do
|
40
|
-
|
41
|
-
|
42
|
-
|
32
|
+
VCR.use_cassette('get_dog_images', :record => :new_episodes) do
|
33
|
+
@unauthorized_raw = Typhoeus::Request.get("http://localhost:8001/admin/api/word.json/dog/images/flickr")
|
34
|
+
expect { Wordnik::Response.new(@unauthorized_raw) }.to raise_error(ClientError)
|
35
|
+
end
|
36
|
+
end
|
43
37
|
end
|
44
38
|
|
45
39
|
describe "format" do
|
@@ -51,7 +45,7 @@ describe Wordnik::Response do
|
|
51
45
|
|
52
46
|
it "recognizes xml" do
|
53
47
|
VCR.use_cassette('xml_response_request', :record => :new_episodes) do
|
54
|
-
@raw = Typhoeus::Request.get("http://
|
48
|
+
@raw = Typhoeus::Request.get("http://localhost:8001/admin/api/word.xml")
|
55
49
|
end
|
56
50
|
@response = Wordnik::Response.new(@raw)
|
57
51
|
@response.format.should == :xml
|
@@ -69,15 +63,15 @@ describe Wordnik::Response do
|
|
69
63
|
it "has a pretty XML body even in the face of adverse characters" do
|
70
64
|
configure_wordnik
|
71
65
|
VCR.use_cassette('crazier_json_request', :record => :new_episodes) do
|
72
|
-
# @request = Wordnik::Request.new(:get, "word.xml/cat/definitions", :params => {:source_dictionaries => "century"})
|
73
66
|
@request = Wordnik::Request.new(:get, "word.xml/hero/pronunciations", :params => {:limit => 1})
|
67
|
+
@response = @request.response
|
74
68
|
end
|
75
|
-
@
|
69
|
+
@response.pretty_body.should =~ /\?xml/
|
76
70
|
end
|
77
71
|
|
78
72
|
it "has a pretty xml body" do
|
79
73
|
VCR.use_cassette('xml_response_request', :record => :new_episodes) do
|
80
|
-
@raw = Typhoeus::Request.get("http://
|
74
|
+
@raw = Typhoeus::Request.get("http://localhost:8001/admin/api/word.xml")
|
81
75
|
end
|
82
76
|
@response = Wordnik::Response.new(@raw)
|
83
77
|
@response.pretty_body.should =~ /\?xml/
|
data/spec/spec_helper.rb
CHANGED
@@ -39,13 +39,25 @@ def configure_wordnik
|
|
39
39
|
config.api_key = CREDENTIALS[:api_key]
|
40
40
|
config.username = CREDENTIALS[:username]
|
41
41
|
config.password = CREDENTIALS[:password]
|
42
|
-
|
43
|
-
#
|
42
|
+
|
43
|
+
# Normal..
|
44
|
+
# config.host = 'beta.wordnik.com'
|
45
|
+
# config.base_path = '/v4'
|
46
|
+
|
47
|
+
# SSH tunneling...
|
48
|
+
config.host = 'localhost:8001'
|
49
|
+
config.base_path = '/admin/api'
|
44
50
|
end
|
45
51
|
end
|
46
52
|
|
47
53
|
configure_wordnik
|
48
54
|
|
55
|
+
def sample_resource_body
|
56
|
+
@sample_resource_body ||= begin
|
57
|
+
File.open(File.join(File.dirname(__FILE__), "./swagger/word.json"), "r").read
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
49
61
|
# A random string to tack onto stuff to ensure we're not seeing
|
50
62
|
# data from a previous test run
|
51
63
|
RAND = ("a".."z").to_a.sample(8).join
|
@@ -0,0 +1,31 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://localhost:8001/admin/api/word.xml/hero/pronunciations?limit=1
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
content-type:
|
9
|
+
- application/json
|
10
|
+
api-key:
|
11
|
+
- b39ee8d5f05d0f566a0080b4c310ceddf5dc5f7606a616f53
|
12
|
+
user-agent:
|
13
|
+
- ruby-4.06.06
|
14
|
+
response: !ruby/struct:VCR::Response
|
15
|
+
status: !ruby/struct:VCR::ResponseStatus
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
date:
|
20
|
+
- Mon, 29 Aug 2011 16:28:44 GMT
|
21
|
+
wordnik-api-version:
|
22
|
+
- 4.07.67
|
23
|
+
access-control-allow-origin:
|
24
|
+
- "*"
|
25
|
+
content-type:
|
26
|
+
- application/xml
|
27
|
+
content-length:
|
28
|
+
- "170"
|
29
|
+
body: "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><textProns><textPron seq=\"0\"><id>0</id><raw>hir'\xC5\x8D, h\xC4\x93'r\xC5\x8D'</raw><rawType>webster</rawType></textPron></textProns>"
|
30
|
+
http_version: "1.1"
|
31
|
+
:@ignored: false
|
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://localhost:8001/admin/api/word.json
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
date:
|
14
|
+
- Mon, 29 Aug 2011 16:28:42 GMT
|
15
|
+
wordnik-api-version:
|
16
|
+
- 4.07.67
|
17
|
+
access-control-allow-origin:
|
18
|
+
- "*"
|
19
|
+
content-type:
|
20
|
+
- application/json
|
21
|
+
transfer-encoding:
|
22
|
+
- chunked
|
23
|
+
body: "{\"resourcePath\":\"/word\",\"models\":{\"sizes\":{\"properties\":{\"size\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"size\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false}},\"id\":\"sizes\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"facet\":{\"properties\":{\"facetValue\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"facetValue\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"facet\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"detailedWordUsage\":{\"properties\":{\"sentence\":{\"type\":\"sentence\",\"required\":false,\"uniqueItems\":false},\"wordstring\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"metadata\":{\"type\":\"documentMetadata\",\"required\":false,\"uniqueItems\":false}},\"id\":\"detailedWordUsage\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"root\":{\"properties\":{\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"categories\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"category\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false}},\"id\":\"root\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"tag\":{\"properties\":{\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"count\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"tag\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"contentType\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"contentType\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"long\":{\"properties\":{\"value\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false}},\"id\":\"long\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"type\":{\"properties\":{\"enteredAt\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"text\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"mapping\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"typeId\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false}},\"id\":\"type\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"documentMetadata\":{\"properties\":{\"yearType\":{\"type\":\"yearType\",\"required\":false,\"uniqueItems\":false},\"expirationDate\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"extendedMetadata\":{\"type\":\"extendedMetadata\",\"required\":false,\"uniqueItems\":false},\"stats\":{\"type\":\"basicDocumentStats\",\"required\":false,\"uniqueItems\":false},\"tag\":{\"type\":\"array\",\"required\":false,\"items\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"provider\":{\"type\":\"contentProvider\",\"required\":false,\"uniqueItems\":false},\"contentType\":{\"type\":\"contentType\",\"required\":false,\"uniqueItems\":false},\"sourceUrl\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"date\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"medium\":{\"type\":\"documentMedium\",\"required\":false,\"uniqueItems\":false},\"guid\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"author\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"author\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"title\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"primaryAuthorType\":{\"type\":\"authorType\",\"required\":false,\"uniqueItems\":false},\"createdAt\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"classification\":{\"type\":\"subjectClassificationType\",\"required\":false,\"uniqueItems\":false},\"year\":{\"type\":\"integer\",\"required\":false,\"uniqueItems\":false},\"primaryAuthor\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"rating\":{\"type\":\"double\",\"required\":false,\"uniqueItems\":false},\"primaryAuthorId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false}},\"id\":\"documentMetadata\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"related\":{\"properties\":{\"label1\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"label2\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"relationshipType\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"label3\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"word\":{\"type\":\"array\",\"required\":false,\"items\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"gram\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"label4\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"related\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"exampleSearchResults\":{\"properties\":{\"facet\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"facet\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"example\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"example\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false}},\"id\":\"exampleSearchResults\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"BooleanValue\":{\"properties\":{\"value\":{\"type\":\"boolean\",\"required\":false,\"uniqueItems\":false}},\"id\":\"BooleanValue\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"frequencyStats\":{\"properties\":{\"author\":{\"type\":\"Map[long,long]\",\"required\":false,\"uniqueItems\":false},\"subject\":{\"type\":\"Map[integer,long]\",\"required\":false,\"uniqueItems\":false},\"contentProvider\":{\"type\":\"Map[integer,long]\",\"required\":false,\"uniqueItems\":false},\"contentType\":{\"type\":\"Map[integer,long]\",\"required\":false,\"uniqueItems\":false},\"yearWise\":{\"type\":\"Map[integer,long]\",\"required\":false,\"uniqueItems\":false},\"corpusCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"medium\":{\"type\":\"Map[integer,long]\",\"required\":false,\"uniqueItems\":false}},\"id\":\"frequencyStats\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"wordStats\":{\"properties\":{\"dictionaryStats\":{\"type\":\"Map[string,dictionaryWordStats]\",\"required\":false,\"uniqueItems\":false},\"documentsCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"sentencesCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"frequencyStats\":{\"type\":\"frequencyStats\",\"required\":false,\"uniqueItems\":false},\"partOfSpeechStats\":{\"type\":\"Map[string,integer]\",\"required\":false,\"uniqueItems\":false},\"wordstring\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"wordStats\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"RelatedDataSource\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"RelatedDataSource\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"audioObject\":{\"properties\":{\"recordId\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"wordId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"audioFileType\":{\"type\":\"audioType\",\"required\":false,\"uniqueItems\":false},\"filePath\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"type\":{\"type\":\"audioType\",\"required\":false,\"uniqueItems\":false},\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"duration\":{\"type\":\"double\",\"required\":false,\"uniqueItems\":false},\"createdBy\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"description\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"createdAt\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"userId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"streamPath\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"audioFileId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"wordstring\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"audioObject\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"citation\":{\"properties\":{\"cite\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"source\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"citation\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"relatedData\":{\"properties\":{\"direction\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"targetWordstring\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"frequency\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"sense\":{\"type\":\"integer\",\"required\":false,\"uniqueItems\":false},\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"sourceWordstring\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"sourceWordId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"relationshipType\":{\"type\":\"RelationshipType\",\"required\":false,\"uniqueItems\":false},\"source\":{\"type\":\"RelatedDataSource\",\"required\":false,\"uniqueItems\":false},\"createdAt\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"userId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"partOfSpeech\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"targetWordId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false}},\"id\":\"relatedData\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"punctuationFactor\":{\"properties\":{\"periodCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"exclamationPointCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"wordId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"questionMarkCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"totalCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false}},\"id\":\"punctuationFactor\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"subjectClassificationType\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"subjectClassificationType\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"basicDocumentStats\":{\"properties\":{\"uniqueBiGramsCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"wordsCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"documentsCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"firstUsedWordsCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"tokensCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"sentencesCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"viableSentencesCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"type\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"uniqueWordsCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"key\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"basicDocumentStats\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"header\":{\"properties\":{\"position\":{\"type\":\"integer\",\"required\":false,\"uniqueItems\":false},\"sourceDictionary\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"homograph\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"derivedFrom\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"word\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"etymologyXml\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"derivativeSense\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"type\":{\"type\":\"type\",\"required\":false,\"uniqueItems\":false},\"note\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"note\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"syllable\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"syllable\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"partOfSpeech\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"textPron\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"textPron\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false}},\"id\":\"header\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"facetValue\":{\"properties\":{\"count\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"value\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"facetValue\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"category\":{\"properties\":{\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"category\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"RelationshipType\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"RelationshipType\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"suggestion\":{\"properties\":{\"type\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"wordstring\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"suggestion\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"relationshipMap\":{\"properties\":{\"sourceWordstring\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"suggestion\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"suggestion\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false}},\"id\":\"relationshipMap\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"example\":{\"properties\":{\"exampleId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"title\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"text\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"word\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"provider\":{\"type\":\"contentProvider\",\"required\":false,\"uniqueItems\":false},\"year\":{\"type\":\"integer\",\"required\":false,\"uniqueItems\":false},\"rating\":{\"type\":\"float\",\"required\":false,\"uniqueItems\":false},\"documentId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"url\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"example\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"comment\":{\"properties\":{\"updatedAt\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"id\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"body\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"commentedOn\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"createdAt\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"objectId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"commentedBy\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"objectType\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"comment\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"frequencySummary\":{\"properties\":{\"unknownYearCount\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"totalCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"word\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"frequency\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"frequency\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false}},\"id\":\"frequencySummary\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"textPron\":{\"properties\":{\"raw\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"seq\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"rawType\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"textPron\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"yearType\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"yearType\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"extendedMetadata\":{\"properties\":{\"sourceFileSize\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"issn\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"isbn\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"lccn\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"documentMetadataId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false}},\"id\":\"extendedMetadata\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"sentence\":{\"properties\":{\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"display\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"rating\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"documentMetadataId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"scoredWord\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"scoredWord\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false}},\"id\":\"sentence\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"documentMedium\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"documentMedium\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"frequency\":{\"properties\":{\"count\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"year\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false}},\"id\":\"frequency\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"author\":{\"properties\":{\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"authorType\":{\"type\":\"authorType\",\"required\":false,\"uniqueItems\":false},\"createdAt\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"description\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"uniqueName\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"author\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"bigram\":{\"properties\":{\"count\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"gram2\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"gram1\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"wlmi\":{\"type\":\"double\",\"required\":false,\"uniqueItems\":false},\"mi\":{\"type\":\"double\",\"required\":false,\"uniqueItems\":false}},\"id\":\"bigram\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"wordObject\":{\"properties\":{\"word\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"vulgar\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"wordObject\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"ExampleUsage\":{\"properties\":{\"text\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"ExampleUsage\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"ExampleSearchQuery\":{\"properties\":{\"limit\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"dateRange\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"subject\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"endDate\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"contentType\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"skip\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"beginDate\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"medium\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"wordType\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"contentProvider\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"year\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"wordString\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"filter\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"partOfSpeech\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"ExampleSearchQuery\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"note\":{\"properties\":{\"noteType\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"appliesTo\":{\"type\":\"array\",\"required\":false,\"items\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"value\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"pos\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false}},\"id\":\"note\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"wordList\":{\"properties\":{\"updatedAt\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"username\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"permalink\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"createdAt\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"description\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"userId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"numberWordsInList\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"type\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"wordList\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"authorType\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"authorType\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"definition\":{\"properties\":{\"extendedText\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"citation\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"citation\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"text\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"sourceDictionary\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"exampleUsage\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"ExampleUsage\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"relWord\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"related\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"score\":{\"type\":\"float\",\"required\":false,\"uniqueItems\":false},\"label\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"Label\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"seqString\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"sequence\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"word\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"note\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"note\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"textPron\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"textPron\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"partOfSpeech\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"definition\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"otherForms\":{\"properties\":{\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"wordId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"totalCount\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"plain\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"wordString\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"otherForms\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"DefinitionSearchResults\":{\"properties\":{\"result\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"definition\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"totalResults\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false}},\"id\":\"DefinitionSearchResults\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"photo\":{\"properties\":{\"isfamily\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"ispublic\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"linkUri\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"isfriend\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"size\":{\"type\":\"size\",\"required\":false,\"uniqueItems\":false},\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"farm\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"title\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"ownerLink\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"ownername\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"owner\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"secret\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"server\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false}},\"id\":\"photo\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"scoredWord\":{\"properties\":{\"position\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"wordType\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"score\":{\"type\":\"float\",\"required\":false,\"uniqueItems\":false},\"sentenceId\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"word\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"partOfSpeech\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"scoredWord\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"syllable\":{\"properties\":{\"text\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"seq\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"type\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"syllable\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"audioType\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"audioType\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"contentProvider\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"contentProvider\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"entry\":{\"properties\":{\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"sourceDictionary\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"relWord\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"related\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"definition\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"definition\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"syll\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"syllable\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"word\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"note\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"note\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false},\"header\":{\"type\":\"header\",\"required\":false,\"uniqueItems\":false}},\"id\":\"entry\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"Label\":{\"properties\":{\"text\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"type\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"Label\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"ExampleDataStore\":{\"properties\":{\"id\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"name\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"ExampleDataStore\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"user\":{\"properties\":{\"id\":{\"type\":\"long\",\"required\":false,\"uniqueItems\":false},\"email\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"status\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"faceBookId\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"userName\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"displayName\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"password\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"user\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"audioFile\":{\"properties\":{\"id\":{\"type\":\"long\",\"required\":true,\"uniqueItems\":false},\"duration\":{\"type\":\"double\",\"required\":false,\"uniqueItems\":false},\"createdBy\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"createdAt\":{\"type\":\"Date\",\"required\":false,\"uniqueItems\":false},\"description\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"voteWeightedAverage\":{\"type\":\"float\",\"required\":false,\"uniqueItems\":false},\"voteAverage\":{\"type\":\"float\",\"required\":false,\"uniqueItems\":false},\"word\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"commentCount\":{\"type\":\"int\",\"required\":false,\"uniqueItems\":false},\"voteCount\":{\"type\":\"integer\",\"required\":false,\"uniqueItems\":false},\"audioType\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false},\"fileUrl\":{\"type\":\"string\",\"required\":false,\"uniqueItems\":false}},\"id\":\"audioFile\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"partOfSpeech\":{\"properties\":{\"roots\":{\"type\":\"array\",\"required\":false,\"items\":{\"$ref\":\"root\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false},\"uniqueItems\":false}},\"id\":\"partOfSpeech\",\"type\":\"any\",\"required\":false,\"uniqueItems\":false}},\"apis\":[{\"path\":\"/word.{format}/{word}/entries\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"tags\",\"description\":\"Return XML tags in response\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"sourceDictionary\",\"description\":\"Get from a single dictionary. Valid options: ahd, century, wiktionary, webster, and wordnet.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"etymologies\",\"description\":\"Return etymologies\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Return entries for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getEntries\",\"responseClass\":\"List[entry]\"}]},{\"path\":\"/word.{format}/{word}/examples\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return examples for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"includeDuplicates\",\"description\":\"Show duplicate examples from different sources\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"contentProvider\",\"description\":\"Return results from a specific ContentProvider\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return the correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"internalDataStore\",\"description\":\"Specify the internal storage engine.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"skip\",\"description\":\"Results to skip\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns examples for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getExamples\",\"responseClass\":\"exampleSearchResults\"},{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch examples for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"description\":\"Search definition object\",\"required\":false,\"dataType\":\"ExampleSearchQuery\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"body\"},{\"name\":\"internalDataStore\",\"description\":\"Specify the internal storage engine.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Fetches examples for a word\",\"httpMethod\":\"POST\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getExamplesPost\",\"responseClass\":\"exampleSearchResults\"}]},{\"path\":\"/word.{format}/{word}/wordForms\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to add forms for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"description\":\"RelationshipMapWord to add\",\"required\":false,\"dataType\":\"suggestion\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"body\"},{\"name\":\"canonical\",\"description\":\"Make this the Canonical form of the word.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Adds a Relationship Map to a word\",\"httpMethod\":\"POST\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No results.\",\"code\":404}],\"nickname\":\"addWordForm\",\"responseClass\":\"ok\"},{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch forms for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return a correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns other forms of a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No results.\",\"code\":404}],\"nickname\":\"getWordForms\",\"responseClass\":\"relationshipMap\"},{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to delete forms from\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"type\",\"description\":\"Relationship type to delete\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"word\",\"description\":\"Target word to remove relationship from.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Deletes a relationship from a word\",\"httpMethod\":\"DELETE\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No results.\",\"code\":404}],\"nickname\":\"deleteWordForm\",\"responseClass\":\"ok\"}]},{\"path\":\"/word.{format}/{word}\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"String value of WordObject to return\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return the correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"includeSuggestions\",\"description\":\"Return suggestions (for correct spelling, case variants, etc.)\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"shouldCreate\",\"description\":\"Create word if not existing\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Given a word as a string, returns the WordObject that represents it\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getWord\",\"responseClass\":\"wordObject\"}]},{\"path\":\"/word.{format}/{word}/definitions\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return definitions for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"partOfSpeech\",\"description\":\"CSV list of part-of-speech types\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"noun\",\"adjective\",\"verb\",\"adverb\",\"interjection\",\"pronoun\",\"preposition\",\"abbreviation\",\"affix\",\"article\",\"auxiliary-verb\",\"conjunction\",\"definite-article\",\"family-name\",\"given-name\",\"idiom\",\"imperative\",\"noun-plural\",\"noun-posessive\",\"past-participle\",\"phrasal-prefix\",\"proper-noun\",\"proper-noun-plural\",\"proper-noun-posessive\",\"suffix\",\"verb-intransitive\",\"verb-transitive\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"includeRelated\",\"description\":\"Return related words with definitions\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"true\",\"false\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"sourceDictionaries\",\"description\":\"Gets from dictionaries in the supplied order of precedence\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\" century\",\" wiktionary\",\" webster\",\" wordnet\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return the correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"includeTags\",\"description\":\"Return a closed set of XML tags in response\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Return definitions for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No definitions found.\",\"code\":404}],\"nickname\":\"getDefinitions\",\"responseClass\":\"List[definition]\"}]},{\"path\":\"/word.{format}/{word}/stats\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return stats for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return the correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"detailed\",\"description\":\"Return detailed usage info\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns word statistics\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No stats available.\",\"code\":404}],\"nickname\":\"getWordStats\",\"responseClass\":\"wordStats\"}]},{\"path\":\"/word.{format}/{word}/topExample\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch examples for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"contentProvider\",\"description\":\"Return results from a specific ContentProvider\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return the correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"internalDataStore\",\"description\":\"Specify the internal storage engine.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns a top example for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getTopExample\",\"responseClass\":\"example\"}]},{\"path\":\"/word.{format}/{word}/punctuationFactor\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"caseSensitive\",\"description\":\"Input is case sensitive\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"useCanonical\",\"description\":\"Use the canonical form of the word.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Fetches other forms of a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No results.\",\"code\":404}],\"nickname\":\"getPunctuationFactor\",\"responseClass\":\"punctuationFactor\",\"notes\":\"Deprecated\"}]},{\"path\":\"/word.{format}/{word}/contextualLookup\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return definitions for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"sentence\",\"description\":\"The sentence in which the word occurs\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"offset\",\"defaultValue\":\"-1\",\"description\":\"The start character offset of the word in the given sentence\",\"required\":false,\"dataType\":\"int\",\"allowableValues\":[\"0 to 4096\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"expandTerms\",\"description\":\"Expand context terms using related words\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"true\",\"false\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"includeSourceDictionaries\",\"description\":\"Only include these comma-delimited source dictionaries\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\" century\",\" wiktionary\",\" webster\",\" wordnet\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"excludeSourceDictionaries\",\"description\":\"Exclude these comma-delimited source dictionaries\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\" century\",\" wiktionary\",\" webster\",\" wordnet\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"skip\",\"defaultValue\":\"0\",\"description\":\"Results to skip\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"0 to 1000\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"defaultValue\":\"10\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"1 to 1000\"],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns definitions for a word based on the sentence in which it is found\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"contextualLookup\",\"responseClass\":\"DefinitionSearchResults\",\"notes\":\"Use the offset parameter when the word occurs more than once in the sentence\"},{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return definitions for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"description\":\"The sentence in which the word occurs\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"body\"},{\"name\":\"offset\",\"defaultValue\":\"-1\",\"description\":\"The start character offset of the word in the given sentence\",\"required\":false,\"dataType\":\"int\",\"allowableValues\":[\"0 to 4096\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"expandTerms\",\"description\":\"Expand context terms using related words\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"true\",\"false\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"includeSourceDictionaries\",\"description\":\"Only include these comma-delimited source dictionaries\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\" century\",\" wiktionary\",\" webster\",\" wordnet\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"excludeSourceDictionaries\",\"description\":\"Exclude these comma-delimited source dictionaries\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\" century\",\" wiktionary\",\" webster\",\" wordnet\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"skip\",\"defaultValue\":\"0\",\"description\":\"Results to skip\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"0 to 1000\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"defaultValue\":\"10\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"1 to 1000\"],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns definitions for a word based on the sentence in which it is found\",\"httpMethod\":\"POST\",\"errorResponses\":[{\"reason\":\"Invalid term supplied.\",\"code\":400}],\"nickname\":\"contextualLookupPost\",\"responseClass\":\"DefinitionSearchResults\",\"notes\":\"Use the offset parameter when the word occurs more than once in the sentence\"}]},{\"path\":\"/word.{format}/{word}/commentCount\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get comment count for.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Returns the number of comments on a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"Word not found.\",\"code\":404}],\"nickname\":\"getCommentCount\",\"responseClass\":\"long\"}]},{\"path\":\"/word.{format}/{word}/citations\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get citations for.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return a correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"sourceDictionary\",\"description\":\"Get from a single dictionary. Valid options: ahd, century, wiktionary, webster, and wordnet.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns citations for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getCitations\",\"responseClass\":\"List[citation]\"}]},{\"path\":\"/word.{format}/{word}/related\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word for which to return related words\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"partOfSpeech\",\"description\":\"CSV list of part-of-speech types\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"noun\",\"adjective\",\"verb\",\"adverb\",\"interjection\",\"pronoun\",\"preposition\",\"abbreviation\",\"affix\",\"article\",\"auxiliary-verb\",\"conjunction\",\"definite-article\",\"family-name\",\"given-name\",\"idiom\",\"imperative\",\"noun-plural\",\"noun-posessive\",\"past-participle\",\"phrasal-prefix\",\"proper-noun\",\"proper-noun-plural\",\"proper-noun-posessive\",\"suffix\",\"verb-intransitive\",\"verb-transitive\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"sourceDictionary\",\"description\":\"Get data from a single dictionary\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\" century\",\" wiktionary\",\" webster\",\" wordnet\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return the correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"type\",\"description\":\"Relationship type\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"synonym\",\"antonym\",\"variant\",\"equivalent\",\"cross-reference\",\"related-word\",\"rhyme\",\"form\",\"etymologically-related-term\",\"hypernym\",\"hyponym\",\"inflected-form\",\"primary\",\"same-context\",\"verb-form\",\"verb-stem\",\"unknown\"],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Return related words (thesaurus data) for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No definitions found.\",\"code\":404}],\"nickname\":\"getRelatedWords\",\"responseClass\":\"List[related]\"}]},{\"path\":\"/word.{format}/{word}/listedIn\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch WordLists for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"sortBy\",\"description\":\"Specifies a sort parameter\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"rating\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"username\",\"description\":\"User to scope the request to\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns WordLists containing a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied\",\"code\":400},{\"reason\":\"Supplied user does not exist\",\"code\":404}],\"nickname\":\"getListedIn\",\"responseClass\":\"List[wordList]\"}]},{\"path\":\"/word.{format}/{word}/listedInCount\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch count for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Returns a count of lists a word appears in\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"Word not found.\",\"code\":404}],\"nickname\":\"getListedInCount\",\"responseClass\":\"long\"}]},{\"path\":\"/word.{format}/{word}/firstListedIn\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch a WordList for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Returns the first WordList a word appeared in\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"Word not found.\",\"code\":404}],\"nickname\":\"getFirstListedIn\",\"responseClass\":\"wordList\"}]},{\"path\":\"/word.{format}/{word}/firstListedBy\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch a User for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Returns the first User to list a particular word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"Word not found.\",\"code\":404}],\"nickname\":\"getFirstListedBy\",\"responseClass\":\"user\"}]},{\"path\":\"/word.{format}/{word}/pronunciations\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get pronunciations for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return a correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"sourceDictionary\",\"description\":\"Get from a single dictionary.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\"century\",\"cmu\",\"macmillan\",\"wiktionary\",\"webster\",\"wordnet\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"typeFormat\",\"description\":\"Text pronunciation type\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\"arpabet\",\"gcide-diacritical\",\"IPA\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns text pronunciations for a given word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getTextPronunciations\",\"responseClass\":\"List[textPron]\"}]},{\"path\":\"/word.{format}/{word}/images/flickr\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get flickr images for.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"size\",\"description\":\"Image size\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"thumb\",\"small\",\"med\",\"lg\",\"orig\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns Flickr images for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getFlickrImages\",\"responseClass\":\"List[photo]\"}]},{\"path\":\"/word.{format}/{word}/scrabbleScore\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get scrabble score for.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Returns the Scrabble score for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No scrabble score found.\",\"code\":404}],\"nickname\":\"getScrabbleScore\",\"responseClass\":\"long\"}]},{\"path\":\"/word.{format}/{word}/hyphenation\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get syllables for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return a correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"sourceDictionary\",\"description\":\"Get from a single dictionary. Valid options: ahd, century, wiktionary, webster, and wordnet.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns syllable information for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getHyphenation\",\"responseClass\":\"List[syllable]\"}]},{\"path\":\"/word.{format}/{word}/unigramCountInternal\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get unigram count for.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Returns syllable information for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getUnigramCountInternal\",\"responseClass\":\"long\"}]},{\"path\":\"/word.{format}/{word}/phrasesInternal\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get bigrams for.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"gamma\",\"description\":\"Gamma filter\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"minWlmi\",\"description\":\"WLMI Limit\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns Bigrams for the given word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getBigramsInternal\",\"responseClass\":\"List[bigram]\"}]},{\"path\":\"/word.{format}/{word}/lookupCount\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get Bigrams for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Returns the number of times a word has been viewed\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"Word not found.\",\"code\":404}],\"nickname\":\"getLookupCount\",\"responseClass\":\"long\"}]},{\"path\":\"/word.{format}/{word}/tags\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch Tags on\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"Use the canonical form of the word.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"username\",\"description\":\"Restrict to a particular user\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Fetches tags for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getTagsOnWord\",\"responseClass\":\"List[tag]\"}]},{\"path\":\"/word.{format}/{word}/tagCount\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch Tag count on\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"Use the canonical form of the word.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"username\",\"description\":\"Restrict to a particular user\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Fetches tag count for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getTagCountOnWord\",\"responseClass\":\"long\"}]},{\"path\":\"/word.{format}/{word}/tag\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to add a Tag to\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"tags\",\"description\":\"CSV list of tags to add.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"username\",\"description\":\"Add tag on behalf of a particular user\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Adds a tag to a word\",\"httpMethod\":\"POST\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"addTagToWord\",\"responseClass\":\"ok\"},{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to add a Tag to\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"tags\",\"description\":\"CSV list of tags to remove.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"username\",\"description\":\"Remove tag on behalf of a particular user\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Removes a tag from a word\",\"httpMethod\":\"DELETE\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"deleteTagFromWord\",\"responseClass\":\"ok\"}]},{\"path\":\"/word.{format}/{word}/frequency\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"caseSensitive\",\"description\":\"Input is case sensitive\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return the correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"startYear\",\"description\":\"Starting Year\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"endYear\",\"description\":\"Ending Year\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"includeErrorBars\",\"description\":\"Get error bar data\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns word usage over time\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No results.\",\"code\":404}],\"nickname\":\"getWordFrequency\",\"responseClass\":\"frequencySummary\"}]},{\"path\":\"/word.{format}/{word}/firstUsed\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return first usage for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"Use the canonical form of the word.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"detailed\",\"description\":\"Return detailed usage info\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns first usage of a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getFirstUsageOfWord\",\"responseClass\":\"detailedWordUsage\"}]},{\"path\":\"/word.{format}/{word}/wordView\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to record a word view for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"userId\",\"description\":\"ID of the user viewing the word\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"userGuid\",\"description\":\"Tracking ID for the user\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"userSessionId\",\"description\":\"Session ID for the user\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"serverIp\",\"description\":\"Internal IP address of the web server\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"pageName\",\"description\":\"Page being viewed\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"method\",\"description\":\"Method of the word view\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"userAgent\",\"description\":\"Browser user agent\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Records a word view from the website\",\"httpMethod\":\"POST\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"addWordView\",\"responseClass\":\"ok\"}]},{\"path\":\"/word.{format}/{word}/isFavorite\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to check\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"Use the canonical form of the word.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"userName\",\"description\":\"Check for a particular user\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Checks to see if a word is a user's favorite\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied\",\"code\":400},{\"reason\":\"No user found\",\"code\":404}],\"nickname\":\"isFavorite\",\"responseClass\":\"BooleanValue\"}]},{\"path\":\"/word.{format}/{word}/favoriteCount\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to check\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"Use the canonical form of the word.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"userName\",\"description\":\"Check for a particular user\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Returns the number of times a word has been Favorited\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied\",\"code\":400},{\"reason\":\"No user found\",\"code\":404}],\"nickname\":\"getFavoriteCount\",\"responseClass\":\"long\"}]},{\"path\":\"/word.{format}/{word}/favorite\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to favorite\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"userName\",\"description\":\"Add as favorite on behalf of a particular user\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Favorites a Word for a user\",\"httpMethod\":\"POST\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No user found\",\"code\":404}],\"nickname\":\"addWordToFavorites\",\"responseClass\":\"ok\"},{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to remove\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"userName\",\"description\":\"Remove on behalf of a particular user\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Removes a Word from a user's Favorites\",\"httpMethod\":\"DELETE\",\"errorResponses\":[{\"reason\":\"Invalid word supplied or no user found.\",\"code\":400}],\"nickname\":\"deleteFromFavorites\",\"responseClass\":\"ok\"}]},{\"path\":\"/word.{format}/{word}/phrases\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch phrases for\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"wlmi\",\"description\":\"Minimum WLMI for the phrase\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return the correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Fetches bi-gram phrases for a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getPhrases\",\"responseClass\":\"List[bigram]\"}]},{\"path\":\"/word.{format}/{word}/etymologies\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"sourceDictionary\",\"description\":\"Get etymologies from a single dictionary. Options are ahd or century.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\"webster\",\"wiktionary\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"useCanonical\",\"description\":\"If true will try to return the correct word root ('cats' -> 'cat'). If false returns exactly what was requested.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"false\",\"true\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"type\",\"description\":\"Etymology type\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ahd\",\"webster\",\"wiktionary\"],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Fetches etymology data\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No definitions found.\",\"code\":404}],\"nickname\":\"getEtymologies\",\"responseClass\":\"String\"}]},{\"path\":\"/word.{format}/{word}/otherFormsInternal\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"minFrequency\",\"description\":\"Minimum corpus frequency\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Fetches other forms of a word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getOtherFormsInternal\",\"responseClass\":\"List[otherForms]\",\"notes\":\"Deprecated\"}]},{\"path\":\"/word.{format}/{word}/wordRelationshipInternal\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"description\":\"Relationship to add\",\"required\":false,\"dataType\":\"relatedData\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"body\"}],\"summary\":\"Adds a word relationship\",\"httpMethod\":\"POST\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"No results.\",\"code\":404}],\"nickname\":\"addWordRelationshipInternal\",\"responseClass\":\"ok\",\"notes\":\"Deprecated\"}]},{\"path\":\"/word.{format}/{word}/comments\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to return Comments for\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"sortOrder\",\"defaultValue\":\"descending\",\"description\":\"Direction to sort by\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[\"ascending\",\"descending\"],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"skip\",\"description\":\"Results to skip\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Fetches comments on a Word\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getCommentsOnWord\",\"responseClass\":\"List[comment]\"}]},{\"path\":\"/word.{format}/{word}/comment/{commentId}\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to fetch Comment for.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"commentId\",\"description\":\"ID of Comment to fetch.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Fetches a Comment by ID\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word or Comment supplied.\",\"code\":400},{\"reason\":\"Word or commentor not found.\",\"code\":404}],\"nickname\":\"getCommentOnWord\",\"responseClass\":\"comment\"},{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to update Comment on.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"commentId\",\"description\":\"Updated Comment.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Deletes an existing word comment\",\"httpMethod\":\"DELETE\",\"errorResponses\":[{\"reason\":\"Invalid word or Comment supplied.\",\"code\":400},{\"reason\":\"Word or commentor not found.\",\"code\":404}],\"nickname\":\"deleteCommentByIdOnWord\",\"responseClass\":\"ok\"}]},{\"path\":\"/word.{format}/{word}/comment\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to add Comment to.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"description\":\"Comment to add.\",\"required\":false,\"dataType\":\"comment\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"body\"}],\"summary\":\"Adds a comment to a word\",\"httpMethod\":\"POST\",\"errorResponses\":[{\"reason\":\"Invalid word or Comment supplied.\",\"code\":400},{\"reason\":\"Word or commentor not found.\",\"code\":404}],\"nickname\":\"commentOnWord\",\"responseClass\":\"comment\"},{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to update Comment on.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"description\":\"Updated Comment.\",\"required\":false,\"dataType\":\"comment\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"body\"}],\"summary\":\"Updates an existing word comment\",\"httpMethod\":\"PUT\",\"errorResponses\":[{\"reason\":\"Invalid word or Comment supplied.\",\"code\":400},{\"reason\":\"Word or commentor not found.\",\"code\":404}],\"nickname\":\"updateCommentOnWord\",\"responseClass\":\"comment\"}]},{\"path\":\"/word.{format}/{word}/audio\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get audio for.\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"useCanonical\",\"description\":\"Use the canonical form of the word.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"v3Format\",\"description\":\"Use the V3 api.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"paramAccess\":\"internal\",\"allowMultiple\":false,\"paramType\":\"query\"},{\"name\":\"limit\",\"description\":\"Maximum number of results to return\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"query\"}],\"summary\":\"Fetches audio metadata for a word.\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"getAudio\",\"responseClass\":\"List[audioFile]\",\"notes\":\"The metadata includes a time-expiring fileUrl which allows reading the audio file directly from the API. Currently only audio pronunciations from the American Heritage Dictionary in mp3 format are supported.\"},{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to add audio to.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"description\":\"AudioPon metadata to add.\",\"required\":false,\"dataType\":\"audioObject\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"body\"}],\"summary\":\"Creates AudioPron metadata\",\"httpMethod\":\"POST\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"addAudio\",\"responseClass\":\"ok\"}]},{\"path\":\"/word.{format}/{word}/pronunciation/{pronId}\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to get audio for.\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"pronId\",\"description\":\"Id to get audio for.\",\"required\":true,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Fetches single audio pronunciation.\",\"httpMethod\":\"GET\",\"errorResponses\":[{\"reason\":\"Invalid pron id supplied.\",\"code\":400}],\"nickname\":\"getPronunciation\",\"responseClass\":\"audioFile\",\"notes\":\"The metadata includes a time-expiring fileUrl which allows reading the audio file directly from the API. Currently only audio pronunciations from the American Heritage Dictionary in mp3 format are supported.\"}]},{\"path\":\"/word.{format}/{word}/audioInternal\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"audio object to update\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"description\":\"Updated metadata.\",\"required\":false,\"dataType\":\"audioObject\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"body\"}],\"summary\":\"Internal method to update an audio object\",\"httpMethod\":\"PUT\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400}],\"nickname\":\"updateAudioInternal\",\"responseClass\":\"ok\"}]},{\"path\":\"/word.{format}/{word}/audio/{audio_id}\",\"description\":\"\",\"operations\":[{\"parameters\":[{\"name\":\"word\",\"description\":\"Word to delete audio from.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"},{\"name\":\"audio_id\",\"description\":\"AudioPon metadata to add.\",\"required\":false,\"dataType\":\"string\",\"allowableValues\":[],\"allowMultiple\":false,\"paramType\":\"path\"}],\"summary\":\"Deletes an AudioPron\",\"httpMethod\":\"DELETE\",\"errorResponses\":[{\"reason\":\"Invalid word supplied.\",\"code\":400},{\"reason\":\"Unauthorized.\",\"code\":401}],\"nickname\":\"deleteAudio\",\"responseClass\":\"ok\"}]}],\"models1\":[{\"name\":\"BooleanValue\",\"fields\":[{\"name\":\"value\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"boolean\"}]},{\"name\":\"note\",\"fields\":[{\"name\":\"noteType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"pos\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"value\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"appliesTo\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"List[string]\"}]},{\"name\":\"author\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"description\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"createdAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"authorType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"authorType\"},{\"name\":\"uniqueName\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"long\",\"fields\":[{\"name\":\"value\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"header\",\"fields\":[{\"name\":\"type\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"type\"},{\"name\":\"position\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"integer\"},{\"name\":\"word\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"textPron\",\"required\":false,\"wrapperName\":\"textProns\",\"allowMultiple\":false,\"paramType\":\"List[textPron]\"},{\"name\":\"partOfSpeech\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"note\",\"required\":false,\"wrapperName\":\"notes\",\"allowMultiple\":false,\"paramType\":\"List[note]\"},{\"name\":\"syllable\",\"required\":false,\"wrapperName\":\"syllables\",\"allowMultiple\":false,\"paramType\":\"List[syllable]\"},{\"name\":\"sourceDictionary\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"homograph\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"derivativeSense\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"derivedFrom\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"etymologyXml\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"documentMedium\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"contentProvider\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"frequency\",\"fields\":[{\"name\":\"year\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"count\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"authorType\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"audioType\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"frequencySummary\",\"fields\":[{\"name\":\"word\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"totalCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"frequency\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"List[frequency]\"},{\"name\":\"unknownYearCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"detailedWordUsage\",\"fields\":[{\"name\":\"wordstring\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"sentence\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"sentence\"},{\"name\":\"metadata\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"documentMetadata\"}]},{\"name\":\"citation\",\"fields\":[{\"name\":\"source\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"cite\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"audioType\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"basicDocumentStats\",\"fields\":[{\"name\":\"key\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"type\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"sentencesCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"uniqueWordsCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"documentsCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"tokensCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"wordsCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"firstUsedWordsCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"viableSentencesCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"uniqueBiGramsCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"otherForms\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"wordString\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"totalCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"plain\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"wordId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"facet\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"facetValue\",\"required\":false,\"wrapperName\":\"facetValues\",\"allowMultiple\":false,\"paramType\":\"List[facetValue]\"}]},{\"name\":\"wordObject\",\"fields\":[{\"name\":\"word\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"vulgar\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"relationshipMap\",\"fields\":[{\"name\":\"sourceWordstring\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"suggestion\",\"required\":false,\"wrapperName\":\"suggestions\",\"allowMultiple\":false,\"paramType\":\"List[suggestion]\"}]},{\"name\":\"contentType\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"comment\",\"fields\":[{\"name\":\"objectType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"objectId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"commentedBy\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"createdAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"commentedOn\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"body\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"updatedAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"}]},{\"name\":\"exampleSearchResults\",\"fields\":[{\"name\":\"facet\",\"required\":false,\"wrapperName\":\"facets\",\"allowMultiple\":false,\"paramType\":\"List[facet]\"},{\"name\":\"example\",\"required\":false,\"wrapperName\":\"examples\",\"allowMultiple\":false,\"paramType\":\"List[example]\"}]},{\"name\":\"partOfSpeech\",\"fields\":[{\"name\":\"roots\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"List[root]\"}]},{\"name\":\"sizes\",\"fields\":[{\"name\":\"size\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"List[size]\"}]},{\"name\":\"subjectClassificationType\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"Label\",\"fields\":[{\"name\":\"type\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"text\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"audioFile\",\"fields\":[{\"name\":\"id\",\"required\":true,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"description\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"duration\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"double\"},{\"name\":\"word\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"createdBy\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"createdAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"commentCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"voteCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"integer\"},{\"name\":\"voteAverage\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"float\"},{\"name\":\"voteWeightedAverage\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"float\"},{\"name\":\"fileUrl\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"audioType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"DefinitionSearchResults\",\"fields\":[{\"name\":\"totalResults\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"result\",\"required\":false,\"wrapperName\":\"results\",\"allowMultiple\":false,\"paramType\":\"List[definition]\"}]},{\"name\":\"RelatedDataSource\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"audioObject\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"type\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"audioType\"},{\"name\":\"description\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"duration\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"double\"},{\"name\":\"userId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"wordstring\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"createdBy\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"createdAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"audioFileType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"audioType\"},{\"name\":\"audioFileId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"filePath\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"wordId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"recordId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"streamPath\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"extendedMetadata\",\"fields\":[{\"name\":\"documentMetadataId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"isbn\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"issn\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"lccn\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"sourceFileSize\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"tag\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"count\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"example\",\"fields\":[{\"name\":\"year\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"integer\"},{\"name\":\"provider\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"contentProvider\"},{\"name\":\"url\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"word\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"text\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"title\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"rating\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"float\"},{\"name\":\"exampleId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"documentId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"definition\",\"fields\":[{\"name\":\"exampleUsage\",\"required\":false,\"wrapperName\":\"exampleUses\",\"allowMultiple\":false,\"paramType\":\"List[ExampleUsage]\"},{\"name\":\"word\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"text\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"textPron\",\"required\":false,\"wrapperName\":\"textProns\",\"allowMultiple\":false,\"paramType\":\"List[textPron]\"},{\"name\":\"score\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"float\"},{\"name\":\"partOfSpeech\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"note\",\"required\":false,\"wrapperName\":\"notes\",\"allowMultiple\":false,\"paramType\":\"List[note]\"},{\"name\":\"relWord\",\"required\":false,\"wrapperName\":\"relatedWords\",\"allowMultiple\":false,\"paramType\":\"List[related]\"},{\"name\":\"sourceDictionary\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"label\",\"required\":false,\"wrapperName\":\"labels\",\"allowMultiple\":false,\"paramType\":\"List[Label]\"},{\"name\":\"citation\",\"required\":false,\"wrapperName\":\"citations\",\"allowMultiple\":false,\"paramType\":\"List[citation]\"},{\"name\":\"sequence\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"seqString\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"extendedText\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"photo\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"owner\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"server\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"title\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"ownername\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"secret\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"farm\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"ispublic\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"isfriend\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"isfamily\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"ownerLink\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"linkUri\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"size\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"size\"}]},{\"name\":\"category\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"RelationshipType\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"relatedData\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"source\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"RelatedDataSource\"},{\"name\":\"userId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"sourceWordstring\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"targetWordstring\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"relationshipType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"RelationshipType\"},{\"name\":\"frequency\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"partOfSpeech\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"createdAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"targetWordId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"sourceWordId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"sense\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"integer\"},{\"name\":\"direction\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"root\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"categories\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"List[category]\"}]},{\"name\":\"ExampleUsage\",\"fields\":[{\"name\":\"text\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"entry\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"header\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"header\"},{\"name\":\"word\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"note\",\"required\":false,\"wrapperName\":\"notes\",\"allowMultiple\":false,\"paramType\":\"List[note]\"},{\"name\":\"definition\",\"required\":false,\"wrapperName\":\"definitions\",\"allowMultiple\":false,\"paramType\":\"List[definition]\"},{\"name\":\"syll\",\"required\":false,\"wrapperName\":\"syllabified\",\"allowMultiple\":false,\"paramType\":\"List[syllable]\"},{\"name\":\"relWord\",\"required\":false,\"wrapperName\":\"relatedWords\",\"allowMultiple\":false,\"paramType\":\"List[related]\"},{\"name\":\"sourceDictionary\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"scoredWord\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"wordType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"position\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"word\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"score\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"float\"},{\"name\":\"sentenceId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"partOfSpeech\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"facetValue\",\"fields\":[{\"name\":\"value\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"count\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"sentence\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"scoredWord\",\"required\":false,\"wrapperName\":\"scoredWords\",\"allowMultiple\":false,\"paramType\":\"List[scoredWord]\"},{\"name\":\"display\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"documentMetadataId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"rating\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"type\",\"fields\":[{\"name\":\"typeId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"text\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"enteredAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"mapping\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"punctuationFactor\",\"fields\":[{\"name\":\"totalCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"wordId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"periodCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"exclamationPointCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"questionMarkCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"bigram\",\"fields\":[{\"name\":\"count\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"gram1\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"gram2\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"mi\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"double\"},{\"name\":\"wlmi\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"double\"}]},{\"name\":\"yearType\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"related\",\"fields\":[{\"name\":\"word\",\"required\":false,\"wrapperName\":\"words\",\"allowMultiple\":false,\"paramType\":\"List[string]\"},{\"name\":\"relationshipType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"label1\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"label2\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"label3\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"label4\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"gram\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"documentMetadata\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"year\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"integer\"},{\"name\":\"contentType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"contentType\"},{\"name\":\"provider\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"contentProvider\"},{\"name\":\"tag\",\"required\":false,\"wrapperName\":\"tags\",\"allowMultiple\":false,\"paramType\":\"List[string]\"},{\"name\":\"title\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"rating\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"double\"},{\"name\":\"medium\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"documentMedium\"},{\"name\":\"sourceUrl\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"createdAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"classification\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"subjectClassificationType\"},{\"name\":\"date\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"yearType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"yearType\"},{\"name\":\"primaryAuthor\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"primaryAuthorType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"authorType\"},{\"name\":\"primaryAuthorId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"guid\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"extendedMetadata\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"extendedMetadata\"},{\"name\":\"author\",\"required\":false,\"wrapperName\":\"authors\",\"allowMultiple\":false,\"paramType\":\"List[author]\"},{\"name\":\"expirationDate\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"stats\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"basicDocumentStats\"}]},{\"name\":\"ExampleSearchQuery\",\"fields\":[{\"name\":\"year\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"contentType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"filter\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"limit\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"wordType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"wordString\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"contentProvider\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"partOfSpeech\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"skip\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"medium\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"subject\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"dateRange\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"beginDate\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"endDate\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"}]},{\"name\":\"wordStats\",\"fields\":[{\"name\":\"wordstring\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"sentencesCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"documentsCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"frequencyStats\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"frequencyStats\"},{\"name\":\"dictionaryStats\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Map[string,dictionaryWordStats]\"},{\"name\":\"partOfSpeechStats\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Map[string,integer]\"}]},{\"name\":\"syllable\",\"fields\":[{\"name\":\"type\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"seq\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"text\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"textPron\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"seq\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"raw\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"rawType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"wordList\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"type\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"description\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"userId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"permalink\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"createdAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"username\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"updatedAt\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Date\"},{\"name\":\"numberWordsInList\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"}]},{\"name\":\"ExampleDataStore\",\"fields\":[{\"name\":\"name\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"}]},{\"name\":\"frequencyStats\",\"fields\":[{\"name\":\"corpusCount\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"yearWise\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Map[integer,long]\"},{\"name\":\"contentType\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Map[integer,long]\"},{\"name\":\"contentProvider\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Map[integer,long]\"},{\"name\":\"medium\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Map[integer,long]\"},{\"name\":\"subject\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Map[integer,long]\"},{\"name\":\"author\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"Map[long,long]\"}]},{\"name\":\"suggestion\",\"fields\":[{\"name\":\"type\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"wordstring\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]},{\"name\":\"user\",\"fields\":[{\"name\":\"id\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"long\"},{\"name\":\"displayName\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"status\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"int\"},{\"name\":\"password\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"userName\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"email\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"},{\"name\":\"faceBookId\",\"required\":false,\"allowMultiple\":false,\"paramType\":\"string\"}]}],\"basePath\":\"url\",\"swaggerVersion\":\"1.0\"}"
|
24
|
+
http_version: "1.1"
|
25
|
+
:@ignored: false
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://localhost:8001/admin/api/word.json/dynamo
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
content-type:
|
9
|
+
- application/json
|
10
|
+
api-key:
|
11
|
+
- b39ee8d5f05d0f566a0080b4c310ceddf5dc5f7606a616f53
|
12
|
+
auth-token:
|
13
|
+
- 8f9de26cd0b2c8292d52f78d5082b00073d6ea74d848e3c
|
14
|
+
user-agent:
|
15
|
+
- ruby-4.06.06
|
16
|
+
response: !ruby/struct:VCR::Response
|
17
|
+
status: !ruby/struct:VCR::ResponseStatus
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
date:
|
22
|
+
- Mon, 29 Aug 2011 16:33:12 GMT
|
23
|
+
wordnik-api-version:
|
24
|
+
- 4.07.67
|
25
|
+
access-control-allow-origin:
|
26
|
+
- "*"
|
27
|
+
content-type:
|
28
|
+
- application/json
|
29
|
+
transfer-encoding:
|
30
|
+
- chunked
|
31
|
+
body: "{\"canonicalForm\":\"dynamo\",\"word\":\"dynamo\"}"
|
32
|
+
http_version: "1.1"
|
33
|
+
:@ignored: false
|
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://localhost:8001/admin/api/word.json/dog/images/flickr
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
response: !ruby/struct:VCR::Response
|
9
|
+
status: !ruby/struct:VCR::ResponseStatus
|
10
|
+
code: 200
|
11
|
+
message: OK
|
12
|
+
headers:
|
13
|
+
date:
|
14
|
+
- Mon, 29 Aug 2011 16:28:43 GMT
|
15
|
+
wordnik-api-version:
|
16
|
+
- 4.07.67
|
17
|
+
access-control-allow-origin:
|
18
|
+
- "*"
|
19
|
+
content-type:
|
20
|
+
- application/json
|
21
|
+
transfer-encoding:
|
22
|
+
- chunked
|
23
|
+
body: "[{\"id\":3210838977,\"owner\":\"29454428@N08\",\"server\":3464,\"title\":\"Police Dog, Tess, 29/1/35 / by Sam Hood\",\"ownername\":\"State Library of New South Wales collection\",\"secret\":\"5bba45254c\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/29454428@N08/\",\"linkUri\":\"http://farm4.static.flickr.com/3464/3210838977_5bba45254c_b.jpg\"},{\"id\":2741653860,\"owner\":\"83636496@N00\",\"server\":3065,\"title\":\"My little dog\",\"ownername\":\"-=RoBeE=-\",\"secret\":\"468fda7e7a\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/83636496@N00/\",\"linkUri\":\"http://farm4.static.flickr.com/3065/2741653860_468fda7e7a_m.jpg\"},{\"id\":2233632419,\"owner\":\"41754875@N00\",\"server\":2180,\"title\":\"the black box relevation:I think I like you\",\"ownername\":\"visualpanic\",\"secret\":\"409e943e69\",\"farm\":3,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/41754875@N00/\",\"linkUri\":\"http://farm3.static.flickr.com/2180/2233632419_409e943e69_m.jpg\"},{\"id\":32815499,\"owner\":\"35237093637@N01\",\"server\":21,\"title\":\"anti botox brigade\",\"ownername\":\"emdot\",\"secret\":\"222fefb30d\",\"farm\":1,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/35237093637@N01/\",\"linkUri\":\"http://farm1.static.flickr.com/21/32815499_222fefb30d_m.jpg\"},{\"id\":4737490919,\"owner\":\"31308183@N06\",\"server\":4116,\"title\":\"Katy Perry - Goddess\",\"ownername\":\"Daniel Suarez\xE2\x84\xA2\",\"secret\":\"c738598de3\",\"farm\":5,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/31308183@N06/\",\"linkUri\":\"http://farm5.static.flickr.com/4116/4737490919_c738598de3_m.jpg\"},{\"id\":4401299142,\"owner\":\"17039753@N06\",\"server\":2711,\"title\":\"SuperPup\",\"ownername\":\"Emmanuel_D.Photography\",\"secret\":\"336f16f50e\",\"farm\":3,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/17039753@N06/\",\"linkUri\":\"http://farm3.static.flickr.com/2711/4401299142_336f16f50e_m.jpg\"},{\"id\":4159767301,\"owner\":\"8070463@N03\",\"server\":2641,\"title\":\"For the wolf fans...\",\"ownername\":\"Tambako the Jaguar\",\"secret\":\"70e5d09f4b\",\"farm\":3,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/8070463@N03/\",\"linkUri\":\"http://farm3.static.flickr.com/2641/4159767301_70e5d09f4b_m.jpg\"},{\"id\":3310906188,\"owner\":\"24785917@N03\",\"server\":3561,\"title\":\"A man and woman outside a bush hut\",\"ownername\":\"Powerhouse Museum Collection\",\"secret\":\"5f39d0cbe0\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/24785917@N03/\",\"linkUri\":\"http://farm4.static.flickr.com/3561/3310906188_5f39d0cbe0_m.jpg\"},{\"id\":3211654136,\"owner\":\"29454428@N08\",\"server\":3454,\"title\":\"Margaret Shaffhauser with bull terrier dog at the Canine Association Show, 3 Nov 1934 / by Ted Hood\",\"ownername\":\"State Library of New South Wales collection\",\"secret\":\"9916e9cd54\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/29454428@N08/\",\"linkUri\":\"http://farm4.static.flickr.com/3454/3211654136_9916e9cd54_m.jpg\"},{\"id\":3211639268,\"owner\":\"29454428@N08\",\"server\":3416,\"title\":\"Study of a small girl with a prize Scottish terrier dog, c. 1935 / by Sam Hood\",\"ownername\":\"State Library of New South Wales collection\",\"secret\":\"88b64f463c\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/29454428@N08/\",\"linkUri\":\"http://farm4.static.flickr.com/3416/3211639268_88b64f463c_m.jpg\"},{\"id\":3211518494,\"owner\":\"29454428@N08\",\"server\":3425,\"title\":\"Artist and dog arrive by Melbourne Express (taken for J.C. Williamson), 10/12/1937 / byTed hood\",\"ownername\":\"State Library of New South Wales collection\",\"secret\":\"03b156807a\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/29454428@N08/\",\"linkUri\":\"http://farm4.static.flickr.com/3425/3211518494_03b156807a_m.jpg\"},{\"id\":3194993477,\"owner\":\"24785917@N03\",\"server\":3411,\"title\":\"Portrait view of child wearing a sun hat, with dog and toy cat (different angle)\",\"ownername\":\"Powerhouse Museum Collection\",\"secret\":\"444f03eee3\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/24785917@N03/\",\"linkUri\":\"http://farm4.static.flickr.com/3411/3194993477_444f03eee3_m.jpg\"},{\"id\":3169118372,\"owner\":\"24785917@N03\",\"server\":3089,\"title\":\"Bare foot boy wearing a hat, seated on a log\",\"ownername\":\"Powerhouse Museum Collection\",\"secret\":\"7097baccd9\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/24785917@N03/\",\"linkUri\":\"http://farm4.static.flickr.com/3089/3169118372_7097baccd9_m.jpg\"},{\"id\":2959326615,\"owner\":\"29454428@N08\",\"server\":3190,\"title\":\"Blizzard, the pup in Antarctica / photograph by Frank Hurley\",\"ownername\":\"State Library of New South Wales collection\",\"secret\":\"d7ae66b193\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/29454428@N08/\",\"linkUri\":\"http://farm4.static.flickr.com/3190/2959326615_d7ae66b193_m.jpg\"},{\"id\":2868980227,\"owner\":\"29454428@N08\",\"server\":3193,\"title\":\"Huskies pulling sledge\",\"ownername\":\"State Library of New South Wales collection\",\"secret\":\"cf01a70c46\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/29454428@N08/\",\"linkUri\":\"http://farm4.static.flickr.com/3193/2868980227_cf01a70c46_m.jpg\"},{\"id\":409313262,\"owner\":\"72922449@N00\",\"server\":152,\"title\":\"Es tu pa\xC3\xADs\",\"ownername\":\"Rodrigo Basaure\",\"secret\":\"60fc5d95a5\",\"farm\":1,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/72922449@N00/\",\"linkUri\":\"http://farm1.static.flickr.com/152/409313262_60fc5d95a5_m.jpg\"},{\"id\":4516905723,\"owner\":\"91695677@N00\",\"server\":4055,\"title\":\"Good Morning, Dear Dog\",\"ownername\":\"Helga Weber\",\"secret\":\"93091a8850\",\"farm\":5,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/91695677@N00/\",\"linkUri\":\"http://farm5.static.flickr.com/4055/4516905723_93091a8850_m.jpg\"},{\"id\":3019776218,\"owner\":\"26611570@N04\",\"server\":3280,\"title\":\"0216\",\"ownername\":\"Cia de Foto\",\"secret\":\"9cfddfea31\",\"farm\":4,\"ispublic\":1,\"isfriend\":0,\"isfamily\":0,\"ownerLink\":\"http://www.flickr.com/photos/26611570@N04/\",\"linkUri\":\"http://farm4.static.flickr.com/3280/3019776218_9cfddfea31_m.jpg\"}]"
|
24
|
+
http_version: "1.1"
|
25
|
+
:@ignored: false
|
@@ -0,0 +1,31 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://localhost:8001/admin/api/account.json/authenticate/zeke?password=gomer
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
content-type:
|
9
|
+
- application/json
|
10
|
+
api-key:
|
11
|
+
- b39ee8d5f05d0f566a0080b4c310ceddf5dc5f7606a616f53
|
12
|
+
user-agent:
|
13
|
+
- ruby-4.06.06
|
14
|
+
response: !ruby/struct:VCR::Response
|
15
|
+
status: !ruby/struct:VCR::ResponseStatus
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
date:
|
20
|
+
- Mon, 29 Aug 2011 16:28:39 GMT
|
21
|
+
wordnik-api-version:
|
22
|
+
- 4.07.67
|
23
|
+
access-control-allow-origin:
|
24
|
+
- "*"
|
25
|
+
content-type:
|
26
|
+
- application/json
|
27
|
+
transfer-encoding:
|
28
|
+
- chunked
|
29
|
+
body: "{\"token\":\"8f9de26cd0b2c8292d52f78d5082b00073d6ea74d848e3c\",\"userId\":1010037,\"userSignature\":\"79ea28fbc85f00e35ad5a5bc58ddf99b\"}"
|
30
|
+
http_version: "1.1"
|
31
|
+
:@ignored: false
|
@@ -0,0 +1,172 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://beta.wordnik.com:80/v4/account.json/authenticate/zeke?password=wrong!
|
6
|
+
body:
|
7
|
+
headers:
|
8
|
+
content-type:
|
9
|
+
- application/json
|
10
|
+
api-key:
|
11
|
+
- b39ee8d5f05d0f566a0080b4c310ceddf5dc5f7606a616f53
|
12
|
+
user-agent:
|
13
|
+
- ruby-4.06.06
|
14
|
+
response: !ruby/struct:VCR::Response
|
15
|
+
status: !ruby/struct:VCR::ResponseStatus
|
16
|
+
code: 404
|
17
|
+
message: Not Found
|
18
|
+
headers:
|
19
|
+
date:
|
20
|
+
- Mon, 29 Aug 2011 16:30:18 GMT
|
21
|
+
server:
|
22
|
+
- Apache/2.2.3 (Red Hat)
|
23
|
+
x-powered-by:
|
24
|
+
- Phusion Passenger (mod_rails/mod_rack) 3.0.2
|
25
|
+
x-runtime:
|
26
|
+
- "0.002124"
|
27
|
+
vary:
|
28
|
+
- User-Agent,Host,Accept-Encoding
|
29
|
+
status:
|
30
|
+
- "404"
|
31
|
+
content-encoding:
|
32
|
+
- gzip
|
33
|
+
content-length:
|
34
|
+
- "2566"
|
35
|
+
content-type:
|
36
|
+
- text/html; charset=UTF-8
|
37
|
+
body: "<!DOCTYPE html>\n\
|
38
|
+
<html lang=\"en\">\n\
|
39
|
+
<head>\n\n\
|
40
|
+
<meta charset=\"utf-8\">\n\
|
41
|
+
<meta name=\"description\" content=\"\" />\n\
|
42
|
+
<meta name=\"MSSmartTagsPreventParsing\" content=\"true\" />\n\n\
|
43
|
+
<title>Sorry, but we couldn't find that</title>\n\n\
|
44
|
+
<link href=\"/stylesheets/yeolde/wordnik.css?1274141228\" media=\"screen, projection\" rel=\"stylesheet\" type=\"text/css\" />\n\n\n\
|
45
|
+
<link rel=\"shortcut icon\" href=\"http://www.wordnik.com/favicon.png\" />\n\
|
46
|
+
<link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Wordnik\" href=\"/opensearch.xml\" />\n\n\
|
47
|
+
<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Comments on 'the'\" href=\"/words/the/comments.xml\" /><link rel=\"alternate\" type=\"application/rss+xml\" title=\"Wordnik Blog\" href=\"http://blog.wordnik.com/feed/\" />\n\n\
|
48
|
+
<script type=\"text/javascript\" src=\"http://www.google.com/jsapi?key=ABQIAAAA1ObtuD5khdPJcgAm9ISggxTpcf29Y8dALzECxCygJs7ce_8s-xQTaMAJodG7Ijxn_E6gaobz3EAF3Q\"></script>\n\
|
49
|
+
<script type=\"text/javascript\">\n\n\
|
50
|
+
google.load(\"jquery\", \"1.4.4\");\n\
|
51
|
+
google.load(\"jqueryui\", \"1.8.7\");\n\
|
52
|
+
google.load(\"swfobject\", \"2.2\");\n\
|
53
|
+
google.load(\"language\", \"1\");\n\n\
|
54
|
+
var _gaq = _gaq || [];\n\
|
55
|
+
_gaq.push(\n ['_setAccount', 'UA-5424156-1'],\n ['_setDomainName', '.wordnik.com']\n\
|
56
|
+
);\n\n\
|
57
|
+
_gaq.push(['_trackPageview']);\n\n\
|
58
|
+
(function() {\n var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;\n ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';\n var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);\n\
|
59
|
+
})();\n\
|
60
|
+
</script>\n\
|
61
|
+
<script src=\"/javascripts/yeolde/wordnik.js?1273820214\" type=\"text/javascript\"></script>\n\n\
|
62
|
+
</head>\n\n\
|
63
|
+
<body id=\"body\">\n\n\
|
64
|
+
<div id=\"top-band\">\n\
|
65
|
+
\t<div id=\"top-content\" class=\"container\">\n\n\
|
66
|
+
\t\t<table id=\"top-search\">\n\
|
67
|
+
\t\t\t<tr>\n\n\
|
68
|
+
\t\t\t\t<td id=\"search-cell\">\n\
|
69
|
+
\t\t\t\t\t<form method=\"get\" id=\"header_search_form\" action=\"/words\">\n\
|
70
|
+
\t\t\t\t\t\t<div id=\"top-search-submit\" title=\"search submit\"></div>\n\
|
71
|
+
\t\t\t\t\t\t<input id=\"header_search_input\" name=\"w\" type=\"text\" />\n\
|
72
|
+
\t\t\t\t\t\t<div id=\"header_search_autocomplete\" class=\"autocomplete\" style=\"display:none;\"></div>\n\
|
73
|
+
\t\t\t\t\t</form>\n\
|
74
|
+
\t\t\t\t</td>\n\
|
75
|
+
\t\t\t\t\t\t\t\t\t<td id=\"username-cell\">\n\
|
76
|
+
\t\t\t\t\t\t\t\t\t</td>\n\
|
77
|
+
\t\t\t\t\t\t\t</tr>\n\
|
78
|
+
\t\t</table>\n\n\
|
79
|
+
\t\t<a href=\"/\"><img src=\"http://www.wordnik.com/images/logo_116x24.png\" title=\"Wordnik.com\" id=\"logo-sm\" /></a>\n\n\
|
80
|
+
\t\t<div id=\"top-links\">\n\
|
81
|
+
\t\t\t<a href=\"/community\">Community</a> ·\n\
|
82
|
+
\t\t\t<a href=\"/word-of-the-day\">Word of the day</a> ·\n\
|
83
|
+
\t\t\t<a href=\"http://blog.wordnik.com\" class='noicon'>Blog</a> ·\n\
|
84
|
+
\t\t\t<a href=\"/random\" onclick=\"javascript: pageTracker._trackPageview('/random');\">Random word</a>\n\n\
|
85
|
+
\t\t</div>\n\n\
|
86
|
+
\t\t\t</div>\n\
|
87
|
+
</div>\n\
|
88
|
+
<div class=\"container\" style=\"position: relative;\"><h1>Not found</h1>\n\n\
|
89
|
+
<div>\n\n <a href=\"http://www.flickr.com/photos/dvs/11951382/\" title=\"credit: Meg, the friend of dvs on Flickr\"><img class=\"notification-image\" src=\"http://www.wordnik.com/images/404.jpg\" alt=\"credit: Meg, the friend of dvs on Flickr\" /></a>\n \n <p style=\"text-align:center;font-size:.75em;\">(<a href=\"http://www.flickr.com/photos/dvs/11951382/\">Photo</a> by, and <a href=\"http://creativecommons.org/licenses/by/2.0/deed.en\">licensed</a> from, <a href=\"http://www.flickr.com/people/dvs/\">Doug Shick</a>.)</p>\n\n\
|
90
|
+
</div>\n\n\
|
91
|
+
<div class=\"prose\">\n \n <p>Hmmm. We're embarrassed to admit that we can't find the page that you're looking for. We're sure we just saw it around here somewhere …</p>\n \n <p>Please try searching for a word using the search box above. (If that succeeds, please update any bookmarks you may have created.)</p>\n\n <p>Otherwise, please email us at <a href=\"mailto:feedback@wordnik.com\">feedback@wordnik.com</a> and we'll do our best to make things right.</p>\n\n\
|
92
|
+
</div>\n\n\
|
93
|
+
</div><div id=\"bottom_band\">\t\n\
|
94
|
+
\t<div id=\"bottom_content\">\n\
|
95
|
+
\t\t<table>\n\
|
96
|
+
\t\t\t<tr>\n\n\
|
97
|
+
\t\t\t\t<td style=\"width:33%\">\n\
|
98
|
+
\t\t\t\t\t<h4>Recently looked up</h4>\n\
|
99
|
+
\t\t\t\t\t\t\t\t\t\t<a href=\"/words/animal\">animal</a> · <a href=\"/words/staple\">staple</a> · <a href=\"/words/ingenious\">ingenious</a> · <a href=\"/words/hydraulic\">hydraulic</a> · <a href=\"/words/vivification\">vivification</a>\t\t\t\t</td>\n\n\
|
100
|
+
\t\t\t\t<td style=\"width:33%; text-align:left\">\n\
|
101
|
+
\t\t\t\t\t<h4>Recent Favorites</h4>\n\
|
102
|
+
\t\t\t\t\t\t\t\t\t\t<a href=\"/words/fuel\">fuel</a> · <a href=\"/words/confine\">confine</a> · <a href=\"/words/stow\">stow</a> · <a href=\"/words/sidelong\">sidelong</a> · <a href=\"/words/resemble\">resemble</a>\t\t\t\t</td>\n\n\
|
103
|
+
\t\t\t\t<td style=\"width:33%\">\n\
|
104
|
+
\t\t\t\t\t<h4>Recent Pronunciations</h4>\n\
|
105
|
+
\t\t\t\t\t\t\t\t\t\t<a href=\"/words/harl/pronunciations\">harl</a> · <a href=\"/words/chagrin/pronunciations\">chagrin</a> · <a href=\"/words/knismesis/pronunciations\">knismesis</a> · <a href=\"/words/esoteric/pronunciations\">esoteric</a> · <a href=\"/words/Plinth/pronunciations\">Plinth</a>\t\t\t\t</td>\n\n\
|
106
|
+
\t\t\t</tr>\n\
|
107
|
+
\t\t</table>\n\
|
108
|
+
\t</div>\n\
|
109
|
+
\t\n\
|
110
|
+
\t<div id=\"footer\">\n\
|
111
|
+
\t\t<div id=\"footer_content\">\n\
|
112
|
+
\t\t\t<div>\n\
|
113
|
+
\t\t\t\n\
|
114
|
+
\t\t\t<a href=\"http://m.wordnik.com\" class='noicon'>Mobile</a> · \n\
|
115
|
+
\t\t\t<a href=\"/tools\">Tools</a> · \n\
|
116
|
+
\t\t\t<a href=\"/about#contact\">Contact</a> · \n\
|
117
|
+
\t\t\t<a href=\"/about\">About</a> · \n\
|
118
|
+
\t\t\t<a href=\"/faq\">FAQ</a> · \n\
|
119
|
+
\t\t\t<a href=\"/privacy\">Privacy</a> · \n\
|
120
|
+
\t\t\t<a href=\"/terms\">Terms</a> · \n\
|
121
|
+
\t\t\t<a href=\"/developers\">API</a> · \n\
|
122
|
+
\t\t\t<a href=\"http://smartwords.wordnik.com\" class='noicon'>Smartwords</a> · \n\
|
123
|
+
\t\t\t<a href=\"http://www.twitter.com/Wordnik\" rel=\"nofollow\" class='noicon'>Twitter</a> · \n\
|
124
|
+
\t\t\t<a href=\"http://www.facebook.com/#!/wordnik.fans\" rel=\"nofollow\" class='noicon'>Facebook</a> · \n\
|
125
|
+
\t\t\t<a href=\"/search\">Search</a>\n\
|
126
|
+
\t\t\t\n\
|
127
|
+
\t\t\t</div>\n\
|
128
|
+
\t\t\t\n\
|
129
|
+
\t\t\t<div style=\"margin-top: 12px;\">\n\
|
130
|
+
\t\t\t\tAll the words are brought to you by Wordnik. \xC2\xA9 2011\n\
|
131
|
+
\t\t\t</div>\n\n\
|
132
|
+
\t\t</div>\n\
|
133
|
+
\t</div>\n\
|
134
|
+
</div>\n\n\
|
135
|
+
<script type=\"text/javascript\">\n\
|
136
|
+
google.setOnLoadCallback(function() {\n\n\
|
137
|
+
Wordnik.wordAutoComplete('header_search_input', 'header_search_form');\n\
|
138
|
+
$('#top-search-submit').bind('click', function() {\n\
|
139
|
+
$('#header_search_form')[0].submit();\n\
|
140
|
+
});\n\n\
|
141
|
+
});\n\
|
142
|
+
</script>\n\n\
|
143
|
+
<div id=\"fb-root\"></div>\n\
|
144
|
+
<script>\n\
|
145
|
+
window.fbAsyncInit = function() {\n\
|
146
|
+
FB.init({\tappId: '8e2cbf07651e7d281be2f54bb92e1da5',\n\
|
147
|
+
status: true,\n\
|
148
|
+
cookie: true,\n\
|
149
|
+
xfbml: true});\n\
|
150
|
+
};\n\
|
151
|
+
(function() {\n\
|
152
|
+
var e = document.createElement('script'); e.async = true;\n\
|
153
|
+
e.src = document.location.protocol +\n\
|
154
|
+
'//connect.facebook.net/en_US/all.js';\n\
|
155
|
+
document.getElementById('fb-root').appendChild(e);\n\
|
156
|
+
}());\n\
|
157
|
+
</script>\n\n\
|
158
|
+
<script type=\"text/javascript\">\n\
|
159
|
+
woo_settings={'domain':'wordnik.com'};\n\
|
160
|
+
(function(){\n\
|
161
|
+
var wsc=document.createElement('script');\n\
|
162
|
+
wsc.type='text/javascript';\n\
|
163
|
+
wsc.src=document.location.protocol+'//static.woopra.com/js/woopra.js';\n\
|
164
|
+
wsc.async=true;\n\
|
165
|
+
var ssc = document.getElementsByTagName('script')[0];\n\
|
166
|
+
ssc.parentNode.insertBefore(wsc, ssc);\n\
|
167
|
+
})();\n\
|
168
|
+
</script>\n\n\
|
169
|
+
</body>\n\
|
170
|
+
</html>\n"
|
171
|
+
http_version: "1.1"
|
172
|
+
:@ignored: false
|