No, that is NOT a raw file. That is raw data, if you want to call it that, or just image data, or even just data.
But its not a file. A file is a sequence of bytes from 0 to n-1, or 1 to n, n being the filesize, stored under a filename in a persistent filesystem, and marked by a magic number to distinguish it from other binary files, and very likely compressed, and so on.
Image data is all over the place in the image memory, and its not persistent, it has no name, it has no magic marker, it is not compressed, it most likely occupies more space, and so on.
As a very simple example, imagine a programmer has a textfile for error messages. He just numbers the error messages from 0 to n. Error 0, the first line, reads "no error", and so on. So what will the programmer do with loading this file ? He will continuously read every line from the file, allocate enough memory for the message, terminate the line with a zero or otherwise remember the length of that particular line, save the pointer to the error message in some data structure (most likely one called array, as this allows to access the pointer to the message in minimal time).
In short, the data representation of the textfile in memory will look nothing like the original textfile, and it will be much easier to work with for the programmer. Granted, the example is trivial enough that actually just reading the file from start to end and select the corresponding line would be a valid option, but thats the problem of chosing a simple example. Files stored sequentially can contain very complex structures that quickly are no longer feasible to parse every time you need a piece of information from them.
Same with image data and raw files. You can write the image data in all kinds of ways into a file. You can skip parts you dont need any further, you can preprocess it (lossless compression of raw files are very common, and jpeg is a lossy compression).
In fact, TIFF for example is an extensible file format. You can store all information stored in a RAW file into a TIFF file as well. It wont look anything like an image if you try to display it, since its the "raw" format from the camera, but its possible to store any information in TIFF and thus its possible to store the image data in a TIFF.
Thus, if you claim the camera would "shoot RAW" you could just as well claim it would "shoot TIFF".