-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathopenapi.json
1306 lines (1306 loc) · 53.6 KB
/
openapi.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"swagger": "2.0",
"schemes": [
"https"
],
"host": "api.cognitive.microsoft.com",
"basePath": "/bing",
"info": {
"contact": {
"x-twitter": "microsoft"
},
"description": "The Local Search client lets you send a search query to Bing and get back search results that include local businesses such as restaurants, hotels, retail stores, or other local businesses. The query can specify the name of the local business or it can ask for a list (for example, restaurants near me).",
"title": "Local Search Client",
"version": "1.0",
"x-apisguru-categories": [
"developer_tools",
"cloud"
],
"x-logo": {
"url": "https://api.apis.guru/v2/cache/logo/https_twitter.com_microsoft_profile_image.png"
},
"x-origin": [
{
"format": "swagger",
"url": "https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/cognitiveservices/data-plane/LocalSearch/stable/v1.0/LocalSearch.json",
"version": "2.0"
}
],
"x-preferred": true,
"x-providerName": "microsoft.com",
"x-serviceName": "cognitiveservices-LocalSearch",
"x-tags": [
"Microsoft"
],
"x-datafire": {
"name": "microsoft_cognitiveservices_localsearch",
"type": "openapi"
}
},
"produces": [
"application/json"
],
"securityDefinitions": {
"apiKeyHeader": {
"in": "header",
"name": "Ocp-Apim-Subscription-Key",
"type": "apiKey"
}
},
"security": [
{
"apiKeyHeader": []
}
],
"parameters": {
"x-bingapis-sdk": {
"description": "Activate swagger compliance",
"enum": [
"true"
],
"in": "header",
"name": "X-BingApis-SDK",
"required": true,
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "XBingApisSDK"
},
"x-ms-parameter-location": "method"
}
},
"paths": {
"/v7.0/localbusinesses/search": {
"get": {
"operationId": "Local_Search",
"parameters": [
{
"$ref": "#/parameters/x-bingapis-sdk"
},
{
"description": "The default media type is application/json. To specify that the response use [JSON-LD](http://json-ld.org/), set the Accept header to application/ld+json.",
"in": "header",
"name": "Accept",
"required": false,
"type": "string"
},
{
"description": "A comma-delimited list of one or more languages to use for user interface strings. The list is in decreasing order of preference. For additional information, including expected format, see [RFC2616](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). This header and the setLang query parameter are mutually exclusive; do not specify both. If you set this header, you must also specify the cc query parameter. Bing will use the first supported language it finds from the list, and combine that language with the cc parameter value to determine the market to return results for. If the list does not include a supported language, Bing will find the closest language and market that supports the request, and may use an aggregated or default market for the results instead of a specified one. You should use this header and the cc query parameter only if you specify multiple languages; otherwise, you should use the mkt and setLang query parameters. A user interface string is a string that's used as a label in a user interface. There are very few user interface strings in the JSON response objects. Any links in the response objects to Bing.com properties will apply the specified language.",
"in": "header",
"name": "Accept-Language",
"required": false,
"type": "string",
"x-ms-client-name": "AcceptLanguage"
},
{
"description": "By default, Bing returns cached content, if available. To prevent Bing from returning cached content, set the Pragma header to no-cache (for example, Pragma: no-cache).",
"in": "header",
"name": "Pragma",
"required": false,
"type": "string"
},
{
"description": "The user agent originating the request. Bing uses the user agent to provide mobile users with an optimized experience. Although optional, you are strongly encouraged to always specify this header. The user-agent should be the same string that any commonly used browser would send. For information about user agents, see [RFC 2616](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html).",
"in": "header",
"name": "User-Agent",
"required": false,
"type": "string",
"x-ms-client-name": "UserAgent"
},
{
"description": "Bing uses this header to provide users with consistent behavior across Bing API calls. Bing often flights new features and improvements, and it uses the client ID as a key for assigning traffic on different flights. If you do not use the same client ID for a user across multiple requests, then Bing may assign the user to multiple conflicting flights. Being assigned to multiple conflicting flights can lead to an inconsistent user experience. For example, if the second request has a different flight assignment than the first, the experience may be unexpected. Also, Bing can use the client ID to tailor web results to that client ID’s search history, providing a richer experience for the user. Bing also uses this header to help improve result rankings by analyzing the activity generated by a client ID. The relevance improvements help with better quality of results delivered by Bing APIs and in turn enables higher click-through rates for the API consumer. IMPORTANT: Although optional, you should consider this header required. Persisting the client ID across multiple requests for the same end user and device combination enables 1) the API consumer to receive a consistent user experience, and 2) higher click-through rates via better quality of results from the Bing APIs. Each user that uses your application on the device must have a unique, Bing generated client ID. If you do not include this header in the request, Bing generates an ID and returns it in the X-MSEdge-ClientID response header. The only time that you should NOT include this header in a request is the first time the user uses your app on that device. Use the client ID for each Bing API request that your app makes for this user on the device. Persist the client ID. To persist the ID in a browser app, use a persistent HTTP cookie to ensure the ID is used across all sessions. Do not use a session cookie. For other apps such as mobile apps, use the device's persistent storage to persist the ID. The next time the user uses your app on that device, get the client ID that you persisted. Bing responses may or may not include this header. If the response includes this header, capture the client ID and use it for all subsequent Bing requests for the user on that device. If you include the X-MSEdge-ClientID, you must not include cookies in the request.",
"in": "header",
"name": "X-MSEdge-ClientID",
"required": false,
"type": "string",
"x-ms-client-name": "ClientId"
},
{
"description": "The IPv4 or IPv6 address of the client device. The IP address is used to discover the user's location. Bing uses the location information to determine safe search behavior. Although optional, you are encouraged to always specify this header and the X-Search-Location header. Do not obfuscate the address (for example, by changing the last octet to 0). Obfuscating the address results in the location not being anywhere near the device's actual location, which may result in Bing serving erroneous results.",
"in": "header",
"name": "X-MSEdge-ClientIP",
"required": false,
"type": "string",
"x-ms-client-name": "ClientIp"
},
{
"description": "A semicolon-delimited list of key/value pairs that describe the client's geographical location. Bing uses the location information to determine safe search behavior and to return relevant local content. Specify the key/value pair as <key>:<value>. The following are the keys that you use to specify the user's location. lat (required): The latitude of the client's location, in degrees. The latitude must be greater than or equal to -90.0 and less than or equal to +90.0. Negative values indicate southern latitudes and positive values indicate northern latitudes. long (required): The longitude of the client's location, in degrees. The longitude must be greater than or equal to -180.0 and less than or equal to +180.0. Negative values indicate western longitudes and positive values indicate eastern longitudes. re (required): The radius, in meters, which specifies the horizontal accuracy of the coordinates. Pass the value returned by the device's location service. Typical values might be 22m for GPS/Wi-Fi, 380m for cell tower triangulation, and 18,000m for reverse IP lookup. ts (optional): The UTC UNIX timestamp of when the client was at the location. (The UNIX timestamp is the number of seconds since January 1, 1970.) head (optional): The client's relative heading or direction of travel. Specify the direction of travel as degrees from 0 through 360, counting clockwise relative to true north. Specify this key only if the sp key is nonzero. sp (optional): The horizontal velocity (speed), in meters per second, that the client device is traveling. alt (optional): The altitude of the client device, in meters. are (optional): The radius, in meters, that specifies the vertical accuracy of the coordinates. Specify this key only if you specify the alt key. Although many of the keys are optional, the more information that you provide, the more accurate the location results are. Although optional, you are encouraged to always specify the user's geographical location. Providing the location is especially important if the client's IP address does not accurately reflect the user's physical location (for example, if the client uses VPN). For optimal results, you should include this header and the X-MSEdge-ClientIP header, but at a minimum, you should include this header.",
"in": "header",
"name": "X-Search-Location",
"required": false,
"type": "string",
"x-ms-client-name": "Location"
},
{
"description": "A 2-character country code of the country where the results come from. This API supports only the United States market. If you specify this query parameter, it must be set to us. If you set this parameter, you must also specify the Accept-Language header. Bing uses the first supported language it finds from the languages list, and combine that language with the country code that you specify to determine the market to return results for. If the languages list does not include a supported language, Bing finds the closest language and market that supports the request, or it may use an aggregated or default market for the results instead of a specified one. You should use this query parameter and the Accept-Language query parameter only if you specify multiple languages; otherwise, you should use the mkt and setLang query parameters. This parameter and the mkt query parameter are mutually exclusive—do not specify both.",
"in": "query",
"name": "cc",
"required": false,
"type": "string",
"x-ms-client-name": "CountryCode"
},
{
"default": "en-us",
"description": "The market where the results come from. You are strongly encouraged to always specify the market, if known. Specifying the market helps Bing route the request and return an appropriate and optimal response. This parameter and the cc query parameter are mutually exclusive—do not specify both.",
"in": "query",
"name": "mkt",
"required": false,
"type": "string",
"x-ms-client-name": "Market"
},
{
"description": "The user's search term.",
"in": "query",
"name": "q",
"required": true,
"type": "string",
"x-ms-client-name": "Query"
},
{
"description": "comma-delimited list of business categories to search for. Supported categories can be high-level such as EatDrink, Shop, SeeDo.",
"in": "query",
"name": "localcategories",
"required": false,
"type": "string",
"x-ms-client-name": "LocalCategories"
},
{
"description": "Preferred location to search around, expressed as Latitude, longitude and radius in meters. For example 47.61503,-122.1719,5000. Note that circular view should only be used to indicate a search around a point on the map, not as an approximation for a view port of a map rectangle.",
"in": "query",
"name": "localcircularview",
"required": false,
"type": "string",
"x-ms-client-name": "localCircularView"
},
{
"description": "Preferred bounding box for results, specified in NW_latitude, NW_Longitude, SE_Latitude, SE_Longitude format. For example 47.64,-122.13,47.63,-122.12. These values are lat, long pairs for the Northwest corner and the Southeast corner of a rectangle.",
"in": "query",
"name": "localmapview",
"required": false,
"type": "string",
"x-ms-client-name": "localMapView"
},
{
"description": "Preferred number of results to return. If not specified, then Bing returns 1-20 of the most relevant results.",
"in": "query",
"name": "count",
"required": false,
"type": "string",
"x-ms-client-name": "Count"
},
{
"description": "First result to return. zero-based. default is 0.",
"in": "query",
"name": "first",
"required": false,
"type": "string",
"x-ms-client-name": "First"
},
{
"collectionFormat": "csv",
"description": "The media type to use for the response. The following are the possible case-insensitive values: JSON, JSONLD. The default is JSON. If you specify JSONLD, the response body includes JSON-LD objects that contain the search results.",
"in": "query",
"items": {
"enum": [
"Json",
"JsonLd"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "ResponseFormat"
}
},
"name": "ResponseFormat",
"required": false,
"type": "array"
},
{
"description": "A filter used to filter adult content. Off: Return webpages with adult text, images, or videos. Moderate: Return webpages with adult text, but not adult images or videos. Strict: Do not return webpages with adult text, images, or videos. The default is Moderate. If the request comes from a market that Bing's adult policy requires that safeSearch is set to Strict, Bing ignores the safeSearch value and uses Strict. If you use the site: query operator, there is the chance that the response may contain adult content regardless of what the safeSearch query parameter is set to. Use site: only if you are aware of the content on the site and your scenario supports the possibility of adult content.",
"enum": [
"Off",
"Moderate",
"Strict"
],
"in": "query",
"name": "SafeSearch",
"required": false,
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "SafeSearch"
}
},
{
"description": "The language to use for user interface strings. Specify the language using the ISO 639-1 2-letter language code. For example, the language code for English is EN. The default is EN (English). Although optional, you should always specify the language. Typically, you set setLang to the same language specified by mkt unless the user wants the user interface strings displayed in a different language. This parameter and the Accept-Language header are mutually exclusive; do not specify both. A user interface string is a string that's used as a label in a user interface. There are few user interface strings in the JSON response objects. Also, any links to Bing.com properties in the response objects apply the specified language.",
"in": "query",
"name": "SetLang",
"required": false,
"type": "string"
}
],
"responses": {
"200": {
"description": "Success.",
"schema": {
"$ref": "#/definitions/SearchResponse"
}
},
"default": {
"description": "An error has occurred. Check the response type and/or status code for more details.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"summary": "The Local Search API lets you send a search query to Bing and get back search results that include local businesses such as restaurants, hotels, retail stores, or other local businesses. The query can specify the name of the local business or it can ask for a list (for example, restaurants near me).",
"tags": [
"LocalSearch"
],
"x-ms-examples": {
"Successful query": {
"parameters": {
"Accept": "application/json",
"Ocp-Apim-Subscription-Key": "{API key}",
"User-Agent": "{User Agent}",
"X-MSEdge-ClientID": "{Client ID}",
"mkt": "en-us",
"q": "restaurants in seattle"
},
"responses": {
"200": {
"body": {
"_type": "SearchResponse",
"places": {
"searchAction": {},
"totalEstimatedMatches": 10,
"value": [
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Queen Anne: Lower",
"postalCode": "98109",
"streetAddress": "400 Broad St",
"text": "400 Broad St, Seattle, WA, 98109"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"geo": {
"latitude": 47.620491027832,
"longitude": -122.349227905273
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.0",
"name": "SkyCity Restaurant",
"routablePoint": {
"latitude": 47.620044708252,
"longitude": -122.348487854004
},
"telephone": "(206) 905-2100",
"url": "http://www.spaceneedle.com/"
},
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Belltown",
"postalCode": "98121",
"streetAddress": "2401 2nd Ave",
"text": "2401 2nd Ave, Seattle, WA, 98121"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"geo": {
"latitude": 47.6147994995117,
"longitude": -122.347297668457
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.1",
"name": "Shiro's Sushi Restaurant",
"routablePoint": {
"latitude": 47.614917755127,
"longitude": -122.347145080566
},
"telephone": "(206) 443-9844",
"url": "http://shiros.com/"
},
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Japantown, Chinatown International District",
"postalCode": "98104",
"streetAddress": "304 6th Ave S",
"text": "304 6th Ave S, Seattle, WA, 98104"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"geo": {
"latitude": 47.599739074707,
"longitude": -122.326141357422
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.2",
"name": "Maneki Restaurant",
"routablePoint": {
"latitude": 47.599739074707,
"longitude": -122.326362609863
},
"telephone": "(206) 622-2631",
"url": "http://www.manekirestaurant.com/"
},
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Downtown",
"postalCode": "98101",
"streetAddress": "1420 5th Ave",
"text": "1420 5th Ave, Seattle, WA, 98101"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"geo": {
"latitude": 47.610538482666,
"longitude": -122.334686279297
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.3",
"name": "Palomino",
"routablePoint": {
"latitude": 47.6102981567383,
"longitude": -122.335258483887
},
"telephone": "(206) 623-1300",
"url": "http://palomino.com/"
},
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Downtown",
"postalCode": "98101",
"streetAddress": "1519 Pike Pl",
"text": "1519 Pike Pl, Seattle, WA, 98101"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"geo": {
"latitude": 47.6087112426758,
"longitude": -122.340911865234
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.4",
"name": "Lowell's Restaurant",
"routablePoint": {
"latitude": 47.6088256835938,
"longitude": -122.340766906738
},
"telephone": "(206) 622-2036",
"url": "http://eatatlowells.com/"
},
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Downtown",
"postalCode": "98101",
"streetAddress": "",
"text": "Seattle, WA, 98101"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.5",
"name": "The Athenian Seafood Restaurant and Bar",
"telephone": "(206) 624-7166",
"url": "http://www.athenianseattle.com/"
},
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Downtown",
"postalCode": "98121",
"streetAddress": "2001 Western Ave",
"text": "2001 Western Ave, Seattle, WA, 98121"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"geo": {
"latitude": 47.6105194091797,
"longitude": -122.344390869141
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.6",
"name": "Cutters Crabhouse",
"routablePoint": {
"latitude": 47.610767364502,
"longitude": -122.34407043457
},
"telephone": "(206) 448-4884",
"url": "http://cutterscrabhouse.com/"
},
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Capitol Hill",
"postalCode": "98102",
"streetAddress": "219 Broadway E",
"text": "219 Broadway E, Seattle, WA, 98102"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"geo": {
"latitude": 47.6206283569336,
"longitude": -122.321342468262
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.7",
"name": "Americana Restaurant",
"routablePoint": {
"latitude": 47.6206321716309,
"longitude": -122.320915222168
},
"telephone": "(206) 328-4604",
"url": "http://www.americanaseattle.com/"
},
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Interbay",
"postalCode": "98121",
"streetAddress": "2411 Alaskan Way",
"text": "2411 Alaskan Way, Seattle, WA, 98121"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"geo": {
"latitude": 47.6125106811523,
"longitude": -122.352020263672
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.8",
"name": "Six Seven Restaurant",
"routablePoint": {
"latitude": 47.612964630127,
"longitude": -122.351547241211
},
"telephone": "(206) 269-4575",
"url": "http://www.edgewaterhotel.com/seattle-six-seven-restaurant.aspx"
},
{
"_type": "LocalBusiness",
"address": {
"addressCountry": "US",
"addressLocality": "Seattle",
"addressRegion": "WA",
"neighborhood": "Waterfront",
"postalCode": "98101",
"streetAddress": "1301 Alaskan Way",
"text": "1301 Alaskan Way, Seattle, WA, 98101"
},
"entityPresentationInfo": {
"entityScenario": "ListItem",
"entityTypeHints": [
"Place",
"LocalBusiness",
"Restaurant"
]
},
"geo": {
"latitude": 47.6060791015625,
"longitude": -122.341049194336
},
"id": "https://api.cognitive.microsoft.com/api/v7/#Places.9",
"name": "Fisherman's Restaurant",
"routablePoint": {
"latitude": 47.606330871582,
"longitude": -122.340446472168
},
"telephone": "(206) 623-3500",
"url": "http://thefishermansrestaurant.com/"
}
]
},
"queryContext": {
"originalQuery": "restaurants in seattle"
}
},
"headers": {}
}
}
}
}
}
}
},
"definitions": {
"Action": {
"allOf": [
{
"$ref": "#/definitions/CreativeWork"
}
],
"description": "Defines an action.",
"properties": {
"displayName": {
"description": "A display name for the action.",
"readOnly": true,
"type": "string"
},
"isTopAction": {
"description": "A Boolean representing whether this result is the top action.",
"readOnly": true,
"type": "boolean"
},
"location": {
"items": {
"$ref": "#/definitions/Place"
},
"readOnly": true,
"type": "array"
},
"result": {
"description": "The result produced in the action.",
"items": {
"$ref": "#/definitions/Thing"
},
"readOnly": true,
"type": "array"
},
"serviceUrl": {
"description": "Use this URL to get additional data to determine how to take the appropriate action. For example, the serviceUrl might return JSON along with an image URL.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"Answer": {
"allOf": [
{
"$ref": "#/definitions/Response"
}
],
"description": "Defines an answer.",
"properties": {},
"type": "object"
},
"CreativeWork": {
"allOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"properties": {
"about": {
"description": "For internal use only.",
"items": {
"$ref": "#/definitions/Thing"
},
"readOnly": true,
"type": "array"
},
"commentCount": {
"format": "int32",
"readOnly": true,
"type": "integer"
},
"copyrightHolder": {
"$ref": "#/definitions/Thing",
"readOnly": true
},
"copyrightYear": {
"format": "int32",
"readOnly": true,
"type": "integer"
},
"creator": {
"$ref": "#/definitions/Thing",
"readOnly": true
},
"disclaimer": {
"readOnly": true,
"type": "string"
},
"discussionUrl": {
"readOnly": true,
"type": "string"
},
"genre": {
"items": {
"type": "string"
},
"readOnly": true,
"type": "array"
},
"headLine": {
"readOnly": true,
"type": "string"
},
"isAccessibleForFree": {
"readOnly": true,
"type": "boolean"
},
"isFamilyFriendly": {
"readOnly": true,
"type": "boolean"
},
"mainEntity": {
"$ref": "#/definitions/Thing",
"readOnly": true
},
"mentions": {
"description": "For internal use only.",
"items": {
"$ref": "#/definitions/Thing"
},
"readOnly": true,
"type": "array"
},
"provider": {
"description": "The source of the creative work.",
"items": {
"$ref": "#/definitions/Thing"
},
"readOnly": true,
"type": "array"
},
"text": {
"description": "Text content of this creative work",
"readOnly": true,
"type": "string"
},
"thumbnailUrl": {
"description": "The URL to a thumbnail of the item.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"EntitiesEntityPresentationInfo": {
"description": "Defines additional information about an entity such as type hints.",
"discriminator": "_type",
"properties": {
"_type": {
"type": "string"
},
"entityScenario": {
"default": "DominantEntity",
"description": "The supported scenario.",
"enum": [
"DominantEntity",
"DisambiguationItem",
"ListItem"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "EntityScenario"
}
},
"entitySubTypeHints": {
"items": {
"type": "string"
},
"readOnly": true,
"type": "array"
},
"entityTypeDisplayHint": {
"description": "A display version of the entity hint. For example, if entityTypeHints is Artist, this field may be set to American Singer.",
"readOnly": true,
"type": "string"
},
"entityTypeHints": {
"description": "A list of hints that indicate the entity's type. The list could contain a single hint such as Movie or a list of hints such as Place, LocalBusiness, Restaurant. Each successive hint in the array narrows the entity's type.",
"items": {
"enum": [
"Place",
"LocalBusiness",
"Restaurant",
"Hotel"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "EntityType"
}
},
"readOnly": true,
"type": "array"
},
"query": {
"readOnly": true,
"type": "string"
}
},
"required": [
"entityScenario",
"_type"
],
"type": "object",
"x-ms-discriminator-value": "Entities/EntityPresentationInfo"
},
"Error": {
"description": "Defines the error that occurred.",
"discriminator": "_type",
"properties": {
"_type": {
"type": "string"
},
"code": {
"default": "None",
"description": "The error code that identifies the category of error.",
"enum": [
"None",
"ServerError",
"InvalidRequest",
"RateLimitExceeded",
"InvalidAuthorization",
"InsufficientAuthorization"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "ErrorCode"
}
},
"message": {
"description": "A description of the error.",
"type": "string"
},
"moreDetails": {
"description": "A description that provides additional information about the error.",
"readOnly": true,
"type": "string"
},
"parameter": {
"description": "The parameter in the request that caused the error.",
"readOnly": true,
"type": "string"
},
"subCode": {
"description": "The error code that further helps to identify the error.",
"enum": [
"UnexpectedError",
"ResourceError",
"NotImplemented",
"ParameterMissing",
"ParameterInvalidValue",
"HttpNotAllowed",
"Blocked",
"AuthorizationMissing",
"AuthorizationRedundancy",
"AuthorizationDisabled",
"AuthorizationExpired"
],
"readOnly": true,
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "ErrorSubCode"
}
},
"value": {
"description": "The parameter's value in the request that was not valid.",
"readOnly": true,
"type": "string"
}
},
"required": [
"code",
"message",
"_type"
],
"type": "object"
},
"ErrorResponse": {
"allOf": [
{
"$ref": "#/definitions/Response"
}
],
"description": "The top-level response that represents a failed request.",
"properties": {
"errors": {
"description": "A list of errors that describe the reasons why the request failed.",
"items": {
"$ref": "#/definitions/Error"
},
"type": "array"
}
},
"required": [
"errors"
],
"type": "object"
},
"GeoCoordinates": {
"discriminator": "_type",
"properties": {
"_type": {
"type": "string"
},
"elevation": {
"format": "double",
"readOnly": true,
"type": "number"
},
"latitude": {
"format": "double",
"type": "number"
},
"longitude": {
"format": "double",
"type": "number"
}
},
"required": [
"latitude",
"longitude",
"_type"
],
"type": "object"
},
"Identifiable": {
"allOf": [
{
"$ref": "#/definitions/ResponseBase"
}
],
"description": "Defines the identity of a resource.",
"properties": {
"id": {
"description": "A String identifier.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"Intangible": {
"allOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
"type": "object"
},
"Place": {
"allOf": [
{
"$ref": "#/definitions/Thing"
}
],
"description": "Defines information about a local entity, such as a restaurant or hotel.",
"properties": {
"address": {
"$ref": "#/definitions/PostalAddress",
"description": "The postal address of where the entity is located",
"readOnly": true
},
"geo": {
"$ref": "#/definitions/GeoCoordinates",
"readOnly": true
},
"routablePoint": {
"$ref": "#/definitions/GeoCoordinates",
"readOnly": true
},
"telephone": {
"description": "The entity's telephone number",
"readOnly": true,
"type": "string"
}
},
"type": "object"
},
"Places": {
"allOf": [
{
"$ref": "#/definitions/SearchResultsAnswer"
}
],
"description": "Defines a local entity answer.",
"properties": {
"value": {
"description": "A list of local entities, such as restaurants or hotels.",
"items": {
"$ref": "#/definitions/Thing"
},