# `validate.command` Validate a command payload against its registered schema without running it (no preview, no mutation). - **method + path**: `POST /v1/validate/command` - **TR label**: Komut doğrulama - **auth**: public · scope gates: none (public) - **agentPolicy**: `quote` — a provider call with no store-state change (offers, labels, validators) — every token kind calls it directly. - **effects**: none - **idempotency**: server — the platform derives the key - **wraps**: — (no command inside) Machine-readable body schema: [/schemas/routes/validate.command.json](/schemas/routes/validate.command.json). ## Body ```json { "$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 } ```