{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ajaxRefreshAdminNoncesResponse",
  "description": "Server-to-client response shape for the refresh-admin-nonces endpoint: success flag plus a map of admin action verb -> refreshed nonce string.",
  "type": "object",
  "required": ["success", "data"],
  "properties": {
    "success": { "type": "boolean" },
    "data": {
      "type": "object",
      "additionalProperties": { "type": "string", "minLength": 1 }
    }
  }
}
