# `settings.store.update` Update store settings (display name). Projected to KV tenant records. - **scope**: `store:admin` - **storefront-visible** (bumps the catalog generation): no - **destructive**: no ## Payload | field | type | required | notes | |---|---|---|---| | `patch` | object | yes | | | ` name` | string (≤80 chars) | no | | ### JSON Schema ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "patch": { "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 80 } }, "additionalProperties": false } }, "required": [ "patch" ], "additionalProperties": false } ```