# `validate.bundle` Validate a store bundle (schema + referential integrity) without saving anything. Media readiness is checked at draft save, which is the enforcement point. - **method + path**: `POST /v1/validate/bundle` - **TR label**: Paket 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.bundle.json](/schemas/routes/validate.bundle.json). ## Body ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "bundle": {} }, "required": [ "bundle" ], "additionalProperties": false } ```