Properties
| Name | Type | Description |
|---|---|---|
| content_product_sort | object | |
| default_product_sort | object | |
| product_filtering_enabled | boolean | Controls whether Product Filtering feature is active on the storefront. Only supports manipulation on a global level. |
| search_suggest | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StorefrontSearchSettings",
"title": "StorefrontSearchSettings",
"type": "object",
"properties": {
"content_product_sort": {
"$ref": "#/components/schemas/ContentSortEnumValues"
},
"default_product_sort": {
"$ref": "#/components/schemas/ProductSortEnumValues"
},
"product_filtering_enabled": {
"description": "Controls whether Product Filtering feature is active on the storefront. Only supports manipulation on a global level.",
"type": "boolean"
},
"search_suggest": {
"type": "boolean"
}
},
"required": [
"content_product_sort",
"default_product_sort",
"product_filtering_enabled",
"search_suggest"
],
"x-internal": false
}