I believe you missed what I said while jumping to call it a misconception.
Any data that isn't random must have some format to it in order to be written and read later. I specifically stated "standard format" instead of just "unformatted." In IT and computer science, a "standard format" means data is arranged in a common, agreed upon way so programs may read and write the data easily. JPEG, PNG, ODF, et cetera; they're all going to have the same structure as per the standard. RAW has a different data structure per manufacturer and, in some cases, hardware implementation. You not only must know that the data is RAW, but what particular flavor of RAW it is. The applications that can read a variety of RAW files have a fair bit of programming behind them to determine which manufacturer's RAW you are reading based on the data structure. It is then assigned to the correct plugin or library for that format. On the other side of the coin, JPEG is JPEG. You look in the JPEG standard for information on reading/writing it and don't need complex logic to figure out what kind of file it is.
Thus, RAW is not a standard format.