design.extpage.remove

Remove an extension page from the workspace draft (menu links to it are dropped).

Payload

fieldtyperequirednotes
workspacestring (/^(main|ws_[A-Z0-9]{26})$/, default "main")no
pageIdstring (/^ext:[a-z0-9-]+\.[a-z0-9-]+\/[a-z0-9-]+$/)yes
expectedRevinteger (1..9007199254740991) | nullno

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "workspace": {
      "default": "main",
      "type": "string",
      "pattern": "^(main|ws_[A-Z0-9]{26})$"
    },
    "pageId": {
      "type": "string",
      "pattern": "^ext:[a-z0-9-]+\\.[a-z0-9-]+\\/[a-z0-9-]+$"
    },
    "expectedRev": {
      "default": null,
      "anyOf": [
        {
          "type": "integer",
          "minimum": 1,
          "maximum": 9007199254740991
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "pageId"
  ],
  "additionalProperties": false
}
Generated from the live platform registries at build time — reference pages cannot go stale. Markdown variant: /reference/commands/design.extpage.remove.md