validate.command

Validate a command payload against its registered schema without running it (no preview, no mutation).

Machine-readable body schema: /schemas/routes/validate.command.json.

Body

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "command": {
      "type": "string",
      "minLength": 1,
      "maxLength": 80
    },
    "payload": {}
  },
  "required": [
    "command",
    "payload"
  ],
  "additionalProperties": false
}
Generated from the live platform registries at build time — reference pages cannot go stale. Markdown variant: /reference/routes/validate.command.md