proposal.submit

Submit an open proposal for the store owner's review (the owner is mailed a link).

Payload

fieldtyperequirednotes
proposalIdstring (/^prp_[0-9A-HJKMNP-TV-Z]{26}$/)yes
titlestring (≤120 chars)yes
summarystring (≤2000 chars, default "")no

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "proposalId": {
      "type": "string",
      "pattern": "^prp_[0-9A-HJKMNP-TV-Z]{26}$"
    },
    "title": {
      "type": "string",
      "minLength": 1,
      "maxLength": 120
    },
    "summary": {
      "default": "",
      "type": "string",
      "maxLength": 2000
    }
  },
  "required": [
    "proposalId",
    "title"
  ],
  "additionalProperties": false
}
Generated from the live platform registries at build time — reference pages cannot go stale. Markdown variant: /reference/commands/proposal.submit.md