# `proposal.item.skip` Skip one item of a paused proposal (store owner only) so the rest can continue. - **scope**: `proposals:approve` - **storefront-visible** (bumps the catalog generation): no - **destructive**: no ## Payload | field | type | required | notes | |---|---|---|---| | `proposalId` | string (/^prp_[0-9A-HJKMNP-TV-Z]{26}$/) | yes | | | `itemId` | string (/^pri_[0-9A-HJKMNP-TV-Z]{26}$/) | yes | | | `note` | string (≤500 chars) | no | | ### JSON Schema ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "proposalId": { "type": "string", "pattern": "^prp_[0-9A-HJKMNP-TV-Z]{26}$" }, "itemId": { "type": "string", "pattern": "^pri_[0-9A-HJKMNP-TV-Z]{26}$" }, "note": { "type": "string", "maxLength": 500 } }, "required": [ "proposalId", "itemId" ], "additionalProperties": false } ```