design.extpage.add

Add an installed extension's page to the workspace draft under /ek/{slug} (owner-changeable path); the page renders the extension's composite through the active theme.

Payload

fieldtyperequirednotes
workspacestring (/^(main|ws_[A-Z0-9]{26})$/, default "main")no
extstring (/^[a-z0-9-]+\.[a-z0-9-]+$/, ≤80 chars)yes
slugstring (/^[a-z0-9-]{1,32}$/)yes
pathstring (/^\/ek\/[a-z0-9-]{1,40}$/)no
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})$"
    },
    "ext": {
      "type": "string",
      "maxLength": 80,
      "pattern": "^[a-z0-9-]+\\.[a-z0-9-]+$"
    },
    "slug": {
      "type": "string",
      "pattern": "^[a-z0-9-]{1,32}$"
    },
    "path": {
      "type": "string",
      "pattern": "^\\/ek\\/[a-z0-9-]{1,40}$"
    },
    "expectedRev": {
      "default": null,
      "anyOf": [
        {
          "type": "integer",
          "minimum": 1,
          "maximum": 9007199254740991
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "ext",
    "slug"
  ],
  "additionalProperties": false
}
Generated from the live platform registries at build time — reference pages cannot go stale. Markdown variant: /reference/commands/design.extpage.add.md