Attempt to discuss the question: does the tendency towards schemaless data transfer make type systems less relevant? The question came up in a conversation on twitter.
Short answer: No. Data transfer, data serialization, schemas, and type systems are all independent from each other.
Given a datastore with no schema, what can you know about the shape and meaning of the data stored in it? Barely anything. You may know that valid values can be represented using some particular serialization format, such as JSON. Maybe you even know that values can only be JSON objects, as opposed to arrays or primitive values. Those are constraints that a system may apply to data. (In my tweet I called that a "meta-schema", but I realize that that's not actually a fitting term.) They allow for concrete expectations about the shape of the data that can possibly be stored in and retrieved from the system.