# `proposal.withdraw` Withdraw a proposal that has not been applied. - **scope**: `proposals:write` - **storefront-visible** (bumps the catalog generation): no - **destructive**: no ## Payload | field | type | required | notes | |---|---|---|---| | `proposalId` | string (/^prp_[0-9A-HJKMNP-TV-Z]{26}$/) | yes | | ### 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}$" } }, "required": [ "proposalId" ], "additionalProperties": false } ```