| ||
detail: element | attribute | value |
XML Example:<searchResults> zero or N[<facets>Facet</facets>] <fallbackQuery>xsd:string</fallbackQuery> zero or N[<items>product</items>] <query>xsd:string</query> <results>xsd:long</results> <resultsPerPage>xsd:int</resultsPerPage> <start>xsd:int</start> </searchResults> | JSON Example:{ "facets": [Facet], "fallbackQuery": String, "items": [product], "query": String, "results": Number, "resultsPerPage": Number, "start": Number, } |
Name | Type | Required | Nillable | Default Value | Description |
---|---|---|---|---|---|
facets | zero or N[Facet] | false | false | A list of facets which enable detailed filtering options for further search requests. | |
fallbackQuery | xsd:string | false | false | The fallback-query was used if the original query did not produce any results. | |
items | zero or N[product] | false | false | List of found products, which has the maximum size 'resultsPerPage'. | |
query | xsd:string | false | false | The query which was used to perform the search. | |
results | xsd:long | false | false | The number of found products. | |
resultsPerPage | xsd:int | false | false | The number of search-results per page. | |
start | xsd:int | false | false | Is calculated as: ((currentPage-1) * resultsPerPage) |
| ||
detail: element | attribute | value |