SuggestionsURL_JSON
The SuggestionsURL_JSON
setting specifies the URL where search suggestions can be retrieved by using a search based on JavaScript Object Notation (JSON).
Note To specify search suggestions by using a search based on XML, use the SuggestionsURL instead.
For information on creating Search Scopes, see Search Provider Extensibility.
Values
URL |
Specifies the URL where search suggestions can be retrieved by using a search based on JavaScript Object Notation (JSON). URL is a string. |
Valid Configuration Passes
specialize
Parent Hierarchy
Microsoft-Windows-IE-InternetExplorer | SearchScopes | Scope | SuggestionsURL_JSON
Applies To
For a list of the supported Microsoft Windows editions and architectures that this component supports, see Microsoft-Windows-IE-InternetExplorer.
XML Example
The following XML example shows how to specify a URL to provide search suggestions by using a search based on JavaScript Object Notation (JSON).
<SearchScopes>
<Scope wcm:action="add">
<ScopeDefault>true</ScopeDefault>
<ScopeDisplayName>MyFirstSearchProvider</ScopeDisplayName>
<ScopeKey>SearchProvider1</ScopeKey>
<ScopeUrl>http://www.contoso.com/search?q={searchTerms}</ScopeUrl>
<SuggestionsURL_JSON>http://suggestions.contoso.com/search?&search={searchTerms}</SuggestionsURL_JSON>
<DisplayQuickPick>false</DisplayQuickPick>
</Scope>
</SearchScopes>