Spellcheck API
Response Objects
# SpellCheckSearchApiResponse
Top level response model for successful Spellcheck API requests. The API can also respond back with an error response based on invalid subscription keys and rate limit events.
Field | Type | Required | Description |
---|---|---|---|
type | "spellcheck" | true | The type of search api result. The value is always |
query | Query | true | Spellcheck search query string. Only the original query is returned. |
results | list [ SpellCheckResult ] | true | The list of spell-checked results for given query. |
# Query
A model representing information gathered around the requested query.
Field | Type | Required | Description |
---|---|---|---|
original | string | true | The original query that was requested. |
# SpellCheckResult
Spell-checked query result.
Field | Type | Required | Description |
---|---|---|---|
query | string | true | The spellcheck-corrected query. |