# `design.draft.delete` Discard the draft (expectedRev). - **method + path**: `DELETE /v1/design/draft` - **TR label**: Taslak silindi - **auth**: authenticated · scope gates: any of `admin`, `design:write` — “design:write yetkisi gerekli” - **agentPolicy**: `workspace` — writes confined to the caller's own draft workspace or staging — every token kind executes it directly. - **effects**: `db` - **idempotency**: server — the platform derives the key - **wraps**: — (no command inside) Machine-readable body schema: [/schemas/routes/design.draft.delete.json](/schemas/routes/design.draft.delete.json). ## Body ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "expectedRev": { "type": "integer", "minimum": 1, "maximum": 9007199254740991 } }, "required": [ "expectedRev" ] } ```